From 0766388262becdceb6900ab2ae61c80c4acf6ba0 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Mon, 21 Jan 2019 17:24:55 -0500 Subject: [PATCH 01/21] CDL: some cleanup, and random.choice fixed in pyfsi Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/yahoo_draft_advisor.py | 146 +++++++++++------------------ src/yahoo_sports_interface.py | 171 +++++++++++++++++----------------- 2 files changed, 139 insertions(+), 178 deletions(-) diff --git a/src/yahoo_draft_advisor.py b/src/yahoo_draft_advisor.py index e671c0d..fb50e08 100644 --- a/src/yahoo_draft_advisor.py +++ b/src/yahoo_draft_advisor.py @@ -1,7 +1,7 @@ ''' NOTE: according to http://www.nfl.com/fantasyfootball/story/0ap3000000509944/article/the-perfect-roundbyround-fantasy-draft-strategy -The proper draft order is: +The proper draft order is: 1. RB 2. WR 3. RB or WR @@ -28,7 +28,7 @@ 7. Best Available 8. QB or TE if not already 9. QB or TE if not already -10. RB or WR or QB or TE " At this point in the draft, you probably have three to four running backs, three to four wide receivers, one quarterback, one tight end or one at either position" +10. RB or WR or QB or TE " At this point in the draft, you probably have three to four running backs, three to four wide receivers, one quarterback, one tight end or one at either position" 11. RB or WR or QB or TE 12. RB or WR or QB or TE 13. RB or WR or QB or TE @@ -44,91 +44,73 @@ import yahoo_nfl_player as ynp import random import operator -from operator import attrgetter - class PyFantasyYahooDraftAdvisor(object): _TOP_N = 15 - - - - def __init__(self, players_list, league_roster_positions): ''' Constructor - ''' + ''' self.draftable_players_list = self.pre_process(players_list) self.original_draftable_players_list = self.draftable_players_list.copy() self.drafted_by_others = [] self.drafted_by_me = [] self.roster_positions = league_roster_positions self.avg_adp_for_each_position = self._calulate_avg_adp_for_each_position() - - - - + def pre_process(self, players_list): ''' Filters out players with adp of '-' Sorts by ADP - + #TODO: handle duplicates - + :param players_list: ''' orig_len = len(players_list) - + processed_list = [] for player_dict in players_list: player = ynp.YahooNFLPlayer(player_dict) if player.get_adp() is not "-": processed_list.append(player) - + print(f"preprocessing for '-' adp: initial size: {orig_len}, processed size:{len(processed_list)}") - - - + # https://stackoverflow.com/questions/403421/how-to-sort-a-list-of-objects-based-on-an-attribute-of-the-objects # https://stackoverflow.com/questions/4010322/sort-a-list-of-class-instances-python - + print("Sorting list.") processed_list.sort(key=operator.attrgetter('adpf')) - - return processed_list + return processed_list - def get_top_draftable_players(self, num_players=15, position=""): - + self.draftable_players_list.sort(key=operator.attrgetter('adpf')) - + players_to_return = [] if position: -# print(f"getting top players for {position}") for player in self.draftable_players_list: if player.get_position() == position: players_to_return.append(player) - - else: + + else: players_to_return = self.draftable_players_list - + players_to_return = players_to_return[0:num_players] return players_to_return - - - - + def draft_player(self, player_key, by_me=False): print(f"Draft player function. Draftable players: {len(self.draftable_players_list)}") player_index = None for idx, draftable in enumerate(self.draftable_players_list): if draftable.get_player_key() == player_key: - player_index=idx + player_index = idx break - - + if player_index is not None: player = self.draftable_players_list.pop(player_index) if by_me: @@ -142,63 +124,56 @@ def draft_player(self, player_key, by_me=False): # print(f"After drafting a player, draftable players: {len(self.draftable_players_list)}") - - - def get_all_players_for_position(self, position): players_for_position = [] for player in self.original_draftable_players_list: if player.get_position() == position: players_for_position.append(player) return players_for_position - - + def _calculate_avg_adp_for_position(self, position): players_at_position = self.get_all_players_for_position(position) sum_adp = sum(player.get_adpf() for player in players_at_position) - avg_adp = sum_adp/len(players_at_position) + avg_adp = sum_adp / len(players_at_position) return avg_adp - + def _calulate_avg_adp_for_each_position(self): pos_avg_adp_dict = {} for position in ysi.PyFantasyYahooSportsInterface.POSSIBLE_POSITIONS: avg_adp = self._calculate_avg_adp_for_position(position) # print(f"average adp for position {position}: {avg_adp}") - pos_avg_adp_dict[position]=avg_adp - + pos_avg_adp_dict[position] = avg_adp + return pos_avg_adp_dict - + def get_avg_adp_for_each_position(self): return self.avg_adp_for_each_position - - + def sort_positions_based_on_avg_adp(self): position_adp_list = list(self.get_avg_adp_for_each_position().items()) print(f"Items: {position_adp_list}") print(f"first item: {position_adp_list[0]}") # https://stackoverflow.com/questions/3121979/how-to-sort-list-tuple-of-lists-tuples - position_adp_list.sort(key= lambda tup: tup[1]) + position_adp_list.sort(key=lambda tup: tup[1]) return position_adp_list def positions_you_have_filled(self): positions_filled = [] for player in self.drafted_by_me: - positions_filled.append(player.get_position()) + positions_filled.append(player.get_position()) return positions_filled - + def positions_needed(self): filled_positions = self.positions_you_have_filled() needed_positions = [] for roster_position in set(self.roster_positions): number_needed_total = self.roster_positions.count(roster_position) number_have = filled_positions.count(roster_position) - - - currently_needed = number_needed_total-number_have + + currently_needed = number_needed_total - number_have needed_positions.append((roster_position, currently_needed)) - + return needed_positions - def simulate_random_drafting(my_draft_advisor, number_of_drafts=10): @@ -208,72 +183,59 @@ def simulate_random_drafting(my_draft_advisor, number_of_drafts=10): my_draft_advisor.draft_player(random_draftable.get_player_key(), by_me=False) - -def load_data(get_updated_data = False): - auth_filename="auth_keys.txt" +def load_data(get_updated_data=False): + auth_filename = "auth_keys.txt" data_file_path = "../data/all_players.txt" - - # load data + + # load data my_pyfsi = ysi.PyFantasyYahooSportsInterface(auth_filename) - - + if get_updated_data: my_pyfsi.download_all_player_data_from_yahoo_and_write_to_files(data_file_path) - + players_list = my_pyfsi.get_player_list_from_data_file(data_file_path) - return players_list - + return players_list + def main(): - - league_roster = "QB,WR,WR,RB,RB,TE,K,DEF,BN,BN,BN,BN,BN,IR".split(",") print(f"{league_roster}") - + players_list = load_data(get_updated_data=True) - + my_draft_advisor = PyFantasyYahooDraftAdvisor(players_list, league_roster) - - - + print(f"OK, we've got {len(my_draft_advisor.original_draftable_players_list)} choices to start") for position in ysi.PyFantasyYahooSportsInterface.POSSIBLE_POSITIONS: all_for_pos = my_draft_advisor.get_all_players_for_position(position) - print(f"# of existing players at {position}: {len(all_for_pos)}") - + print(f"# of existing players at {position}: {len(all_for_pos)}") + pos_avg_adp_dict = my_draft_advisor.get_avg_adp_for_each_position() print(f"Average adp for each position: {pos_avg_adp_dict}") - + position_based_draft_order_avg_adp = my_draft_advisor.sort_positions_based_on_avg_adp() print(f"Based on avg adp, the positional priority list is: {position_based_draft_order_avg_adp}") - - + # Simulate other people drafting simulate_random_drafting(my_draft_advisor) - - - # Simulate me drafting - + # Simulate me drafting + top_draftable_players = my_draft_advisor.get_top_draftable_players(6) print(f"top {len(top_draftable_players)} draftable players:") for idx, draftable in enumerate(top_draftable_players): print(f"#{idx}: Name: {draftable.get_full_name()}, adp:{draftable.get_adp()}, position:{draftable.get_position()}, player_key: {draftable.get_player_key()}") - random_draftable = random.choice(top_draftable_players) my_draft_advisor.draft_player(random_draftable.get_player_key(), by_me=True) - - - + filled_positions = my_draft_advisor.positions_you_have_filled() print(f"Positions You Have Filled:{filled_positions}") - + needed_positions = my_draft_advisor.positions_needed() print(f"Needed positions: {needed_positions}") - - - + + if __name__ == '__main__': - main() \ No newline at end of file + main() diff --git a/src/yahoo_sports_interface.py b/src/yahoo_sports_interface.py index f4bc805..656fce5 100644 --- a/src/yahoo_sports_interface.py +++ b/src/yahoo_sports_interface.py @@ -8,28 +8,28 @@ import xmltodict from distutils import text_file import random +secure_random = random.SystemRandom() - -OPENING_XML_STRING = '''''' +OPENING_XML_STRING = '''''' class PyFantasyYahooSportsInterface(object): # CLASS CONSTANTS NFL_PLAYERS_PER_TEAM = 53 NUMBER_OF_NFL_TEAMS = 32 NUMBER_OF_DEFENSES = NUMBER_OF_NFL_TEAMS - + # experimentally determined that there's 2789 "players" in the Yahoo DB, actually # TODO: fix calculation method MAX_NFL_PLAYERS = (NFL_PLAYERS_PER_TEAM*NUMBER_OF_NFL_TEAMS) + NUMBER_OF_DEFENSES MAX_RETURNED_PER_QUERY = 25 # determined experimentally - MAX_QUERY = math.ceil(MAX_NFL_PLAYERS/MAX_RETURNED_PER_QUERY)*2 + MAX_QUERY = math.ceil(MAX_NFL_PLAYERS/MAX_RETURNED_PER_QUERY)*2 POSSIBLE_POSITIONS = ["QB", "WR", "RB", "TE", "K" , "DEF"] - + def __init__(self, auth_filename): ''' - Constructor + Constructor ''' print(f"Initializing {self}") self.auth_filename = auth_filename @@ -37,10 +37,10 @@ def __init__(self, auth_filename): def connect(self): - + # Try connecting with saved session session = ysp.YahooConnection(self.auth_filename) - + # Oh no it's not live if not session.is_live_session(): url = session.auth_url() @@ -48,66 +48,66 @@ def connect(self): print(url) pin = input('Enter PIN from browser: ') session.enter_pin(pin) - - self.session = session - - + + self.session = session + + def query_yahoo(self, query): if self.session is None: self.connect() else: if not self.session.is_live_session(): - self.connect() - - return self.session.get(query) - - def get_xml_from_yahoo_result(self, result): + self.connect() + + return self.session.get(query) + + def get_xml_from_yahoo_result(self, result): return result.clean_text - - + + def download_players_data_list_of_dicts(self, position=""): xml_results = self.download_players_data_xml_strings(position) one_big_list_of_players = self.combine_xml_strings_to_one_big_list_of_players(xml_results) return one_big_list_of_players - - - + + + def download_players_data_xml_strings(self, position=""): ''' Returns a list of XML strings. :param position: ''' - - + + xml_results = [] count = PyFantasyYahooSportsInterface.MAX_RETURNED_PER_QUERY start = 0 count_string = "players count" i = 0 more_players_to_retrieve = True - - + + while i < PyFantasyYahooSportsInterface.MAX_QUERY and more_players_to_retrieve: start = i * count i += 1 - + print(f"i: {i}, start:{start}") - + # base query query = "game/nfl/players;out=draft_analysis,percent_owned" - + # Just one position? if position: print(f"adding position {position} to query") query = query + ";position=" + position - # Continue building query so we can loop through and get them all - query = query+";count=" + str(count) + # Continue building query so we can loop through and get them all + query = query+";count=" + str(count) query = query + ";start=" + str(start) - + print(f"Final query: {query}") - + result = self.query_yahoo(query) xml = self.get_xml_from_yahoo_result(result) xml_results.append(xml) @@ -117,10 +117,10 @@ def download_players_data_xml_strings(self, position=""): else: matched_lines = [line for line in xml.split('\n') if count_string in line] print("COUNT: {}".format(matched_lines)) - + return xml_results - - + + def league_specific_query(self, subquery="", league_number=None,): ''' Returns an XML string @@ -129,33 +129,33 @@ def league_specific_query(self, subquery="", league_number=None,): ''' if not league_number: league_number = input("League number is: ") - query = "league/nfl.l."+str(league_number) +subquery # get league info - - return self.query_yahoo(query) - - + query = "league/nfl.l."+str(league_number) +subquery # get league info + + return self.query_yahoo(query) + + def clear_text_file_and_write_multiple_xml_results(self, file_path, xml_results): - - + + #clear it first open(file_path, 'w').close() - - # append - with open(file_path, "a") as text_file: + + # append + with open(file_path, "a") as text_file: for result in xml_results: - print(f"{result}", file=text_file) + print(f"{result}", file=text_file) + - def parse_yahoo_xml_string_to_dict(self, xml_string): - #remove the first line, with the "" + #remove the first line, with the "" if OPENING_XML_STRING in xml_string: xml_string.replace(OPENING_XML_STRING, "") - + return xmltodict.parse(xml_string) def get_player_list_from_xml_string(self, xml_string_to_parse): - ''' + ''' :param xml_string_to_parse: ''' player_list = [] @@ -163,34 +163,34 @@ def get_player_list_from_xml_string(self, xml_string_to_parse): base_dict = self.parse_yahoo_xml_string_to_dict(xml_string_to_parse) fantasy_content_dict = base_dict['fantasy_content'] game_dict = fantasy_content_dict['game'] - players_dict = game_dict['players'] + players_dict = game_dict['players'] player_list = players_dict['player'] - - return player_list + + return player_list def combine_xml_strings_to_one_big_list_of_players(self, xml_strings): - + combined_player_list = [] - - + + for xml_string in xml_strings: if xml_string: combined_player_list += self.get_player_list_from_xml_string(xml_string) - + return combined_player_list def get_player_list_from_data_file(self, data_file_path): print(f"Getting data from {data_file_path}") - + with open(data_file_path, "r") as text_file: string_containing_multiple_xml_strings = text_file.read() - - + + #split on OPENING_XML_STRING xml_strings = string_containing_multiple_xml_strings.split(OPENING_XML_STRING) - + combined_player_list = self.combine_xml_strings_to_one_big_list_of_players(xml_strings) print(f"Got {len(combined_player_list)} players") return combined_player_list @@ -204,34 +204,34 @@ def download_all_player_data_from_yahoo_and_write_to_files(self, download_path=" ''' Download all the data to text files. :param pyfsi: PyFantasyYahooSportsInterface - ''' - # experimentally determined that there's 2789 "players" in the Yahoo DB. + ''' + # experimentally determined that there's 2789 "players" in the Yahoo DB. xml_results = self.download_players_data_xml_strings() - - + + self.clear_text_file_and_write_multiple_xml_results(download_path, xml_results) - - + + def download_player_data_for_each_position_from_yahoo_and_write_to_files(self): # get a result for each position for position in PyFantasyYahooSportsInterface.POSSIBLE_POSITIONS: xml_results = self.download_players_data_xml_strings(position=position) - + base_filename ="../data/"+ position + ".txt" for result in xml_results: self.clear_text_file_and_write_multiple_xml_results(base_filename, result) - - print("done") + + print("done") + + - - @@ -239,18 +239,17 @@ def download_player_data_for_each_position_from_yahoo_and_write_to_files(self): def main(): auth_filename="auth_keys.txt" pyfsi = PyFantasyYahooSportsInterface(auth_filename) - - pyfsi.download_all_player_data_from_yahoo_and_write_to_files() - pyfsi.download_player_data_for_each_position_from_yahoo_and_write_to_files(pyfsi) - -# data_file_path = "../data/all_players.txt" -# player_list = pyfsi.get_player_list_from_data_file(data_file_path) - -# print(random.choice(player_list)) - - - - + +# pyfsi.download_all_player_data_from_yahoo_and_write_to_files() +# pyfsi.download_player_data_for_each_position_from_yahoo_and_write_to_files(pyfsi) + + data_file_path = "../data/all_players.txt" + player_list = pyfsi.get_player_list_from_data_file(data_file_path) + + print(secure_random.choice(player_list)) + + + + if __name__ == "__main__": main() - From 4a0df6017ddbfb60241a0a1d9e53aff5b7978501 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Mon, 21 Jan 2019 18:17:40 -0500 Subject: [PATCH 02/21] CDL:scraped down the stat categories Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- data/stat_categories.txt | 1554 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 1554 insertions(+) create mode 100644 data/stat_categories.txt diff --git a/data/stat_categories.txt b/data/stat_categories.txt new file mode 100644 index 0000000..4ce475b --- /dev/null +++ b/data/stat_categories.txt @@ -0,0 +1,1554 @@ + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + From 1d89a207f7c2f237d48bdf8d13b3e813bb71f1d2 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Mon, 21 Jan 2019 18:18:00 -0500 Subject: [PATCH 03/21] CDL: more data Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- ..._adp_draft_analysis_before_2018_season.txt | 120679 +++++ ...l_players_after_2018_season_with_stats.txt | 371097 +++++++++++++++ 2 files changed, 491776 insertions(+) create mode 100644 data/all_players_adp_draft_analysis_before_2018_season.txt create mode 100644 data/all_players_after_2018_season_with_stats.txt diff --git a/data/all_players_adp_draft_analysis_before_2018_season.txt b/data/all_players_adp_draft_analysis_before_2018_season.txt new file mode 100644 index 0000000..600b4da --- /dev/null +++ b/data/all_players_adp_draft_analysis_before_2018_season.txt @@ -0,0 +1,120679 @@ + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28398 + 28398 + + Todd Gurley II + Todd + Gurley II + Todd + Gurley II + + nfl.p.28398 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/R0dS3WGRW9RFJadp.KihwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28398.png + small + + https://s.yimg.com/iu/api/res/1.2/R0dS3WGRW9RFJadp.KihwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28398.png + 0 + O + + RB + + + 1.3 + 1.0 + 68.6 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.26671 + 26671 + + Le'Veon Bell + Le'Veon + Bell + Le'Veon + Bell + + Q + Questionable + nfl.p.26671 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/7ctYzETVTHzBLMN5nPsZOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26671.png + small + + https://s.yimg.com/iu/api/res/1.2/7ctYzETVTHzBLMN5nPsZOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26671.png + 0 + O + + RB + + 1 + 1 + + 2.2 + 1.0 + 66.4 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.28474 + 28474 + + David Johnson + David + Johnson + David + Johnson + + nfl.p.28474 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/bVYbyRhr4G4DV0jCJ_W4DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28474.png + small + + https://s.yimg.com/iu/api/res/1.2/bVYbyRhr4G4DV0jCJ_W4DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28474.png + 0 + O + + RB + + 1 + + 4.0 + 1.0 + 64.1 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.29238 + 29238 + + Ezekiel Elliott + Ezekiel + Elliott + Ezekiel + Elliott + + nfl.p.29238 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/wy93YGddP62dCPtzgMCU3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29238.png + small + + https://s.yimg.com/iu/api/res/1.2/wy93YGddP62dCPtzgMCU3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29238.png + 0 + O + + RB + + + 4.3 + 1.0 + 64.7 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.24171 + 24171 + + Antonio Brown + Antonio + Brown + Antonio + Brown + + nfl.p.24171 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/ImJACC_rt5ql2NHxT40_gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24171.png + small + + https://s.yimg.com/iu/api/res/1.2/ImJACC_rt5ql2NHxT40_gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24171.png + 0 + O + + WR + + 1 + 1 + + 5.1 + 1.0 + 61.3 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30180 + 30180 + + Alvin Kamara + Alvin + Kamara + Alvin + Kamara + + nfl.p.30180 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/7A96_Mp9YBaFvXY59Uipew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30180.png + small + + https://s.yimg.com/iu/api/res/1.2/7A96_Mp9YBaFvXY59Uipew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30180.png + 0 + O + + RB + + 1 + + 6.7 + 1.1 + 60.1 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30972 + 30972 + + Saquon Barkley + Saquon + Barkley + Saquon + Barkley + + nfl.p.30972 + nfl.t.19 + New York Giants + NYG + + 9 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/QrLazFupWOTD6HuG7VZetg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30972.png + small + + https://s.yimg.com/iu/api/res/1.2/QrLazFupWOTD6HuG7VZetg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30972.png + 0 + O + + RB + + 1 + + 7.4 + 1.2 + 57.3 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.26650 + 26650 + + DeAndre Hopkins + DeAndre + Hopkins + DeAndre + Hopkins + + nfl.p.26650 + nfl.t.34 + Houston Texans + Hou + + 10 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/yZDrmUs3Sg2oIrO4x3Pf0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26650.png + small + + https://s.yimg.com/iu/api/res/1.2/yZDrmUs3Sg2oIrO4x3Pf0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26650.png + 0 + O + + WR + + 1 + + 8.6 + 1.2 + 56.7 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.28403 + 28403 + + Melvin Gordon + Melvin + Gordon + Melvin + Gordon + + nfl.p.28403 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/bMoDjDdF0xmJ3ChALe7dSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/28403.png + small + + https://s.yimg.com/iu/api/res/1.2/bMoDjDdF0xmJ3ChALe7dSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/28403.png + 0 + O + + RB + + + 12.4 + 1.8 + 52.0 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.27540 + 27540 + + Odell Beckham Jr. + Odell + Beckham Jr. + Odell + Beckham Jr. + + nfl.p.27540 + nfl.t.19 + New York Giants + NYG + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/_RGqQklqk4yOvHxwthf0AA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27540.png + small + + https://s.yimg.com/iu/api/res/1.2/_RGqQklqk4yOvHxwthf0AA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27540.png + 0 + O + + WR + + 1 + + 10.0 + 1.4 + 54.3 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.24793 + 24793 + + Julio Jones + Julio + Jones + Julio + Jones + + nfl.p.24793 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/1dSy_kq454iOPS7WubUk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24793.png + small + + https://s.yimg.com/iu/api/res/1.2/1dSy_kq454iOPS7WubUk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24793.png + 0 + O + + WR + + 1 + + 11.6 + 1.7 + 52.6 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30117 + 30117 + + Leonard Fournette + Leonard + Fournette + Leonard + Fournette + + nfl.p.30117 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/PxIVNC6zaw20NDHFH5duAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30117.png + small + + https://s.yimg.com/iu/api/res/1.2/PxIVNC6zaw20NDHFH5duAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30117.png + 0 + O + + RB + + 1 + + 14.7 + 2.1 + 47.4 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30199 + 30199 + + Kareem Hunt + Kareem + Hunt + Kareem + Hunt + + nfl.p.30199 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/yuO.eVIZo4KnBH63whFK2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30199.png + small + + https://s.yimg.com/iu/api/res/1.2/yuO.eVIZo4KnBH63whFK2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30199.png + 0 + O + + RB + + 1 + + 11.3 + 1.7 + 54.5 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.29281 + 29281 + + Michael Thomas + Michael + Thomas + Michael + Thomas + + nfl.p.29281 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/FAlfbFaDH6cPfTBBL9cP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29281.png + small + + https://s.yimg.com/iu/api/res/1.2/FAlfbFaDH6cPfTBBL9cP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29281.png + 0 + O + + WR + + + 14.5 + 2.1 + 46.6 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.26699 + 26699 + + Keenan Allen + Keenan + Allen + Keenan + Allen + + nfl.p.26699 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/UEud_xdjAangoqjW6GXluQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26699.png + small + + https://s.yimg.com/iu/api/res/1.2/UEud_xdjAangoqjW6GXluQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26699.png + 0 + O + + WR + + + 17.0 + 2.2 + 43.9 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.27581 + 27581 + + Davante Adams + Davante + Adams + Davante + Adams + + nfl.p.27581 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/FsSM1k8ol7XaTLtkHVrA1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27581.png + small + + https://s.yimg.com/iu/api/res/1.2/FsSM1k8ol7XaTLtkHVrA1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27581.png + 0 + O + + WR + + + 17.9 + 2.3 + 42.7 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.24791 + 24791 + + A.J. Green + A.J. + Green + A.J. + Green + + nfl.p.24791 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/IM8_hBPAyznTCwHbfqLptw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24791.png + small + + https://s.yimg.com/iu/api/res/1.2/IM8_hBPAyznTCwHbfqLptw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24791.png + 0 + O + + WR + + 1 + + 18.8 + 2.3 + 39.5 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.24017 + 24017 + + Rob Gronkowski + Rob + Gronkowski + Rob + Gronkowski + + nfl.p.24017 + nfl.t.17 + New England Patriots + NE + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/Qnkswpez0N.a_H.RgWkN6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24017.png + small + + https://s.yimg.com/iu/api/res/1.2/Qnkswpez0N.a_H.RgWkN6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24017.png + 0 + O + + TE + + 1 + + 19.4 + 2.5 + 39.4 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.27535 + 27535 + + Mike Evans + Mike + Evans + Mike + Evans + + nfl.p.27535 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/y5nlfg.OhA29vgI4ILVl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27535.png + small + + https://s.yimg.com/iu/api/res/1.2/y5nlfg.OhA29vgI4ILVl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27535.png + 0 + O + + WR + + 1 + + 22.7 + 2.8 + 34.5 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.26686 + 26686 + + Travis Kelce + Travis + Kelce + Travis + Kelce + + nfl.p.26686 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/8a3tQ7GFVmjz5yFqGa6OWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26686.png + small + + https://s.yimg.com/iu/api/res/1.2/8a3tQ7GFVmjz5yFqGa6OWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26686.png + 0 + O + + TE + + 1 + + 24.7 + 3.1 + 31.3 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.29399 + 29399 + + Tyreek Hill + Tyreek + Hill + Tyreek + Hill + + nfl.p.29399 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/KGaqzv0n1HLlWNPV2NEetw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29399.png + small + + https://s.yimg.com/iu/api/res/1.2/KGaqzv0n1HLlWNPV2NEetw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29399.png + 0 + O + + WR + + 1 + + 27.5 + 3.3 + 28.3 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30121 + 30121 + + Christian McCaffrey + Christian + McCaffrey + Christian + McCaffrey + + nfl.p.30121 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/I2Nua3.SXdJraKJ8Sbz4hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30121.png + small + + https://s.yimg.com/iu/api/res/1.2/I2Nua3.SXdJraKJ8Sbz4hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30121.png + 0 + O + + RB + + + 24.4 + 3.0 + 35.7 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.27631 + 27631 + + Devonta Freeman + Devonta + Freeman + Devonta + Freeman + + nfl.p.27631 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/._fMTmSt9DNlW5CuBXUrpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27631.png + small + + https://s.yimg.com/iu/api/res/1.2/._fMTmSt9DNlW5CuBXUrpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27631.png + 0 + O + + RB + + 1 + + 23.5 + 2.9 + 35.9 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30154 + 30154 + + Dalvin Cook + Dalvin + Cook + Dalvin + Cook + + nfl.p.30154 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/Q.RrjEoZWmMgYj.FbT6z0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30154.png + small + + https://s.yimg.com/iu/api/res/1.2/Q.RrjEoZWmMgYj.FbT6z0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30154.png + 0 + O + + RB + + + 18.4 + 2.3 + 44.4 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.28534 + 28534 + + Stefon Diggs + Stefon + Diggs + Stefon + Diggs + + nfl.p.28534 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/63b0CbC.WRpNNvGa74BpXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28534.png + small + + https://s.yimg.com/iu/api/res/1.2/63b0CbC.WRpNNvGa74BpXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28534.png + 0 + O + + WR + + + 28.6 + 3.4 + 24.7 + 1.00 + + + week + 1 + 100 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29384 + 29384 + + Jordan Howard + Jordan + Howard + Jordan + Howard + + nfl.p.29384 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/DX64asZBlHmihxe55uM14A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29384.png + small + + https://s.yimg.com/iu/api/res/1.2/DX64asZBlHmihxe55uM14A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29384.png + 0 + O + + RB + + + 28.3 + 3.4 + 31.2 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.27277 + 27277 + + Adam Thielen + Adam + Thielen + Adam + Thielen + + Q + Questionable + nfl.p.27277 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/_f7LGTo99FmWZBLzGRMQTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27277.png + small + + https://s.yimg.com/iu/api/res/1.2/_f7LGTo99FmWZBLzGRMQTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27277.png + 0 + O + + WR + + 1 + + 27.1 + 3.3 + 27.0 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.6762 + 6762 + + Larry Fitzgerald + Larry + Fitzgerald + Larry + Fitzgerald + + nfl.p.6762 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/cHJ8jAKIKK9NEyridutGhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6762.png + small + + https://s.yimg.com/iu/api/res/1.2/cHJ8jAKIKK9NEyridutGhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6762.png + 0 + O + + WR + + + 34.5 + 4.0 + 20.8 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.26658 + 26658 + + Zach Ertz + Zach + Ertz + Zach + Ertz + + nfl.p.26658 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/BjwWIvaNttNHkFS78HSWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26658.png + small + + https://s.yimg.com/iu/api/res/1.2/BjwWIvaNttNHkFS78HSWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26658.png + 0 + O + + TE + + + 32.4 + 3.8 + 23.2 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.25802 + 25802 + + T.Y. Hilton + T.Y. + Hilton + T.Y. + Hilton + + nfl.p.25802 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/iuHT43oYRDVSYGn_LYGCyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25802.png + small + + https://s.yimg.com/iu/api/res/1.2/iuHT43oYRDVSYGn_LYGCyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25802.png + 0 + O + + WR + + 1 + + 35.5 + 4.1 + 21.8 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30175 + 30175 + + JuJu Smith-Schuster + JuJu + Smith-Schuster + JuJu + Smith-Schuster + + nfl.p.30175 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/SKIoTgzo1RWhPiL8JkuStg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30175.png + small + + https://s.yimg.com/iu/api/res/1.2/SKIoTgzo1RWhPiL8JkuStg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30175.png + 0 + O + + WR + + 1 + + 39.0 + 4.5 + 14.7 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.30161 + 30161 + + Joe Mixon + Joe + Mixon + Joe + Mixon + + nfl.p.30161 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/rzubkS7PamCIBHasank8lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30161.png + small + + https://s.yimg.com/iu/api/res/1.2/rzubkS7PamCIBHasank8lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30161.png + 0 + O + + RB + + 1 + + 36.0 + 4.2 + 22.7 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.28392 + 28392 + + Amari Cooper + Amari + Cooper + Amari + Cooper + + nfl.p.28392 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/t7KktSAoBwL4Trr71unm7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28392.png + small + + https://s.yimg.com/iu/api/res/1.2/t7KktSAoBwL4Trr71unm7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28392.png + 0 + O + + WR + + + 36.7 + 4.3 + 19.3 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.24035 + 24035 + + Golden Tate + Golden + Tate + Golden + Tate + + nfl.p.24035 + nfl.t.8 + Detroit Lions + Det + + 6 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/3R_u166V5sj6bjZcmDiKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24035.png + small + + https://s.yimg.com/iu/api/res/1.2/3R_u166V5sj6bjZcmDiKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24035.png + 0 + O + + WR + + + 47.1 + 5.3 + 12.9 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.7200 + 7200 + + Aaron Rodgers + Aaron + Rodgers + Aaron + Rodgers + + nfl.p.7200 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/KAybTAwhxN0pAbtPslho1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7200.png + small + + https://s.yimg.com/iu/api/res/1.2/KAybTAwhxN0pAbtPslho1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7200.png + 0 + O + + QB + + 1 + + 23.1 + 2.9 + 26.6 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.29307 + 29307 + + Kenyan Drake + Kenyan + Drake + Kenyan + Drake + + nfl.p.29307 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/mPf_mdNY5XcDbsLCQO5v2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29307.png + small + + https://s.yimg.com/iu/api/res/1.2/mPf_mdNY5XcDbsLCQO5v2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29307.png + 0 + O + + RB + + 1 + 1 + + 39.7 + 4.6 + 17.9 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.25105 + 25105 + + Doug Baldwin + Doug + Baldwin + Doug + Baldwin + + Q + Questionable + nfl.p.25105 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/pcslXEt6lWz8Bg86Xf0Isw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25105.png + small + + https://s.yimg.com/iu/api/res/1.2/pcslXEt6lWz8Bg86Xf0Isw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25105.png + 0 + O + + WR + + 1 + + 34.1 + 4.0 + 22.2 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.27591 + 27591 + + Jarvis Landry + Jarvis + Landry + Jarvis + Landry + + nfl.p.27591 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/s87DuNVwFQzJaplHjLXT_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27591.png + small + + https://s.yimg.com/iu/api/res/1.2/s87DuNVwFQzJaplHjLXT_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27591.png + 0 + O + + WR + + + 49.0 + 5.5 + 9.7 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.23997 + 23997 + + Demaryius Thomas + Demaryius + Thomas + Demaryius + Thomas + + nfl.p.23997 + nfl.t.7 + Denver Broncos + Den + + 10 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/x0bYG2c5Zz0ERJJbFiUAdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23997.png + small + + https://s.yimg.com/iu/api/res/1.2/x0bYG2c5Zz0ERJJbFiUAdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23997.png + 0 + O + + WR + + + 44.2 + 5.0 + 15.1 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.24788 + 24788 + + Cam Newton + Cam + Newton + Cam + Newton + + nfl.p.24788 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 1 + QB + + https://s.yimg.com/iu/api/res/1.2/Q1ziSQG6UAf7iID63Nj9YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24788.png + small + + https://s.yimg.com/iu/api/res/1.2/Q1ziSQG6UAf7iID63Nj9YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24788.png + 0 + O + + QB + + + 45.5 + 5.2 + 10.4 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.25178 + 25178 + + Chris Hogan + Chris + Hogan + Chris + Hogan + + nfl.p.25178 + nfl.t.17 + New England Patriots + NE + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/pM_Y4drjgQzGXyhOefVNEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25178.png + small + + https://s.yimg.com/iu/api/res/1.2/pM_Y4drjgQzGXyhOefVNEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25178.png + 0 + O + + WR + + 1 + + 68.4 + 7.5 + 6.1 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.29405 + 29405 + + Alex Collins + Alex + Collins + Alex + Collins + + nfl.p.29405 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/tDUuvXiiEdRXFbQlbEcUnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29405.png + small + + https://s.yimg.com/iu/api/res/1.2/tDUuvXiiEdRXFbQlbEcUnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29405.png + 0 + O + + RB + + 1 + + 46.2 + 5.2 + 13.5 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.28537 + 28537 + + Jay Ajayi + Jay + Ajayi + Jay + Ajayi + + nfl.p.28537 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/8_wBYAWL1yFaypSAH51Miw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28537.png + small + + https://s.yimg.com/iu/api/res/1.2/8_wBYAWL1yFaypSAH51Miw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28537.png + 0 + O + + RB + + 1 + 1 + + 48.4 + 5.4 + 11.6 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.26561 + 26561 + + Josh Gordon + Josh + Gordon + Josh + Gordon + + Q + Questionable + nfl.p.26561 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/B7oGCmKZfwDP5CwuosBZzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26561.png + small + + https://s.yimg.com/iu/api/res/1.2/B7oGCmKZfwDP5CwuosBZzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26561.png + 0 + O + + WR + + 1 + + 52.5 + 5.8 + 15.2 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.29279 + 29279 + + Derrick Henry + Derrick + Henry + Derrick + Henry + + nfl.p.29279 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/BsK3qj71MxrCBdeBCCiGHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29279.png + small + + https://s.yimg.com/iu/api/res/1.2/BsK3qj71MxrCBdeBCCiGHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29279.png + 0 + O + + RB + + 1 + + 50.1 + 5.6 + 14.8 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.9317 + 9317 + + LeSean McCoy + LeSean + McCoy + LeSean + McCoy + + Q + Questionable + nfl.p.9317 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/mdG7t5jI1vLr7ce71pRWmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9317.png + small + + https://s.yimg.com/iu/api/res/1.2/mdG7t5jI1vLr7ce71pRWmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9317.png + 0 + O + + RB + + 1 + + 40.6 + 4.6 + 20.3 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.25785 + 25785 + + Russell Wilson + Russell + Wilson + Russell + Wilson + + nfl.p.25785 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/OxOjQVJkvUee70.hiV8ULg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25785.png + small + + https://s.yimg.com/iu/api/res/1.2/OxOjQVJkvUee70.hiV8ULg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25785.png + 0 + O + + QB + + + 43.8 + 5.0 + 13.5 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.25807 + 25807 + + Lamar Miller + Lamar + Miller + Lamar + Miller + + nfl.p.25807 + nfl.t.34 + Houston Texans + Hou + + 10 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/XrRO5ruqYu12Z5pTjMNICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25807.png + small + + https://s.yimg.com/iu/api/res/1.2/XrRO5ruqYu12Z5pTjMNICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25807.png + 0 + O + + RB + + 1 + + 61.7 + 6.8 + 8.9 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.5228 + 5228 + + Tom Brady + Tom + Brady + Tom + Brady + + nfl.p.5228 + nfl.t.17 + New England Patriots + NE + + 11 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/K4TGf.cQSCiks4HMIB82Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5228.png + small + + https://s.yimg.com/iu/api/res/1.2/K4TGf.cQSCiks4HMIB82Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5228.png + 0 + O + + QB + + + 35.3 + 4.1 + 15.2 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.30125 + 30125 + + Deshaun Watson + Deshaun + Watson + Deshaun + Watson + + nfl.p.30125 + nfl.t.34 + Houston Texans + Hou + + 10 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/yOA5SB6GBjA0mkIbkAy1tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30125.png + small + + https://s.yimg.com/iu/api/res/1.2/yOA5SB6GBjA0mkIbkAy1tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30125.png + 0 + O + + QB + + 1 + + 39.9 + 4.6 + 13.0 + 1.00 + + + week + 1 + 100 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.5479 + 5479 + + Drew Brees + Drew + Brees + Drew + Brees + + nfl.p.5479 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/Tes_HwTnPRpOWHjxwcMMrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/5479.png + small + + https://s.yimg.com/iu/api/res/1.2/Tes_HwTnPRpOWHjxwcMMrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/5479.png + 0 + O + + QB + + 1 + + 50.4 + 5.7 + 8.1 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.31041 + 31041 + + Royce Freeman + Royce + Freeman + Royce + Freeman + + nfl.p.31041 + nfl.t.7 + Denver Broncos + Den + + 10 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/T3dV2I_d9.8UrssEPihUZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31041.png + small + + https://s.yimg.com/iu/api/res/1.2/T3dV2I_d9.8UrssEPihUZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31041.png + 0 + O + + RB + + 1 + + 67.1 + 7.4 + 8.5 + 1.00 + + + week + 1 + 96 + 0 + + + + 380.p.27589 + 27589 + + Allen Robinson II + Allen + Robinson II + Allen + Robinson II + + nfl.p.27589 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/1J9gFPpR5AkL4qGa.kc0Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27589.png + small + + https://s.yimg.com/iu/api/res/1.2/1J9gFPpR5AkL4qGa.kc0Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27589.png + 0 + O + + WR + + + 54.5 + 6.1 + 9.3 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.30118 + 30118 + + Corey Davis + Corey + Davis + Corey + Davis + + nfl.p.30118 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/WAVa3UCz5gE_1oPTokTMQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30118.png + small + + https://s.yimg.com/iu/api/res/1.2/WAVa3UCz5gE_1oPTokTMQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30118.png + 0 + O + + WR + + 1 + + 77.5 + 8.4 + 4.9 + 1.00 + + + week + 1 + 95 + 0 + + + + 380.p.24070 + 24070 + + Jimmy Graham + Jimmy + Graham + Jimmy + Graham + + nfl.p.24070 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/lcB_rwhSPVla13FVHD_eYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24070.png + small + + https://s.yimg.com/iu/api/res/1.2/lcB_rwhSPVla13FVHD_eYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24070.png + 0 + O + + TE + + + 47.2 + 5.4 + 10.4 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.24936 + 24936 + + Dion Lewis + Dion + Lewis + Dion + Lewis + + nfl.p.24936 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/UJICr7.Uc6dl81Ek9TiwFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24936.png + small + + https://s.yimg.com/iu/api/res/1.2/UJICr7.Uc6dl81Ek9TiwFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24936.png + 0 + O + + RB + + 1 + + 65.7 + 7.2 + 5.7 + 1.00 + + + week + 1 + 95 + 0 + + + + 380.p.25876 + 25876 + + Marvin Jones Jr. + Marvin + Jones Jr. + Marvin + Jones Jr. + + nfl.p.25876 + nfl.t.8 + Detroit Lions + Det + + 6 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/pSeTSJDvCAMp3lciQIYeSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25876.png + small + + https://s.yimg.com/iu/api/res/1.2/pSeTSJDvCAMp3lciQIYeSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25876.png + 0 + O + + WR + + + 64.8 + 7.1 + 5.6 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.26701 + 26701 + + Marquise Goodwin + Marquise + Goodwin + Marquise + Goodwin + + nfl.p.26701 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/xbNhQyTn4f2i8tNS3ymM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26701.png + small + + https://s.yimg.com/iu/api/res/1.2/xbNhQyTn4f2i8tNS3ymM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26701.png + 0 + O + + WR + + 1 + + 87.6 + 9.5 + 4.0 + 0.97 + + + week + 1 + 95 + 0 + + + + 380.p.30136 + 30136 + + Evan Engram + Evan + Engram + Evan + Engram + + Q + Questionable + nfl.p.30136 + nfl.t.19 + New York Giants + NYG + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/fqQajnLE2zJb5H4tbNcquw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30136.png + small + + https://s.yimg.com/iu/api/res/1.2/fqQajnLE2zJb5H4tbNcquw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30136.png + 0 + O + + TE + + 1 + + 55.9 + 6.3 + 7.7 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.26813 + 26813 + + Rex Burkhead + Rex + Burkhead + Rex + Burkhead + + Q + Questionable + nfl.p.26813 + nfl.t.17 + New England Patriots + NE + + 11 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/aOXJZRwLpMdsFRsorWgE3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26813.png + small + + https://s.yimg.com/iu/api/res/1.2/aOXJZRwLpMdsFRsorWgE3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26813.png + 0 + O + + RB + + 1 + 1 + + 84.3 + 9.1 + 5.6 + 1.00 + + + week + 1 + 92 + 0 + + + + 380.p.27548 + 27548 + + Brandin Cooks + Brandin + Cooks + Brandin + Cooks + + nfl.p.27548 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/udeSo916KhtqKtspogvA5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27548.png + small + + https://s.yimg.com/iu/api/res/1.2/udeSo916KhtqKtspogvA5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27548.png + 0 + O + + WR + + 1 + + 60.8 + 6.7 + 7.9 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.24057 + 24057 + + Emmanuel Sanders + Emmanuel + Sanders + Emmanuel + Sanders + + nfl.p.24057 + nfl.t.7 + Denver Broncos + Den + + 10 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/t7XX7mAvBq0OoiFxbbYhiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24057.png + small + + https://s.yimg.com/iu/api/res/1.2/t7XX7mAvBq0OoiFxbbYhiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24057.png + 0 + O + + WR + + + 92.2 + 10.0 + 2.9 + 0.99 + + + week + 1 + 94 + 0 + + + + 380.p.8285 + 8285 + + Greg Olsen + Greg + Olsen + Greg + Olsen + + nfl.p.8285 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/7bePkncqcSPTKCZQBiM_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8285.png + small + + https://s.yimg.com/iu/api/res/1.2/7bePkncqcSPTKCZQBiM_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8285.png + 0 + O + + TE + + + 54.5 + 6.1 + 7.3 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.9265 + 9265 + + Matthew Stafford + Matthew + Stafford + Matthew + Stafford + + nfl.p.9265 + nfl.t.8 + Detroit Lions + Det + + 6 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/ZQUxiYCjYPtIf_MzwAFrXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/9265.png + small + + https://s.yimg.com/iu/api/res/1.2/ZQUxiYCjYPtIf_MzwAFrXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/9265.png + 0 + O + + QB + + + 73.4 + 8.1 + 2.9 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.25812 + 25812 + + Kirk Cousins + Kirk + Cousins + Kirk + Cousins + + nfl.p.25812 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/eXzP3puQYCKN9lpWfDh.9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25812.png + small + + https://s.yimg.com/iu/api/res/1.2/eXzP3puQYCKN9lpWfDh.9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25812.png + 0 + O + + QB + + + 66.8 + 7.3 + 4.0 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.28493 + 28493 + + Jamison Crowder + Jamison + Crowder + Jamison + Crowder + + Q + Questionable + nfl.p.28493 + nfl.t.28 + Washington Redskins + Was + + 4 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/Vo5nwoKc6XkXbLqa9eVBRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28493.png + small + + https://s.yimg.com/iu/api/res/1.2/Vo5nwoKc6XkXbLqa9eVBRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28493.png + 0 + O + + WR + + + 96.0 + 10.4 + 2.1 + 0.99 + + + week + 1 + 89 + 0 + + + + 380.p.27585 + 27585 + + Carlos Hyde + Carlos + Hyde + Carlos + Hyde + + nfl.p.27585 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/3W_Nk4gsLy75XhxxYW8I2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27585.png + small + + https://s.yimg.com/iu/api/res/1.2/3W_Nk4gsLy75XhxxYW8I2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27585.png + 0 + O + + RB + + + 94.7 + 10.2 + 3.1 + 0.94 + + + week + 1 + 92 + 0 + + + + 380.p.27789 + 27789 + + Trey Burton + Trey + Burton + Trey + Burton + + nfl.p.27789 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/OfFTLRXAEUohs7CbFWcoZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27789.png + small + + https://s.yimg.com/iu/api/res/1.2/OfFTLRXAEUohs7CbFWcoZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27789.png + 0 + O + + TE + + + 74.8 + 8.2 + 3.6 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.24815 + 24815 + + Mark Ingram + Mark + Ingram + Mark + Ingram + + SUSP + Suspended + nfl.p.24815 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/kk7Qy84wLeV3AQ2gy4KcDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24815.png + small + + https://s.yimg.com/iu/api/res/1.2/kk7Qy84wLeV3AQ2gy4KcDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24815.png + 0 + O + + RB + + 1 + + 71.8 + 7.8 + 14.9 + 1.00 + + + week + 1 + 93 + 0 + + + + 380.p.8266 + 8266 + + Marshawn Lynch + Marshawn + Lynch + Marshawn + Lynch + + nfl.p.8266 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/pmnVAoiOtU9NPn70pc0rTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8266.png + small + + https://s.yimg.com/iu/api/res/1.2/pmnVAoiOtU9NPn70pc0rTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8266.png + 0 + O + + RB + + + 77.1 + 8.4 + 5.0 + 1.00 + + + week + 1 + 95 + 0 + + + + 380.p.6763 + 6763 + + Philip Rivers + Philip + Rivers + Philip + Rivers + + nfl.p.6763 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/_ZDEtpn311Lhx6pZCAsH5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/6763.png + small + + https://s.yimg.com/iu/api/res/1.2/_ZDEtpn311Lhx6pZCAsH5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/6763.png + 0 + O + + QB + + 1 + + 96.8 + 10.4 + 1.8 + 0.99 + + + week + 1 + 94 + 0 + + + + 380.p.25883 + 25883 + + Alfred Morris + Alfred + Morris + Alfred + Morris + + nfl.p.25883 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/ySgpQVF9IkcaXifT_Pk_vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25883.png + small + + https://s.yimg.com/iu/api/res/1.2/ySgpQVF9IkcaXifT_Pk_vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25883.png + 0 + O + + RB + + 1 + 1 + + 88.0 + 9.5 + 3.9 + 0.18 + + + week + 1 + 74 + 0 + + + + 380.p.26664 + 26664 + + Robert Woods + Robert + Woods + Robert + Woods + + nfl.p.26664 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/eX1MUgLLhKyWb6PaqBQNxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26664.png + small + + https://s.yimg.com/iu/api/res/1.2/eX1MUgLLhKyWb6PaqBQNxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26664.png + 0 + O + + WR + + 1 + + 82.1 + 8.9 + 3.8 + 1.00 + + + week + 1 + 94 + 0 + + + + 380.p.29785 + 29785 + + Robby Anderson + Robby + Anderson + Robby + Anderson + + nfl.p.29785 + nfl.t.20 + New York Jets + NYJ + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/CM1J33Rc6ndztf3z6g9C9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29785.png + small + + https://s.yimg.com/iu/api/res/1.2/CM1J33Rc6ndztf3z6g9C9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29785.png + 0 + O + + WR + + 1 + + 98.9 + 10.6 + 2.2 + 0.98 + + + week + 1 + 90 + 0 + + + + 380.p.9274 + 9274 + + Michael Crabtree + Michael + Crabtree + Michael + Crabtree + + nfl.p.9274 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/ilSvAyEPPmVP8q3IsBYbwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9274.png + small + + https://s.yimg.com/iu/api/res/1.2/ilSvAyEPPmVP8q3IsBYbwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9274.png + 0 + O + + WR + + + 89.3 + 9.6 + 3.3 + 1.00 + + + week + 1 + 93 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27590 + 27590 + + Jimmy Garoppolo + Jimmy + Garoppolo + Jimmy + Garoppolo + + nfl.p.27590 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/0MFDYZUKoA7bCDSAa_lS2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27590.png + small + + https://s.yimg.com/iu/api/res/1.2/0MFDYZUKoA7bCDSAa_lS2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27590.png + 0 + O + + QB + + 1 + + 77.3 + 8.4 + 3.7 + 1.00 + + + week + 1 + 96 + 0 + + + + 380.p.7924 + 7924 + + Delanie Walker + Delanie + Walker + Delanie + Walker + + Q + Questionable + nfl.p.7924 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/ZjiyLeiS95ElocmqoGy4ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7924.png + small + + https://s.yimg.com/iu/api/res/1.2/ZjiyLeiS95ElocmqoGy4ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7924.png + 0 + O + + TE + + 1 + + 70.8 + 7.8 + 3.5 + 1.00 + + + week + 1 + 97 + 0 + + + + 380.p.30182 + 30182 + + Cooper Kupp + Cooper + Kupp + Cooper + Kupp + + nfl.p.30182 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/sX9bAb9.y0VsP5.QDxjZQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30182.png + small + + https://s.yimg.com/iu/api/res/1.2/sX9bAb9.y0VsP5.QDxjZQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30182.png + 0 + O + + WR + + 1 + + 101.2 + 10.9 + 1.9 + 0.99 + + + week + 1 + 90 + 0 + + + + 380.p.24830 + 24830 + + Kyle Rudolph + Kyle + Rudolph + Kyle + Rudolph + + nfl.p.24830 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/dwCSiJplgUMtrXBQofumzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24830.png + small + + https://s.yimg.com/iu/api/res/1.2/dwCSiJplgUMtrXBQofumzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24830.png + 0 + O + + TE + + + 67.0 + 7.4 + 4.1 + 1.00 + + + week + 1 + 98 + 0 + + + + 380.p.6770 + 6770 + + Ben Roethlisberger + Ben + Roethlisberger + Ben + Roethlisberger + + nfl.p.6770 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/3Bc6.N_r0C.D7QSKM1Od6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/6770.png + small + + https://s.yimg.com/iu/api/res/1.2/3Bc6.N_r0C.D7QSKM1Od6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/6770.png + 0 + O + + QB + + 1 + + 95.2 + 10.3 + 2.2 + 1.00 + + + week + 1 + 96 + 0 + + + + 380.p.30362 + 30362 + + Chris Carson + Chris + Carson + Chris + Carson + + nfl.p.30362 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/LuTNb3HJYss4pEGP9pg1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30362.png + small + + https://s.yimg.com/iu/api/res/1.2/LuTNb3HJYss4pEGP9pg1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30362.png + 0 + O + + RB + + 1 + 1 + + 100.8 + 10.9 + 3.5 + 0.66 + + + week + 1 + 87 + 0 + + + + 380.p.28429 + 28429 + + Devin Funchess + Devin + Funchess + Devin + Funchess + + nfl.p.28429 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/6sbfX5xXtjrdm2_vs8irNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28429.png + small + + https://s.yimg.com/iu/api/res/1.2/6sbfX5xXtjrdm2_vs8irNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28429.png + 0 + O + + WR + + + 88.1 + 9.6 + 3.1 + 1.00 + + + week + 1 + 93 + 0 + + + + 380.p.29255 + 29255 + + Will Fuller V + Will + Fuller V + Will + Fuller V + + Q + Questionable + nfl.p.29255 + nfl.t.34 + Houston Texans + Hou + + 10 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/Orbt3ffkhT2UYqZvBv7yHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29255.png + small + + https://s.yimg.com/iu/api/res/1.2/Orbt3ffkhT2UYqZvBv7yHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29255.png + 0 + O + + WR + + 1 + + 96.9 + 10.5 + 2.5 + 0.99 + + + week + 1 + 90 + 0 + + + + 380.p.31013 + 31013 + + Kerryon Johnson + Kerryon + Johnson + Kerryon + Johnson + + nfl.p.31013 + nfl.t.8 + Detroit Lions + Det + + 6 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/6ef5LP.I7uNo0TPFk43cXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31013.png + small + + https://s.yimg.com/iu/api/res/1.2/6ef5LP.I7uNo0TPFk43cXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31013.png + 0 + O + + RB + + 1 + + 99.9 + 10.8 + 2.4 + 0.84 + + + week + 1 + 85 + 0 + + + + 380.p.27532 + 27532 + + Sammy Watkins + Sammy + Watkins + Sammy + Watkins + + nfl.p.27532 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/ivubI7j.Qh_trMyVWZe03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27532.png + small + + https://s.yimg.com/iu/api/res/1.2/ivubI7j.Qh_trMyVWZe03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27532.png + 0 + O + + WR + + 1 + + 94.7 + 10.2 + 2.9 + 0.99 + + + week + 1 + 91 + 0 + + + + 380.p.28461 + 28461 + + Tevin Coleman + Tevin + Coleman + Tevin + Coleman + + nfl.p.28461 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/ovDweK4b1hvJitxLj7DN9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28461.png + small + + https://s.yimg.com/iu/api/res/1.2/ovDweK4b1hvJitxLj7DN9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28461.png + 0 + O + + RB + + 1 + + 95.6 + 10.3 + 3.6 + 1.00 + + + week + 1 + 90 + 0 + + + + 380.p.30123 + 30123 + + Patrick Mahomes + Patrick + Mahomes + Patrick + Mahomes + + nfl.p.30123 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 15 + QB + + https://s.yimg.com/iu/api/res/1.2/UnyIrSTTy4_UZ0LpRTGGAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30123.png + small + + https://s.yimg.com/iu/api/res/1.2/UnyIrSTTy4_UZ0LpRTGGAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30123.png + 0 + O + + QB + + 1 + + 110.2 + 11.8 + 1.9 + 0.98 + + + week + 1 + 88 + 0 + + + + 380.p.30247 + 30247 + + Jamaal Williams + Jamaal + Williams + Jamaal + Williams + + nfl.p.30247 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/1r1ONFHOZ7tv5zI5yaERtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30247.png + small + + https://s.yimg.com/iu/api/res/1.2/1r1ONFHOZ7tv5zI5yaERtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30247.png + 0 + O + + RB + + 1 + + 109.3 + 11.7 + 3.3 + 0.69 + + + week + 1 + 89 + 0 + + + + 380.p.8780 + 8780 + + Matt Ryan + Matt + Ryan + Matt + Ryan + + nfl.p.8780 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/coF5q51jsTQgOGJ0a4zw6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8780.png + small + + https://s.yimg.com/iu/api/res/1.2/coF5q51jsTQgOGJ0a4zw6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8780.png + 0 + O + + QB + + 1 + + 105.8 + 11.4 + 1.8 + 0.99 + + + week + 1 + 91 + 0 + + + + 380.p.29236 + 29236 + + Carson Wentz + Carson + Wentz + Carson + Wentz + + Q + Questionable + nfl.p.29236 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 11 + QB + + https://s.yimg.com/iu/api/res/1.2/AeYytqY0uavg5ruI0QNN5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29236.png + small + + https://s.yimg.com/iu/api/res/1.2/AeYytqY0uavg5ruI0QNN5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29236.png + 0 + O + + QB + + 1 + 1 + + 69.5 + 7.6 + 5.1 + 1.00 + + + week + 1 + 96 + 0 + + + + 380.p.8982 + 8982 + + Pierre Garcon + Pierre + Garcon + Pierre + Garcon + + nfl.p.8982 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/ee68_ChnY6WMAFU.cO_jKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/8982.png + small + + https://s.yimg.com/iu/api/res/1.2/ee68_ChnY6WMAFU.cO_jKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/8982.png + 0 + O + + WR + + 1 + + 104.7 + 11.2 + 1.8 + 0.98 + + + week + 1 + 86 + 0 + + + + 380.p.28390 + 28390 + + Marcus Mariota + Marcus + Mariota + Marcus + Mariota + + nfl.p.28390 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/Mu1YjIlPcdNP3iG0bV6XbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28390.png + small + + https://s.yimg.com/iu/api/res/1.2/Mu1YjIlPcdNP3iG0bV6XbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28390.png + 0 + O + + QB + + 1 + + 118.3 + 12.6 + 1.4 + 0.89 + + + week + 1 + 74 + 0 + + + + 380.p.30142 + 30142 + + David Njoku + David + Njoku + David + Njoku + + nfl.p.30142 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/_gNsXEJ8GwlmpVtHVAM6qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30142.png + small + + https://s.yimg.com/iu/api/res/1.2/_gNsXEJ8GwlmpVtHVAM6qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30142.png + 0 + O + + TE + + 1 + + 104.0 + 11.2 + 1.8 + 0.96 + + + week + 1 + 91 + 0 + + + + 380.p.26708 + 26708 + + Jordan Reed + Jordan + Reed + Jordan + Reed + + Q + Questionable + nfl.p.26708 + nfl.t.28 + Washington Redskins + Was + + 4 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lzCNZyaLMfF3bEsbouurMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26708.png + small + + https://s.yimg.com/iu/api/res/1.2/lzCNZyaLMfF3bEsbouurMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26708.png + 0 + O + + TE + + 1 + + 102.8 + 11.0 + 2.4 + 1.00 + + + week + 1 + 93 + 0 + + + + 380.p.28014 + 28014 + + Isaiah Crowell + Isaiah + Crowell + Isaiah + Crowell + + Q + Questionable + nfl.p.28014 + nfl.t.20 + New York Jets + NYJ + + 11 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/VCIGdDIA1GUOi1urBU0j_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28014.png + small + + https://s.yimg.com/iu/api/res/1.2/VCIGdDIA1GUOi1urBU0j_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28014.png + 0 + O + + RB + + + 113.0 + 12.1 + 2.2 + 0.92 + + + week + 1 + 78 + 0 + + + + 380.p.25711 + 25711 + + Andrew Luck + Andrew + Luck + Andrew + Luck + + Q + Questionable + nfl.p.25711 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/4eu6wobfGQsFlAEIYsmW0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25711.png + small + + https://s.yimg.com/iu/api/res/1.2/4eu6wobfGQsFlAEIYsmW0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25711.png + 0 + O + + QB + + 1 + + 108.6 + 11.6 + 2.6 + 0.98 + + + week + 1 + 90 + 0 + + + + 380.p.29235 + 29235 + + Jared Goff + Jared + Goff + Jared + Goff + + nfl.p.29235 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 16 + QB + + https://s.yimg.com/iu/api/res/1.2/4XqYvRO__esyRDKT9tDlew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29235.png + small + + https://s.yimg.com/iu/api/res/1.2/4XqYvRO__esyRDKT9tDlew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29235.png + 0 + O + + QB + + + 106.4 + 11.4 + 1.8 + 0.97 + + + week + 1 + 86 + 0 + + + + 380.p.29560 + 29560 + + Peyton Barber + Peyton + Barber + Peyton + Barber + + nfl.p.29560 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/pix0536YvETYs6EXgksSMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29560.png + small + + https://s.yimg.com/iu/api/res/1.2/pix0536YvETYs6EXgksSMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29560.png + 0 + O + + RB + + + 114.5 + 12.3 + 2.9 + 0.50 + + + week + 1 + 78 + 0 + + + + 380.p.30259 + 30259 + + George Kittle + George + Kittle + George + Kittle + + Q + Questionable + nfl.p.30259 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/mALnZ42dZZVOkuAiuDXDBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30259.png + small + + https://s.yimg.com/iu/api/res/1.2/mALnZ42dZZVOkuAiuDXDBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30259.png + 0 + O + + TE + + 1 + + 119.6 + 12.8 + 1.4 + 0.98 + + + week + 1 + 79 + 0 + + + + 380.p.31001 + 31001 + + Sony Michel + Sony + Michel + Sony + Michel + + Q + Questionable + nfl.p.31001 + nfl.t.17 + New England Patriots + NE + + 11 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/TSCn0y2Ir4GGCeAzdgT3BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31001.png + small + + https://s.yimg.com/iu/api/res/1.2/TSCn0y2Ir4GGCeAzdgT3BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31001.png + 0 + O + + RB + + 1 + + 98.7 + 10.6 + 3.5 + 0.98 + + + week + 1 + 84 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27299 + 27299 + + Jack Doyle + Jack + Doyle + Jack + Doyle + + nfl.p.27299 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/41a29h_zb4ySzDv51QPXpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27299.png + small + + https://s.yimg.com/iu/api/res/1.2/41a29h_zb4ySzDv51QPXpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27299.png + 0 + O + + TE + + + 121.7 + 13.0 + 1.3 + 0.93 + + + week + 1 + 82 + 0 + + + + 380.p.7177 + 7177 + + Alex Smith + Alex + Smith + Alex + Smith + + nfl.p.7177 + nfl.t.28 + Washington Redskins + Was + + 4 + + 11 + QB + + https://s.yimg.com/iu/api/res/1.2/UglxfS.D76lSsfmPWANI9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7177.png + small + + https://s.yimg.com/iu/api/res/1.2/UglxfS.D76lSsfmPWANI9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7177.png + 0 + O + + QB + + + 127.6 + 13.6 + 1.2 + 0.68 + + + week + 1 + 64 + 0 + + + + 380.p.28465 + 28465 + + Duke Johnson Jr. + Duke + Johnson Jr. + Duke + Johnson Jr. + + nfl.p.28465 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/_SNldqJV95w66gzNvNAVbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28465.png + small + + https://s.yimg.com/iu/api/res/1.2/_SNldqJV95w66gzNvNAVbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28465.png + 0 + O + + RB + + + 124.0 + 13.3 + 1.4 + 0.61 + + + week + 1 + 69 + 0 + + + + 380.p.25755 + 25755 + + Alshon Jeffery + Alshon + Jeffery + Alshon + Jeffery + + O + Out + nfl.p.25755 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/.opDpnZ8H5ql4tnOyvuRnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25755.png + small + + https://s.yimg.com/iu/api/res/1.2/.opDpnZ8H5ql4tnOyvuRnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25755.png + 0 + O + + WR + + 1 + 1 + + 75.4 + 8.1 + 14.1 + 0.99 + + + week + 1 + 91 + 0 + + + + 380.p.26777 + 26777 + + Chris Thompson + Chris + Thompson + Chris + Thompson + + Q + Questionable + nfl.p.26777 + nfl.t.28 + Washington Redskins + Was + + 4 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/sB2yg8lvZ8jQ1qAqSpm4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26777.png + small + + https://s.yimg.com/iu/api/res/1.2/sB2yg8lvZ8jQ1qAqSpm4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26777.png + 0 + O + + RB + + 1 + + 115.1 + 12.3 + 2.3 + 0.72 + + + week + 1 + 77 + 0 + + + + 380.p.30132 + 30132 + + O.J. Howard + O.J. + Howard + O.J. + Howard + + nfl.p.30132 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/bffbxj0DEczf6aQDD5LHww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30132.png + small + + https://s.yimg.com/iu/api/res/1.2/bffbxj0DEczf6aQDD5LHww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30132.png + 0 + O + + TE + + 1 + + 124.8 + 13.3 + 1.2 + 0.93 + + + week + 1 + 73 + 0 + + + + 380.p.8813 + 8813 + + Jordy Nelson + Jordy + Nelson + Jordy + Nelson + + nfl.p.8813 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/zMfM_xE9blYBtn4gEnuGbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8813.png + small + + https://s.yimg.com/iu/api/res/1.2/zMfM_xE9blYBtn4gEnuGbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8813.png + 0 + O + + WR + + 1 + + 107.4 + 11.5 + 1.9 + 0.96 + + + week + 1 + 88 + 0 + + + + 380.p.100030 + 100030 + + Jacksonville + Jacksonville + + Jacksonville + + + nfl.p.100030 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + + DEF + + https://s.yimg.com/xe/ipt/50x50w.3.gif + small + + https://s.yimg.com/xe/ipt/50x50w.3.gif + 0 + DT + + DEF + + + 64.2 + 7.2 + 6.4 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.8261 + 8261 + + Adrian Peterson + Adrian + Peterson + Adrian + Peterson + + nfl.p.8261 + nfl.t.28 + Washington Redskins + Was + + 4 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/4nr3gWj1x1MA__zBdA7hYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/8261.png + small + + https://s.yimg.com/iu/api/res/1.2/4nr3gWj1x1MA__zBdA7hYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/8261.png + 0 + O + + RB + + + 106.9 + 11.4 + 4.0 + 0.41 + + + week + 1 + 84 + 0 + + + + 380.p.30232 + 30232 + + Tarik Cohen + Tarik + Cohen + Tarik + Cohen + + nfl.p.30232 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/5MFySd5xS5VNnt1tM5w42w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30232.png + small + + https://s.yimg.com/iu/api/res/1.2/5MFySd5xS5VNnt1tM5w42w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30232.png + 0 + O + + RB + + + 113.7 + 12.2 + 2.2 + 0.91 + + + week + 1 + 81 + 0 + + + + 380.p.29369 + 29369 + + Dak Prescott + Dak + Prescott + Dak + Prescott + + nfl.p.29369 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/DjGt5oReh_6c3E23BlfdCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29369.png + small + + https://s.yimg.com/iu/api/res/1.2/DjGt5oReh_6c3E23BlfdCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29369.png + 0 + O + + QB + + + 120.0 + 12.7 + 1.4 + 0.78 + + + week + 1 + 67 + 0 + + + + 380.p.30997 + 30997 + + Rashaad Penny + Rashaad + Penny + Rashaad + Penny + + Q + Questionable + nfl.p.30997 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/MPhFYae2WetO7k8.6Ugcag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30997.png + small + + https://s.yimg.com/iu/api/res/1.2/MPhFYae2WetO7k8.6Ugcag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30997.png + 0 + O + + RB + + 1 + 1 + + 89.8 + 9.7 + 5.5 + 0.85 + + + week + 1 + 76 + 0 + + + + 380.p.100016 + 100016 + + Minnesota + Minnesota + + Minnesota + + + nfl.p.100016 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + + DEF + + https://s.yimg.com/xe/ipt/50x50w.6.gif + small + + https://s.yimg.com/xe/ipt/50x50w.6.gif + 0 + DT + + DEF + + + 73.7 + 8.2 + 3.2 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.100014 + 100014 + + Los Angeles + Los Angeles + + Los Angeles + + + nfl.p.100014 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/stl.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/stl.gif + 0 + DT + + DEF + + + 75.2 + 8.3 + 3.3 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.28408 + 28408 + + Nelson Agholor + Nelson + Agholor + Nelson + Agholor + + nfl.p.28408 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/dTRTrsE83Y7miPtMN3IhLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28408.png + small + + https://s.yimg.com/iu/api/res/1.2/dTRTrsE83Y7miPtMN3IhLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28408.png + 0 + O + + WR + + + 111.3 + 11.9 + 1.9 + 0.94 + + + week + 1 + 87 + 0 + + + + 380.p.30295 + 30295 + + Aaron Jones + Aaron + Jones + Aaron + Jones + + SUSP + Suspended + nfl.p.30295 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/T1hXEPELtOZ.QBxPnmGmZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30295.png + small + + https://s.yimg.com/iu/api/res/1.2/T1hXEPELtOZ.QBxPnmGmZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30295.png + 0 + O + + RB + + + 114.6 + 12.3 + 2.2 + 0.69 + + + week + 1 + 63 + 0 + + + + 380.p.29274 + 29274 + + Sterling Shepard + Sterling + Shepard + Sterling + Shepard + + nfl.p.29274 + nfl.t.19 + New York Giants + NYG + + 9 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/BxiV3.IOcfRr8KjwpvTitw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29274.png + small + + https://s.yimg.com/iu/api/res/1.2/BxiV3.IOcfRr8KjwpvTitw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29274.png + 0 + O + + WR + + + 119.3 + 12.7 + 1.4 + 0.87 + + + week + 1 + 81 + 0 + + + + 380.p.27531 + 27531 + + Blake Bortles + Blake + Bortles + Blake + Bortles + + nfl.p.27531 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/CLyHEw1SFR4alskKnV3S2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27531.png + small + + https://s.yimg.com/iu/api/res/1.2/CLyHEw1SFR4alskKnV3S2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27531.png + 0 + O + + QB + + 1 + + 133.7 + 14.2 + 1.0 + 0.23 + + + week + 1 + 34 + 0 + + + + 380.p.26767 + 26767 + + Kenny Stills + Kenny + Stills + Kenny + Stills + + nfl.p.26767 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/Y0RE4fVkXiL4RbMuJInSAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26767.png + small + + https://s.yimg.com/iu/api/res/1.2/Y0RE4fVkXiL4RbMuJInSAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26767.png + 0 + O + + WR + + 1 + + 129.5 + 13.8 + 1.3 + 0.45 + + + week + 1 + 69 + 0 + + + + 380.p.100024 + 100024 + + Los Angeles + Los Angeles + + Los Angeles + + + nfl.p.100024 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sdg3.jpg + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sdg3.jpg + 0 + DT + + DEF + + + 90.7 + 9.8 + 1.5 + 1.00 + + + week + 1 + 95 + 0 + + + + 380.p.100021 + 100021 + + Philadelphia + Philadelphia + + Philadelphia + + + nfl.p.100021 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/phi.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/phi.gif + 0 + DT + + DEF + + + 77.0 + 8.4 + 3.0 + 1.00 + + + week + 1 + 99 + 0 + + + + 380.p.26644 + 26644 + + Tyler Eifert + Tyler + Eifert + Tyler + Eifert + + nfl.p.26644 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/0FuGdzmO79n2Msec33SjPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26644.png + small + + https://s.yimg.com/iu/api/res/1.2/0FuGdzmO79n2Msec33SjPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26644.png + 0 + O + + TE + + 1 + + 127.9 + 13.7 + 1.3 + 0.58 + + + week + 1 + 59 + 0 + + + + 380.p.100034 + 100034 + + Houston + Houston + + Houston + + + nfl.p.100034 + nfl.t.34 + Houston Texans + Hou + + 10 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/hou.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/hou.gif + 0 + DT + + DEF + + + 95.9 + 10.3 + 1.3 + 1.00 + + + week + 1 + 91 + 0 + + + + 380.p.30494 + 30494 + + Ricky Seals-Jones + Ricky + Seals-Jones + Ricky + Seals-Jones + + nfl.p.30494 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/bND.02fQBrB8Rux7XKC2hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30494.png + small + + https://s.yimg.com/iu/api/res/1.2/bND.02fQBrB8Rux7XKC2hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30494.png + 0 + O + + TE + + + 135.3 + 14.4 + 1.0 + 0.21 + + + week + 1 + 29 + 0 + + + + 380.p.27564 + 27564 + + Derek Carr + Derek + Carr + Derek + Carr + + nfl.p.27564 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/RF7iK0ySPE8Wv13FgcsUXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27564.png + small + + https://s.yimg.com/iu/api/res/1.2/RF7iK0ySPE8Wv13FgcsUXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27564.png + 0 + O + + QB + + + 122.3 + 12.9 + 1.4 + 0.35 + + + week + 1 + 55 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26483 + 26483 + + Case Keenum + Case + Keenum + Case + Keenum + + nfl.p.26483 + nfl.t.7 + Denver Broncos + Den + + 10 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/BUXP5k3yZBJAfBPzyRz_aA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26483.png + small + + https://s.yimg.com/iu/api/res/1.2/BUXP5k3yZBJAfBPzyRz_aA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26483.png + 0 + O + + QB + + + 123.3 + 13.0 + 1.6 + 0.07 + + + week + 1 + 25 + 0 + + + + 380.p.9353 + 9353 + + Jared Cook + Jared + Cook + Jared + Cook + + nfl.p.9353 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/VZwIb4N5ZqAb4YmDQDGpOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/9353.png + small + + https://s.yimg.com/iu/api/res/1.2/VZwIb4N5ZqAb4YmDQDGpOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/9353.png + 0 + O + + TE + + + 131.8 + 14.0 + 1.0 + 0.53 + + + week + 1 + 49 + 0 + + + + 380.p.26878 + 26878 + + C.J. Anderson + C.J. + Anderson + C.J. + Anderson + + nfl.p.26878 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/zxHaXosadYBGp82TLAXRag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26878.png + small + + https://s.yimg.com/iu/api/res/1.2/zxHaXosadYBGp82TLAXRag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26878.png + 0 + O + + RB + + + 116.9 + 12.5 + 1.2 + 0.70 + + + week + 1 + 53 + 0 + + + + 380.p.6760 + 6760 + + Eli Manning + Eli + Manning + Eli + Manning + + nfl.p.6760 + nfl.t.19 + New York Giants + NYG + + 9 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/lOklWrqYBjnaZlskIr687Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/6760.png + small + + https://s.yimg.com/iu/api/res/1.2/lOklWrqYBjnaZlskIr687Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/6760.png + 0 + O + + QB + + + 122.4 + 12.8 + 1.4 + 0.09 + + + week + 1 + 28 + 0 + + + + 380.p.9496 + 9496 + + Julian Edelman + Julian + Edelman + Julian + Edelman + + SUSP + Suspended + nfl.p.9496 + nfl.t.17 + New England Patriots + NE + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/ly.hX8jWwo2V33RokR2F2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9496.png + small + + https://s.yimg.com/iu/api/res/1.2/ly.hX8jWwo2V33RokR2F2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9496.png + 0 + O + + WR + + + 109.0 + 11.7 + 4.2 + 0.83 + + + week + 1 + 85 + 0 + + + + 380.p.28267 + 28267 + + Cameron Brate + Cameron + Brate + Cameron + Brate + + nfl.p.28267 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/l2TZ58LJQYC4PjfdJDibyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28267.png + small + + https://s.yimg.com/iu/api/res/1.2/l2TZ58LJQYC4PjfdJDibyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28267.png + 0 + O + + TE + + + 132.4 + 14.1 + 1.0 + 0.64 + + + week + 1 + 48 + 0 + + + + 380.p.24822 + 24822 + + Andy Dalton + Andy + Dalton + Andy + Dalton + + nfl.p.24822 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/sBCjEOpb3HMcxuR6Oqezpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24822.png + small + + https://s.yimg.com/iu/api/res/1.2/sBCjEOpb3HMcxuR6Oqezpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24822.png + 0 + O + + QB + + 1 + + 123.9 + 13.2 + 1.8 + 0.03 + + + week + 1 + 25 + 0 + + + + 380.p.7867 + 7867 + + Stephen Gostkowski + Stephen + Gostkowski + Stephen + Gostkowski + + nfl.p.7867 + nfl.t.17 + New England Patriots + NE + + 11 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/Q6H82tU1YcRPsEDiHovfjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7867.png + small + + https://s.yimg.com/iu/api/res/1.2/Q6H82tU1YcRPsEDiHovfjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7867.png + 0 + K + + K + + + 79.6 + 8.7 + 2.6 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.25881 + 25881 + + Greg Zuerlein + Greg + Zuerlein + Greg + Zuerlein + + nfl.p.25881 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/24NsaQu4derknKAx3py1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25881.png + small + + https://s.yimg.com/iu/api/res/1.2/24NsaQu4derknKAx3py1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25881.png + 0 + K + + K + + + 82.1 + 8.9 + 3.1 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.31008 + 31008 + + Ronald Jones II + Ronald + Jones II + Ronald + Jones II + + nfl.p.31008 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/5sJNrjdFkeB2_jGH8BrUXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31008.png + small + + https://s.yimg.com/iu/api/res/1.2/5sJNrjdFkeB2_jGH8BrUXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31008.png + 0 + O + + RB + + 1 + 1 + + 90.4 + 9.8 + 4.3 + 0.92 + + + week + 1 + 71 + 0 + + + + 380.p.30209 + 30209 + + Kenny Golladay + Kenny + Golladay + Kenny + Golladay + + nfl.p.30209 + nfl.t.8 + Detroit Lions + Det + + 6 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/jhLMUbmqVjiQk9JALAGLHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30209.png + small + + https://s.yimg.com/iu/api/res/1.2/jhLMUbmqVjiQk9JALAGLHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30209.png + 0 + O + + WR + + + 131.2 + 13.9 + 1.3 + 0.24 + + + week + 1 + 55 + 0 + + + + 380.p.100007 + 100007 + + Denver + Denver + + Denver + + + nfl.p.100007 + nfl.t.7 + Denver Broncos + Den + + 10 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/den.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/den.gif + 0 + DT + + DEF + + + 92.7 + 10.0 + 1.5 + 1.00 + + + week + 1 + 94 + 0 + + + + 380.p.26534 + 26534 + + Justin Tucker + Justin + Tucker + Justin + Tucker + + nfl.p.26534 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/h52EDMeyrKH.Pq1Qmiww1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26534.png + small + + https://s.yimg.com/iu/api/res/1.2/h52EDMeyrKH.Pq1Qmiww1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26534.png + 0 + K + + K + + + 87.9 + 9.5 + 2.2 + 1.00 + + + week + 1 + 100 + 0 + + + + 380.p.100018 + 100018 + + New Orleans + New Orleans + + New Orleans + + + nfl.p.100018 + nfl.t.18 + New Orleans Saints + NO + + 6 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nor.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nor.gif + 0 + DT + + DEF + + + 124.4 + 13.3 + 1.1 + 0.91 + + + week + 1 + 86 + 0 + + + + 380.p.24961 + 24961 + + Charles Clay + Charles + Clay + Charles + Clay + + nfl.p.24961 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/Y1g0DSGq_5EWFtXNDCONXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24961.png + small + + https://s.yimg.com/iu/api/res/1.2/Y1g0DSGq_5EWFtXNDCONXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24961.png + 0 + O + + TE + + 1 + + 135.4 + 14.4 + 1.0 + 0.37 + + + week + 1 + 33 + 0 + + + + 380.p.30115 + 30115 + + Mitchell Trubisky + Mitchell + Trubisky + Mitchell + Trubisky + + nfl.p.30115 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/U6L3PP_USuoJFsCi9THiBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30115.png + small + + https://s.yimg.com/iu/api/res/1.2/U6L3PP_USuoJFsCi9THiBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30115.png + 0 + O + + QB + + + 123.8 + 13.1 + 1.3 + 0.05 + + + week + 1 + 19 + 0 + + + + 380.p.27566 + 27566 + + Austin Seferian-Jenkins + Austin + Seferian-Jenkins + Austin + Seferian-Jenkins + + nfl.p.27566 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/jL3Pzua38ywIAELlsyEH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27566.png + small + + https://s.yimg.com/iu/api/res/1.2/jL3Pzua38ywIAELlsyEH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27566.png + 0 + O + + TE + + 1 + + 133.0 + 14.1 + 1.0 + 0.28 + + + week + 1 + 32 + 0 + + + + 380.p.30120 + 30120 + + Mike Williams + Mike + Williams + Mike + Williams + + nfl.p.30120 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/VMXJS63UyLPpIBYbGewZfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/30120.png + small + + https://s.yimg.com/iu/api/res/1.2/VMXJS63UyLPpIBYbGewZfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/30120.png + 0 + O + + WR + + + 127.5 + 13.6 + 1.3 + 0.43 + + + week + 1 + 63 + 0 + + + + 380.p.30396 + 30396 + + Keelan Cole + Keelan + Cole + Keelan + Cole + + nfl.p.30396 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/YFnDQszcrskZUThcqZBfhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30396.png + small + + https://s.yimg.com/iu/api/res/1.2/YFnDQszcrskZUThcqZBfhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30396.png + 0 + O + + WR + + 1 + + 128.2 + 13.8 + 1.7 + 0.12 + + + week + 1 + 52 + 0 + + + + 380.p.24913 + 24913 + + Bilal Powell + Bilal + Powell + Bilal + Powell + + nfl.p.24913 + nfl.t.20 + New York Jets + NYJ + + 11 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/OUdgDLdiF4ziJqxgboj71g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24913.png + small + + https://s.yimg.com/iu/api/res/1.2/OUdgDLdiF4ziJqxgboj71g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24913.png + 0 + O + + RB + + + 124.9 + 13.5 + 1.7 + 0.36 + + + week + 1 + 57 + 0 + + + + 380.p.100033 + 100033 + + Baltimore + Baltimore + + Baltimore + + + nfl.p.100033 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/bal_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/bal_2.gif + 0 + DT + + DEF + + + 117.8 + 12.6 + 1.3 + 0.98 + + + week + 1 + 90 + 0 + + + + 380.p.27538 + 27538 + + Eric Ebron + Eric + Ebron + Eric + Ebron + + nfl.p.27538 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/yWT2IW_S4aXHXnMZy5OIYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27538.png + small + + https://s.yimg.com/iu/api/res/1.2/yWT2IW_S4aXHXnMZy5OIYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27538.png + 0 + O + + TE + + 1 + + 130.2 + 13.9 + 1.1 + 0.30 + + + week + 1 + 35 + 0 + + + + 380.p.25937 + 25937 + + Rishard Matthews + Rishard + Matthews + Rishard + Matthews + + nfl.p.25937 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/d6EnYIkl2OHiWGvFAu2Qww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25937.png + small + + https://s.yimg.com/iu/api/res/1.2/d6EnYIkl2OHiWGvFAu2Qww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25937.png + 0 + O + + WR + + 1 + + 133.5 + 14.1 + 1.2 + 0.10 + + + week + 1 + 46 + 0 + + + + 380.p.6791 + 6791 + + Benjamin Watson + Benjamin + Watson + Benjamin + Watson + + nfl.p.6791 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/rjlCNl0lO3rxyLpXRnevIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/6791.png + small + + https://s.yimg.com/iu/api/res/1.2/rjlCNl0lO3rxyLpXRnevIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/6791.png + 0 + O + + TE + + + 124.7 + 13.1 + 1.2 + 0.34 + + + week + 1 + 40 + 0 + + + + 380.p.28457 + 28457 + + Tyler Lockett + Tyler + Lockett + Tyler + Lockett + + Q + Questionable + nfl.p.28457 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/zSIXGouEisBQ4yLMW4ryoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28457.png + small + + https://s.yimg.com/iu/api/res/1.2/zSIXGouEisBQ4yLMW4ryoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28457.png + 0 + O + + WR + + 1 + + 128.0 + 13.6 + 1.3 + 0.11 + + + week + 1 + 49 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.6243 + 6243 + + Matt Bryant + Matt + Bryant + Matt + Bryant + + nfl.p.6243 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/uce9jN3A6Ia0iDKuVQYQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6243.png + small + + https://s.yimg.com/iu/api/res/1.2/uce9jN3A6Ia0iDKuVQYQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6243.png + 0 + K + + K + + 1 + + 99.3 + 10.7 + 1.3 + 1.00 + + + week + 1 + 96 + 0 + + + + 380.p.30552 + 30552 + + Matt Breida + Matt + Breida + Matt + Breida + + nfl.p.30552 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/M7okLbxnAHW3T1tAxwgLRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30552.png + small + + https://s.yimg.com/iu/api/res/1.2/M7okLbxnAHW3T1tAxwgLRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30552.png + 0 + O + + RB + + 1 + + 122.8 + 13.5 + 2.3 + 0.07 + + + week + 1 + 50 + 0 + + + + 380.p.27556 + 27556 + + Kelvin Benjamin + Kelvin + Benjamin + Kelvin + Benjamin + + nfl.p.27556 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/OaHSO4tyII786rIEb5aMzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27556.png + small + + https://s.yimg.com/iu/api/res/1.2/OaHSO4tyII786rIEb5aMzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27556.png + 0 + O + + WR + + 1 + + 125.8 + 13.4 + 1.5 + 0.47 + + + week + 1 + 63 + 0 + + + + 380.p.29754 + 29754 + + Wil Lutz + Wil + Lutz + Wil + Lutz + + nfl.p.29754 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/swUZv.ipQOoeV9joqxaq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29754.png + small + + https://s.yimg.com/iu/api/res/1.2/swUZv.ipQOoeV9joqxaq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29754.png + 0 + K + + K + + + 109.9 + 11.7 + 1.3 + 0.99 + + + week + 1 + 95 + 0 + + + + 380.p.26804 + 26804 + + Latavius Murray + Latavius + Murray + Latavius + Murray + + nfl.p.26804 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/Gp4J4YaIPHTAl0SrPzlehA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26804.png + small + + https://s.yimg.com/iu/api/res/1.2/Gp4J4YaIPHTAl0SrPzlehA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26804.png + 0 + O + + RB + + + 123.2 + 13.1 + 1.6 + 0.24 + + + week + 1 + 55 + 0 + + + + 380.p.29315 + 29315 + + Austin Hooper + Austin + Hooper + Austin + Hooper + + nfl.p.29315 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/IEkLdCzgFs1OPM0y4ST9MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29315.png + small + + https://s.yimg.com/iu/api/res/1.2/IEkLdCzgFs1OPM0y4ST9MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29315.png + 0 + O + + TE + + 1 + + 128.8 + 13.6 + 1.1 + 0.14 + + + week + 1 + 21 + 0 + + + + 380.p.28389 + 28389 + + Jameis Winston + Jameis + Winston + Jameis + Winston + + SUSP + Suspended + nfl.p.28389 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/_yL1UaLXLCRI7BWXMSfWNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28389.png + small + + https://s.yimg.com/iu/api/res/1.2/_yL1UaLXLCRI7BWXMSfWNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28389.png + 0 + O + + QB + + 1 + + 128.8 + 13.8 + 1.9 + 0.22 + + + week + 1 + 15 + 0 + + + + 380.p.24967 + 24967 + + Tyrod Taylor + Tyrod + Taylor + Tyrod + Taylor + + Q + Questionable + nfl.p.24967 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/GmeIMgcT_Am2miv0KXmXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24967.png + small + + https://s.yimg.com/iu/api/res/1.2/GmeIMgcT_Am2miv0KXmXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24967.png + 0 + O + + QB + + 1 + + 119.9 + 12.9 + 2.0 + 0.03 + + + week + 1 + 12 + 0 + + + + 380.p.100023 + 100023 + + Pittsburgh + Pittsburgh + + Pittsburgh + + + nfl.p.100023 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/pit.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/pit.gif + 0 + DT + + DEF + + + 123.3 + 13.2 + 1.2 + 0.94 + + + week + 1 + 80 + 0 + + + + 380.p.30707 + 30707 + + Corey Clement + Corey + Clement + Corey + Clement + + nfl.p.30707 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/iBWjHdI1KdxwEDDiBqzF8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30707.png + small + + https://s.yimg.com/iu/api/res/1.2/iBWjHdI1KdxwEDDiBqzF8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30707.png + 0 + O + + RB + + + 124.4 + 13.7 + 1.4 + 0.06 + + + week + 1 + 26 + 0 + + + + 380.p.100003 + 100003 + + Chicago + Chicago + + Chicago + + + nfl.p.100003 + nfl.t.3 + Chicago Bears + Chi + + 5 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/chi.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/chi.gif + 0 + DT + + DEF + + + 136.3 + 14.4 + 1.1 + 0.48 + + + week + 1 + 48 + 0 + + + + 380.p.30256 + 30256 + + Marlon Mack + Marlon + Mack + Marlon + Mack + + Q + Questionable + nfl.p.30256 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/97UXNpctEzWEBwpaNj78Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30256.png + small + + https://s.yimg.com/iu/api/res/1.2/97UXNpctEzWEBwpaNj78Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30256.png + 0 + O + + RB + + 1 + + 111.2 + 12.0 + 2.7 + 0.50 + + + week + 1 + 56 + 0 + + + + 380.p.100017 + 100017 + + New England + New England + + New England + + + nfl.p.100017 + nfl.t.17 + New England Patriots + NE + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nwe.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nwe.gif + 0 + DT + + DEF + + + 129.8 + 13.8 + 1.1 + 0.90 + + + week + 1 + 72 + 0 + + + + 380.p.30266 + 30266 + + Jake Elliott + Jake + Elliott + Jake + Elliott + + nfl.p.30266 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/GVxwPPgCYcnCvwNM4_N4Ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30266.png + small + + https://s.yimg.com/iu/api/res/1.2/GVxwPPgCYcnCvwNM4_N4Ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30266.png + 0 + K + + K + + + 112.2 + 11.9 + 1.3 + 0.98 + + + week + 1 + 91 + 0 + + + + 380.p.31051 + 31051 + + Michael Gallup + Michael + Gallup + Michael + Gallup + + nfl.p.31051 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/7_jXOt39kp.uBCpGizIdFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31051.png + small + + https://s.yimg.com/iu/api/res/1.2/7_jXOt39kp.uBCpGizIdFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31051.png + 0 + O + + WR + + 1 + + 126.3 + 13.6 + 1.6 + 0.09 + + + week + 1 + 34 + 0 + + + + 380.p.24851 + 24851 + + Randall Cobb + Randall + Cobb + Randall + Cobb + + nfl.p.24851 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/ii90s0RqoVHmhYb9vrtMNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24851.png + small + + https://s.yimg.com/iu/api/res/1.2/ii90s0RqoVHmhYb9vrtMNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24851.png + 0 + O + + WR + + 1 + + 123.0 + 13.0 + 1.6 + 0.46 + + + week + 1 + 66 + 0 + + + + 380.p.25718 + 25718 + + Ryan Tannehill + Ryan + Tannehill + Ryan + Tannehill + + nfl.p.25718 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/78RYJzWY1HHVvBefsgoCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25718.png + small + + https://s.yimg.com/iu/api/res/1.2/78RYJzWY1HHVvBefsgoCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25718.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.100001 + 100001 + + Atlanta + Atlanta + + Atlanta + + + nfl.p.100001 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/atl_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/atl_2.gif + 0 + DT + + DEF + + + 142.4 + 15.0 + 1.0 + 0.47 + + + week + 1 + 35 + 0 + + + + 380.p.30994 + 30994 + + D.J. Moore + D.J. + Moore + D.J. + Moore + + nfl.p.30994 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/OG__AINCx5x099VgZUezag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30994.png + small + + https://s.yimg.com/iu/api/res/1.2/OG__AINCx5x099VgZUezag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30994.png + 0 + O + + WR + + + 127.9 + 13.6 + 1.5 + 0.24 + + + week + 1 + 47 + 0 + + + + 380.p.29256 + 29256 + + Josh Doctson + Josh + Doctson + Josh + Doctson + + nfl.p.29256 + nfl.t.28 + Washington Redskins + Was + + 4 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/hbQ95b6oS9Cjni0LEJOHgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29256.png + small + + https://s.yimg.com/iu/api/res/1.2/hbQ95b6oS9Cjni0LEJOHgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29256.png + 0 + O + + WR + + + 130.9 + 13.9 + 1.3 + 0.16 + + + week + 1 + 44 + 0 + + + + 380.p.27619 + 27619 + + John Brown + John + Brown + John + Brown + + nfl.p.27619 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/OJQBgzjXrevUMDpmpPSRNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27619.png + small + + https://s.yimg.com/iu/api/res/1.2/OJQBgzjXrevUMDpmpPSRNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27619.png + 0 + O + + WR + + + 128.4 + 14.1 + 1.1 + 0.02 + + + week + 1 + 19 + 0 + + + + 380.p.30197 + 30197 + + Chris Godwin + Chris + Godwin + Chris + Godwin + + nfl.p.30197 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/aFJFMx8KyU0te_0amUkcJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30197.png + small + + https://s.yimg.com/iu/api/res/1.2/aFJFMx8KyU0te_0amUkcJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30197.png + 0 + O + + WR + + 1 + 1 + + 130.3 + 14.2 + 1.3 + 0.05 + + + week + 1 + 31 + 0 + + + + 380.p.26678 + 26678 + + Vance McDonald + Vance + McDonald + Vance + McDonald + + Q + Questionable + nfl.p.26678 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/MSbkJDHLBlIHAm5G1tE_FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26678.png + small + + https://s.yimg.com/iu/api/res/1.2/MSbkJDHLBlIHAm5G1tE_FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26678.png + 0 + O + + TE + + 1 + 1 + + 127.3 + 13.3 + 1.1 + 0.11 + + + week + 1 + 17 + 0 + + + + 380.p.8565 + 8565 + + Matt Prater + Matt + Prater + Matt + Prater + + nfl.p.8565 + nfl.t.8 + Detroit Lions + Det + + 6 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/GFdwIxp81DIP3WadC9PX.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8565.png + small + + https://s.yimg.com/iu/api/res/1.2/GFdwIxp81DIP3WadC9PX.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8565.png + 0 + K + + K + + + 121.0 + 12.8 + 1.1 + 0.91 + + + week + 1 + 82 + 0 + + + + 380.p.28691 + 28691 + + Tyrell Williams + Tyrell + Williams + Tyrell + Williams + + Q + Questionable + nfl.p.28691 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/JMyytcHlsucBnHT.MaOcyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28691.png + small + + https://s.yimg.com/iu/api/res/1.2/JMyytcHlsucBnHT.MaOcyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28691.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 13 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.100029 + 100029 + + Carolina + Carolina + + Carolina + + + nfl.p.100029 + nfl.t.29 + Carolina Panthers + Car + + 4 + + + DEF + + https://s.yimg.com/cv/ip/ap/default/120210/50x50w_car_1.gif + small + + https://s.yimg.com/cv/ip/ap/default/120210/50x50w_car_1.gif + 0 + DT + + DEF + + + 135.9 + 14.5 + 1.0 + 0.76 + + + week + 1 + 53 + 0 + + + + 380.p.31139 + 31139 + + Jordan Wilkins + Jordan + Wilkins + Jordan + Wilkins + + nfl.p.31139 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/CiaVVKNaYfl0JBsHCp0IqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31139.png + small + + https://s.yimg.com/iu/api/res/1.2/CiaVVKNaYfl0JBsHCp0IqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31139.png + 0 + O + + RB + + 1 + + 129.5 + 14.6 + 1.4 + 0.04 + + + week + 1 + 31 + 0 + + + + 380.p.28697 + 28697 + + Cameron Meredith + Cameron + Meredith + Cameron + Meredith + + nfl.p.28697 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/wXS4R9z2V6m25Zs47vgJXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/28697.png + small + + https://s.yimg.com/iu/api/res/1.2/wXS4R9z2V6m25Zs47vgJXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/28697.png + 0 + O + + WR + + 1 + + 130.5 + 13.8 + 1.3 + 0.09 + + + week + 1 + 30 + 0 + + + + 380.p.31012 + 31012 + + Mike Gesicki + Mike + Gesicki + Mike + Gesicki + + nfl.p.31012 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/LruBdtdWWzvGdXx.rAjyDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31012.png + small + + https://s.yimg.com/iu/api/res/1.2/LruBdtdWWzvGdXx.rAjyDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31012.png + 0 + O + + TE + + 1 + + 127.3 + 13.4 + 1.2 + 0.04 + + + week + 1 + 12 + 0 + + + + 380.p.31021 + 31021 + + Anthony Miller + Anthony + Miller + Anthony + Miller + + nfl.p.31021 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/p3fSCXpFs2MQdjonoJ1erQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31021.png + small + + https://s.yimg.com/iu/api/res/1.2/p3fSCXpFs2MQdjonoJ1erQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31021.png + 0 + O + + WR + + + 127.7 + 14.0 + 1.6 + 0.06 + + + week + 1 + 23 + 0 + + + + 380.p.100009 + 100009 + + Green Bay + Green Bay + + Green Bay + + + nfl.p.100009 + nfl.t.9 + Green Bay Packers + GB + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/gnb.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/gnb.gif + 0 + DT + + DEF + + + 142.8 + 15.0 + 1.0 + 0.37 + + + week + 1 + 29 + 0 + + + + 380.p.9348 + 9348 + + Mike Wallace + Mike + Wallace + Mike + Wallace + + nfl.p.9348 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/XXwLi1jMUni2UxqxSvqG_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9348.png + small + + https://s.yimg.com/iu/api/res/1.2/XXwLi1jMUni2UxqxSvqG_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9348.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.27658 + 27658 + + James White + James + White + James + White + + nfl.p.27658 + nfl.t.17 + New England Patriots + NE + + 11 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/J7opn7TL5WiIcnnbkkX56Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27658.png + small + + https://s.yimg.com/iu/api/res/1.2/J7opn7TL5WiIcnnbkkX56Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27658.png + 0 + O + + RB + + + 121.5 + 13.1 + 1.6 + 0.13 + + + week + 1 + 48 + 0 + + + + 380.p.30223 + 30223 + + Dede Westbrook + Dede + Westbrook + Dede + Westbrook + + nfl.p.30223 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/iBPDVkDKvqX8VvPTC6r1nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30223.png + small + + https://s.yimg.com/iu/api/res/1.2/iBPDVkDKvqX8VvPTC6r1nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30223.png + 0 + O + + WR + + 1 + + 128.3 + 14.3 + 1.3 + 0.03 + + + week + 1 + 18 + 0 + + + + 380.p.31005 + 31005 + + Nick Chubb + Nick + Chubb + Nick + Chubb + + nfl.p.31005 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/EjRTp3lMK1ZuKhwTqRvUSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31005.png + small + + https://s.yimg.com/iu/api/res/1.2/EjRTp3lMK1ZuKhwTqRvUSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31005.png + 0 + O + + RB + + + 121.4 + 13.0 + 1.9 + 0.41 + + + week + 1 + 56 + 0 + + + + 380.p.28188 + 28188 + + Chris Boswell + Chris + Boswell + Chris + Boswell + + nfl.p.28188 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/6LIV2GxEAGbcE.yoh2a5og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28188.png + small + + https://s.yimg.com/iu/api/res/1.2/6LIV2GxEAGbcE.yoh2a5og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28188.png + 0 + K + + K + + + 127.8 + 13.4 + 1.1 + 0.75 + + + week + 1 + 81 + 0 + + + + 380.p.26660 + 26660 + + Giovani Bernard + Giovani + Bernard + Giovani + Bernard + + nfl.p.26660 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/iGLxlIewg42mTSyTPlwkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26660.png + small + + https://s.yimg.com/iu/api/res/1.2/iGLxlIewg42mTSyTPlwkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26660.png + 0 + O + + RB + + 1 + + 127.0 + 13.9 + 1.1 + 0.05 + + + week + 1 + 31 + 0 + + + + 380.p.30346 + 30346 + + Harrison Butker + Harrison + Butker + Harrison + Butker + + nfl.p.30346 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/Ml5GP2gnCOpcuLkUyWtouA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30346.png + small + + https://s.yimg.com/iu/api/res/1.2/Ml5GP2gnCOpcuLkUyWtouA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30346.png + 0 + K + + K + + + 123.0 + 13.0 + 1.2 + 0.91 + + + week + 1 + 80 + 0 + + + + 380.p.27874 + 27874 + + Allen Hurns + Allen + Hurns + Allen + Hurns + + nfl.p.27874 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/33rkbOtO_UFWs.41bBc7_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27874.png + small + + https://s.yimg.com/iu/api/res/1.2/33rkbOtO_UFWs.41bBc7_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27874.png + 0 + O + + WR + + + 126.6 + 13.5 + 1.4 + 0.10 + + + week + 1 + 36 + 0 + + + + 380.p.30122 + 30122 + + John Ross + John + Ross + John + Ross + + nfl.p.30122 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/rZmWkdjA7slTmWxO3QsBYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30122.png + small + + https://s.yimg.com/iu/api/res/1.2/rZmWkdjA7slTmWxO3QsBYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30122.png + 0 + O + + WR + + 1 + + 126.8 + 13.6 + 1.2 + 0.04 + + + week + 1 + 23 + 0 + + + + 380.p.100022 + 100022 + + Arizona + Arizona + + Arizona + + + nfl.p.100022 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ari_3.jpg + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ari_3.jpg + 0 + DT + + DEF + + + 143.7 + 15.2 + 1.0 + 0.29 + + + week + 1 + 21 + 0 + + + + 380.p.7520 + 7520 + + Robbie Gould + Robbie + Gould + Robbie + Gould + + nfl.p.7520 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/3f9hrkScGHYTNRiyFZYZ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/7520.png + small + + https://s.yimg.com/iu/api/res/1.2/3f9hrkScGHYTNRiyFZYZ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/7520.png + 0 + K + + K + + + 135.7 + 14.2 + 1.2 + 0.46 + + + week + 1 + 52 + 0 + + + + 380.p.30258 + 30258 + + Jake Butt + Jake + Butt + Jake + Butt + + nfl.p.30258 + nfl.t.7 + Denver Broncos + Den + + 10 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/1pDSMU.QWR_bhbigc3vY6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30258.png + small + + https://s.yimg.com/iu/api/res/1.2/1pDSMU.QWR_bhbigc3vY6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30258.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.24318 + 24318 + + LeGarrette Blount + LeGarrette + Blount + LeGarrette + Blount + + nfl.p.24318 + nfl.t.8 + Detroit Lions + Det + + 6 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/XMlqNWHN.AO0hQszQ3ssMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24318.png + small + + https://s.yimg.com/iu/api/res/1.2/XMlqNWHN.AO0hQszQ3ssMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24318.png + 0 + O + + RB + + + 121.4 + 13.0 + 1.7 + 0.20 + + + week + 1 + 40 + 0 + + + + 380.p.8447 + 8447 + + Mason Crosby + Mason + Crosby + Mason + Crosby + + nfl.p.8447 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/ZU1dFb9kPX660y0CyQBUJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8447.png + small + + https://s.yimg.com/iu/api/res/1.2/ZU1dFb9kPX660y0CyQBUJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8447.png + 0 + K + + K + + + 134.1 + 14.0 + 1.1 + 0.40 + + + week + 1 + 53 + 0 + + + + 380.p.9037 + 9037 + + Danny Amendola + Danny + Amendola + Danny + Amendola + + nfl.p.9037 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/VrFLN.6lCNsrQj.N6oXOTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9037.png + small + + https://s.yimg.com/iu/api/res/1.2/VrFLN.6lCNsrQj.N6oXOTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9037.png + 0 + O + + WR + + 1 + + 122.9 + 12.9 + 1.2 + 0.07 + + + week + 1 + 28 + 0 + + + + 380.p.27737 + 27737 + + Quincy Enunwa + Quincy + Enunwa + Quincy + Enunwa + + nfl.p.27737 + nfl.t.20 + New York Jets + NYJ + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/np8EH2VInJGQjF98PImZWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27737.png + small + + https://s.yimg.com/iu/api/res/1.2/np8EH2VInJGQjF98PImZWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27737.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.28482 + 28482 + + Ty Montgomery + Ty + Montgomery + Ty + Montgomery + + nfl.p.28482 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 88 + RB + + https://s.yimg.com/iu/api/res/1.2/NDXFhG1lL6MUtvcjSyjmdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28482.png + small + + https://s.yimg.com/iu/api/res/1.2/NDXFhG1lL6MUtvcjSyjmdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28482.png + 0 + O + + RB + + 1 + + 122.1 + 13.2 + 1.4 + 0.11 + + + week + 1 + 31 + 0 + + + + 380.p.100004 + 100004 + + Cincinnati + Cincinnati + + Cincinnati + + + nfl.p.100004 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cin_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cin_2.gif + 0 + DT + + DEF + + + 144.1 + 15.0 + 1.0 + 0.07 + + + week + 1 + 10 + 0 + + + + 380.p.9526 + 9526 + + Graham Gano + Graham + Gano + Graham + Gano + + nfl.p.9526 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/MIeKU1N8aj510yrY97xbDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9526.png + small + + https://s.yimg.com/iu/api/res/1.2/MIeKU1N8aj510yrY97xbDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9526.png + 0 + K + + K + + + 135.8 + 14.1 + 1.5 + 0.12 + + + week + 1 + 23 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29370 + 29370 + + Devontae Booker + Devontae + Booker + Devontae + Booker + + nfl.p.29370 + nfl.t.7 + Denver Broncos + Den + + 10 + + 23 + RB + + https://s.yimg.com/iu/api/res/1.2/jipwk_O7AtLUKrCsYo3_yA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29370.png + small + + https://s.yimg.com/iu/api/res/1.2/jipwk_O7AtLUKrCsYo3_yA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29370.png + 0 + O + + RB + + + 126.7 + 13.9 + 1.4 + 0.05 + + + week + 1 + 21 + 0 + + + + 380.p.25793 + 25793 + + Mohamed Sanu + Mohamed + Sanu + Mohamed + Sanu + + nfl.p.25793 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/OSci6bqT9H94bO2Iim6GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25793.png + small + + https://s.yimg.com/iu/api/res/1.2/OSci6bqT9H94bO2Iim6GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25793.png + 0 + O + + WR + + 1 + + 124.2 + 13.0 + 1.4 + 0.08 + + + week + 1 + 26 + 0 + + + + 380.p.8826 + 8826 + + DeSean Jackson + DeSean + Jackson + DeSean + Jackson + + nfl.p.8826 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/h0EwwKA.ipLJB2nce6IMSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8826.png + small + + https://s.yimg.com/iu/api/res/1.2/h0EwwKA.ipLJB2nce6IMSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8826.png + 0 + O + + WR + + + 128.1 + 13.7 + 1.3 + 0.09 + + + week + 1 + 26 + 0 + + + + 380.p.27573 + 27573 + + Paul Richardson Jr. + Paul + Richardson Jr. + Paul + Richardson Jr. + + nfl.p.27573 + nfl.t.28 + Washington Redskins + Was + + 4 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/p0pw3Ouuz.6KnXCr3451AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27573.png + small + + https://s.yimg.com/iu/api/res/1.2/p0pw3Ouuz.6KnXCr3451AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27573.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 12 + 0 + + + + 380.p.9520 + 9520 + + Ryan Succop + Ryan + Succop + Ryan + Succop + + nfl.p.9520 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/vlGbjekwfCpr4azMvF1IpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9520.png + small + + https://s.yimg.com/iu/api/res/1.2/vlGbjekwfCpr4azMvF1IpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9520.png + 0 + K + + K + + + 135.6 + 14.0 + 1.0 + 0.07 + + + week + 1 + 17 + 0 + + + + 380.p.28402 + 28402 + + DeVante Parker + DeVante + Parker + DeVante + Parker + + Q + Questionable + nfl.p.28402 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/LJXTrfrwf8zMgDzoEQPruQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28402.png + small + + https://s.yimg.com/iu/api/res/1.2/LJXTrfrwf8zMgDzoEQPruQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28402.png + 0 + O + + WR + + 1 + 1 + + 120.9 + 12.9 + 1.5 + 0.43 + + + week + 1 + 44 + 0 + + + + 380.p.8795 + 8795 + + Joe Flacco + Joe + Flacco + Joe + Flacco + + nfl.p.8795 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/fX6EGr0s4AIr8Zt6neNm7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8795.png + small + + https://s.yimg.com/iu/api/res/1.2/fX6EGr0s4AIr8Zt6neNm7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8795.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.100019 + 100019 + + New York + New York + + New York + + + nfl.p.100019 + nfl.t.19 + New York Giants + NYG + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyg_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyg_2.gif + 0 + DT + + DEF + + + 132.4 + 13.9 + 1.0 + 0.04 + + + week + 1 + 7 + 0 + + + + 380.p.30996 + 30996 + + Calvin Ridley + Calvin + Ridley + Calvin + Ridley + + nfl.p.30996 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/GNTR5ZhV7XSk5.CCqC293A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30996.png + small + + https://s.yimg.com/iu/api/res/1.2/GNTR5ZhV7XSk5.CCqC293A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30996.png + 0 + O + + WR + + 1 + + 124.7 + 13.3 + 1.4 + 0.17 + + + week + 1 + 35 + 0 + + + + 380.p.27120 + 27120 + + Brandon McManus + Brandon + McManus + Brandon + McManus + + nfl.p.27120 + nfl.t.7 + Denver Broncos + Den + + 10 + + 8 + K + + https://s.yimg.com/iu/api/res/1.2/hwqKXjWMUwdQFxgwbTs1Vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27120.png + small + + https://s.yimg.com/iu/api/res/1.2/hwqKXjWMUwdQFxgwbTs1Vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27120.png + 0 + K + + K + + + 132.2 + 13.8 + 1.3 + 0.07 + + + week + 1 + 16 + 0 + + + + 380.p.30218 + 30218 + + James Conner + James + Conner + James + Conner + + nfl.p.30218 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/wm5pof1sEIESaW9wa6w8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30218.png + small + + https://s.yimg.com/iu/api/res/1.2/wm5pof1sEIESaW9wa6w8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30218.png + 0 + O + + RB + + 1 + + 127.0 + 14.0 + 2.0 + 0.05 + + + week + 1 + 44 + 0 + + + + 380.p.6663 + 6663 + + Antonio Gates + Antonio + Gates + Antonio + Gates + + nfl.p.6663 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/d5369QD8XmbBbkY.8DUzmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/6663.png + small + + https://s.yimg.com/iu/api/res/1.2/d5369QD8XmbBbkY.8DUzmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/6663.png + 0 + O + + TE + + 1 + 1 + + 121.9 + 12.8 + 1.1 + 0.02 + + + week + 1 + 9 + 0 + + + + 380.p.100026 + 100026 + + Seattle + Seattle + + Seattle + + + nfl.p.100026 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sea.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sea.gif + 0 + DT + + DEF + + + 125.1 + 13.4 + 1.1 + 0.39 + + + week + 1 + 21 + 0 + + + + 380.p.26822 + 26822 + + Theo Riddick + Theo + Riddick + Theo + Riddick + + nfl.p.26822 + nfl.t.8 + Detroit Lions + Det + + 6 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/qiu078pJcfSP8sJeqSYYzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26822.png + small + + https://s.yimg.com/iu/api/res/1.2/qiu078pJcfSP8sJeqSYYzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26822.png + 0 + O + + RB + + + 128.3 + 14.1 + 1.5 + 0.06 + + + week + 1 + 26 + 0 + + + + 380.p.24400 + 24400 + + Chris Ivory + Chris + Ivory + Chris + Ivory + + nfl.p.24400 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/oYXyli3A9cuppQSGsNUggw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24400.png + small + + https://s.yimg.com/iu/api/res/1.2/oYXyli3A9cuppQSGsNUggw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24400.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.30973 + 30973 + + Sam Darnold + Sam + Darnold + Sam + Darnold + + nfl.p.30973 + nfl.t.20 + New York Jets + NYJ + + 11 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/w.oTL.R5bWC5VzHTuyU1YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30973.png + small + + https://s.yimg.com/iu/api/res/1.2/w.oTL.R5bWC5VzHTuyU1YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30973.png + 0 + O + + QB + + 1 + + 119.4 + 12.5 + 1.1 + 0.02 + + + week + 1 + 9 + 0 + + + + 380.p.100008 + 100008 + + Detroit + Detroit + + Detroit + + + nfl.p.100008 + nfl.t.8 + Detroit Lions + Det + + 6 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/det2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/det2.gif + 0 + DT + + DEF + + + 135.5 + 14.5 + 1.1 + 0.07 + + + week + 1 + 38 + 0 + + + + 380.p.30213 + 30213 + + Jonnu Smith + Jonnu + Smith + Jonnu + Smith + + nfl.p.30213 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/AARgiLCwUr9.gnCnlsMIuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30213.png + small + + https://s.yimg.com/iu/api/res/1.2/AARgiLCwUr9.gnCnlsMIuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30213.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30995 + 30995 + + Hayden Hurst + Hayden + Hurst + Hayden + Hurst + + O + Out + nfl.p.30995 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/FbeWqEXbdH9TBJZqk0gZ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30995.png + small + + https://s.yimg.com/iu/api/res/1.2/FbeWqEXbdH9TBJZqk0gZ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30995.png + 0 + O + + TE + + + 127.9 + 13.5 + 1.4 + 0.03 + + + week + 1 + 4 + 0 + + + + 380.p.26817 + 26817 + + Spencer Ware + Spencer + Ware + Spencer + Ware + + nfl.p.26817 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/2h2uwgux2YUHi5dVzRHxKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26817.png + small + + https://s.yimg.com/iu/api/res/1.2/2h2uwgux2YUHi5dVzRHxKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26817.png + 0 + O + + RB + + 1 + + 127.8 + 14.4 + 1.3 + 0.03 + + + week + 1 + 14 + 0 + + + + 380.p.23976 + 23976 + + Sam Bradford + Sam + Bradford + Sam + Bradford + + nfl.p.23976 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/0b.jpvIxow7sf7CHav3sVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23976.png + small + + https://s.yimg.com/iu/api/res/1.2/0b.jpvIxow7sf7CHav3sVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23976.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.31010 + 31010 + + Courtland Sutton + Courtland + Sutton + Courtland + Sutton + + nfl.p.31010 + nfl.t.7 + Denver Broncos + Den + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/_9fpTovrEXhgUF5mEKhd.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31010.png + small + + https://s.yimg.com/iu/api/res/1.2/_9fpTovrEXhgUF5mEKhd.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31010.png + 0 + O + + WR + + + 125.9 + 13.6 + 1.2 + 0.02 + + + week + 1 + 11 + 0 + + + + 380.p.100012 + 100012 + + Kansas City + Kansas City + + Kansas City + + + nfl.p.100012 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/kan.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/kan.gif + 0 + DT + + DEF + + + 138.5 + 14.8 + 1.0 + 0.49 + + + week + 1 + 21 + 0 + + + + 380.p.100025 + 100025 + + San Francisco + San Francisco + + San Francisco + + + nfl.p.100025 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sfo.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sfo.gif + 0 + DT + + DEF + + + 124.5 + 13.1 + 1.1 + 0.02 + + + week + 1 + 3 + 0 + + + + 380.p.30157 + 30157 + + Gerald Everett + Gerald + Everett + Gerald + Everett + + Q + Questionable + nfl.p.30157 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/UjSrmPWQiVTMw8MWYZ1JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30157.png + small + + https://s.yimg.com/iu/api/res/1.2/UjSrmPWQiVTMw8MWYZ1JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30157.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.100028 + 100028 + + Washington + Washington + + Washington + + + nfl.p.100028 + nfl.t.28 + Washington Redskins + Was + + 4 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/was.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/was.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.29719 + 29719 + + Geronimo Allison + Geronimo + Allison + Geronimo + Allison + + nfl.p.29719 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/Cmpu5Zjd3WdaAz8BPrlWlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29719.png + small + + https://s.yimg.com/iu/api/res/1.2/Cmpu5Zjd3WdaAz8BPrlWlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29719.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + 380.p.29789 + 29789 + + Stephen Anderson + Stephen + Anderson + Stephen + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29789 + nfl.t.34 + Houston Texans + Hou + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/L2Txr2Yy5dlPuurEx7OYtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29789.png + small + + https://s.yimg.com/iu/api/res/1.2/L2Txr2Yy5dlPuurEx7OYtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29789.png + 0 + O + + TE + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7755 + 7755 + + Vernon Davis + Vernon + Davis + Vernon + Davis + + nfl.p.7755 + nfl.t.28 + Washington Redskins + Was + + 4 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/rpQ9RVc9S3vSyzrXTZm7QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7755.png + small + + https://s.yimg.com/iu/api/res/1.2/rpQ9RVc9S3vSyzrXTZm7QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7755.png + 0 + O + + TE + + + 122.9 + 12.8 + 1.3 + 0.04 + + + week + 1 + 8 + 0 + + + + 380.p.30971 + 30971 + + Baker Mayfield + Baker + Mayfield + Baker + Mayfield + + nfl.p.30971 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/hjwLK2PVXyuFHf_9LoK6ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30971.png + small + + https://s.yimg.com/iu/api/res/1.2/hjwLK2PVXyuFHf_9LoK6ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30971.png + 0 + O + + QB + + 1 + + 117.8 + 12.3 + 1.9 + 0.04 + + + week + 1 + 12 + 0 + + + + 380.p.30423 + 30423 + + Austin Ekeler + Austin + Ekeler + Austin + Ekeler + + nfl.p.30423 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/MwGqRHLe0hjm8oZtQdQGcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30423.png + small + + https://s.yimg.com/iu/api/res/1.2/MwGqRHLe0hjm8oZtQdQGcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30423.png + 0 + O + + RB + + 1 + + 129.7 + 14.9 + 1.5 + 0.02 + + + week + 1 + 17 + 0 + + + + 380.p.28548 + 28548 + + Jesse James + Jesse + James + Jesse + James + + Q + Questionable + nfl.p.28548 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/mlI_74b3eM6p0PG6sB95BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28548.png + small + + https://s.yimg.com/iu/api/res/1.2/mlI_74b3eM6p0PG6sB95BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28548.png + 0 + O + + TE + + 1 + + 119.9 + 12.5 + 5.9 + 0.03 + + + week + 1 + 3 + 0 + + + + 380.p.8263 + 8263 + + Ted Ginn Jr. + Ted + Ginn Jr. + Ted + Ginn Jr. + + nfl.p.8263 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/h4t6EKxGKWrawJy3.r5LTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/8263.png + small + + https://s.yimg.com/iu/api/res/1.2/h4t6EKxGKWrawJy3.r5LTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/8263.png + 0 + O + + WR + + + 124.2 + 13.0 + 1.1 + 0.04 + + + week + 1 + 16 + 0 + + + + 380.p.30185 + 30185 + + Taywan Taylor + Taywan + Taylor + Taywan + Taylor + + nfl.p.30185 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/KEEM9KZTzTwcjhcepRtWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30185.png + small + + https://s.yimg.com/iu/api/res/1.2/KEEM9KZTzTwcjhcepRtWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30185.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.28847 + 28847 + + Corey Grant + Corey + Grant + Corey + Grant + + nfl.p.28847 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/93a2uaYO6hZber7afxDZEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28847.png + small + + https://s.yimg.com/iu/api/res/1.2/93a2uaYO6hZber7afxDZEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28847.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31137 + 31137 + + Daniel Carlson + Daniel + Carlson + Daniel + Carlson + + nfl.p.31137 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/68HyMksD6chOhQFUKdWBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31137.png + small + + https://s.yimg.com/iu/api/res/1.2/68HyMksD6chOhQFUKdWBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31137.png + 0 + K + + K + + + 131.5 + 13.8 + 1.6 + 0.14 + + + week + 1 + 41 + 0 + + + + 380.p.100005 + 100005 + + Cleveland + Cleveland + + Cleveland + + + nfl.p.100005 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cle.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cle.gif + 0 + DT + + DEF + + + 128.1 + 13.4 + 1.0 + 0.04 + + + week + 1 + 6 + 0 + + + + 380.p.29390 + 29390 + + Jonathan Williams + Jonathan + Williams + Jonathan + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29390 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/ykn3fTWxGNVCVJ5aiTO0xQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29390.png + small + + https://s.yimg.com/iu/api/res/1.2/ykn3fTWxGNVCVJ5aiTO0xQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29390.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27709 + 27709 + + Alfred Blue + Alfred + Blue + Alfred + Blue + + nfl.p.27709 + nfl.t.34 + Houston Texans + Hou + + 10 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/7AoIXZNB3bDgkJJ.m.x7Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27709.png + small + + https://s.yimg.com/iu/api/res/1.2/7AoIXZNB3bDgkJJ.m.x7Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27709.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.3727 + 3727 + + Adam Vinatieri + Adam + Vinatieri + Adam + Vinatieri + + nfl.p.3727 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/LlabrCmQU.wqG3KhnUOEdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/3727.png + small + + https://s.yimg.com/iu/api/res/1.2/LlabrCmQU.wqG3KhnUOEdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/3727.png + 0 + K + + K + + + 125.2 + 13.0 + 1.4 + 0.09 + + + week + 1 + 20 + 0 + + + + 380.p.27583 + 27583 + + Jeremy Hill + Jeremy + Hill + Jeremy + Hill + + nfl.p.27583 + nfl.t.17 + New England Patriots + NE + + 11 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/0OKFsxLSSXYdvAY3m5hD9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27583.1.png + small + + https://s.yimg.com/iu/api/res/1.2/0OKFsxLSSXYdvAY3m5hD9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27583.1.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.29792 + 29792 + + Ka'imi Fairbairn + Ka'imi + Fairbairn + Ka'imi + Fairbairn + + nfl.p.29792 + nfl.t.34 + Houston Texans + Hou + + 10 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/RXZLzByOu5brkOI0rhd3Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29792.png + small + + https://s.yimg.com/iu/api/res/1.2/RXZLzByOu5brkOI0rhd3Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29792.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.28685 + 28685 + + Josh Lambo + Josh + Lambo + Josh + Lambo + + nfl.p.28685 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/SsjPoijMAmqaEnJBa0lP5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28685.png + small + + https://s.yimg.com/iu/api/res/1.2/SsjPoijMAmqaEnJBa0lP5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28685.png + 0 + K + + K + + + 136.4 + 14.1 + 1.2 + 0.08 + + + week + 1 + 16 + 0 + + + + 380.p.31145 + 31145 + + John Kelly + John + Kelly + John + Kelly + + nfl.p.31145 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/weuizI8IW6QN5rfIvidhqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31145.png + small + + https://s.yimg.com/iu/api/res/1.2/weuizI8IW6QN5rfIvidhqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31145.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.7241 + 7241 + + Frank Gore + Frank + Gore + Frank + Gore + + nfl.p.7241 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/4sclXShgyZcuuMMzzg3ogg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7241.png + small + + https://s.yimg.com/iu/api/res/1.2/4sclXShgyZcuuMMzzg3ogg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7241.png + 0 + O + + RB + + 1 + + 121.2 + 13.0 + 1.2 + 0.02 + + + week + 1 + 9 + 0 + + + + 380.p.23999 + 23999 + + Dez Bryant + Dez + Bryant + Dez + Bryant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.23999 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/p5xjvUVWrPnKoGQgNHy34A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/23999.png + small + + https://s.yimg.com/iu/api/res/1.2/p5xjvUVWrPnKoGQgNHy34A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/23999.png + 0 + O + + WR + + 1 + + 120.4 + 13.0 + 5.3 + 0.26 + + + week + 1 + 30 + 0 + + + + 380.p.8790 + 8790 + + Jonathan Stewart + Jonathan + Stewart + Jonathan + Stewart + + nfl.p.8790 + nfl.t.19 + New York Giants + NYG + + 9 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/AiyaUENDWbYLUuackdHmVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8790.png + small + + https://s.yimg.com/iu/api/res/1.2/AiyaUENDWbYLUuackdHmVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8790.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.6405 + 6405 + + Jason Witten + Jason + Witten + Jason + Witten + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6405 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/YLfUMGClhJoiZBtm8jPpew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/6405.png + small + + https://s.yimg.com/iu/api/res/1.2/YLfUMGClhJoiZBtm8jPpew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/6405.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26787 + 26787 + + Mike Gillislee + Mike + Gillislee + Mike + Gillislee + + nfl.p.26787 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/_E94OcDFQtS9Fgxb6LgY4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26787.png + small + + https://s.yimg.com/iu/api/res/1.2/_E94OcDFQtS9Fgxb6LgY4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26787.png + 0 + O + + RB + + 1 + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.5967 + 5967 + + Josh McCown + Josh + McCown + Josh + McCown + + nfl.p.5967 + nfl.t.20 + New York Jets + NYJ + + 11 + + 15 + QB + + https://s.yimg.com/iu/api/res/1.2/d3V0Rqi5rFDdS5e7Zt6b8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5967.png + small + + https://s.yimg.com/iu/api/res/1.2/d3V0Rqi5rFDdS5e7Zt6b8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5967.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.25991 + 25991 + + Jermaine Kearse + Jermaine + Kearse + Jermaine + Kearse + + Q + Questionable + nfl.p.25991 + nfl.t.20 + New York Jets + NYJ + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/RvAYccK6dDrnBRXFxTfWVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25991.png + small + + https://s.yimg.com/iu/api/res/1.2/RvAYccK6dDrnBRXFxTfWVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25991.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.9444 + 9444 + + Zach Miller + Zach + Miller + Zach + Miller + + IR + Injured Reserve + nfl.p.9444 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/CGStzRb1N.iCo4LvapW38w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/9444.png + small + + https://s.yimg.com/iu/api/res/1.2/CGStzRb1N.iCo4LvapW38w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/9444.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30592 + 30592 + + Patrick Ricard + Patrick + Ricard + Patrick + Ricard + + nfl.p.30592 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 42 + DE + + https://s.yimg.com/iu/api/res/1.2/.WA2MUbzz3E2tAo9Cs_7Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30592.png + small + + https://s.yimg.com/iu/api/res/1.2/.WA2MUbzz3E2tAo9Cs_7Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30592.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 55 + 0 + + + + 380.p.28169 + 28169 + + Orleans Darkwa + Orleans + Darkwa + Orleans + Darkwa + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28169 + nfl.t.19 + New York Giants + NYG + + 9 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/2z50BTVd5yLPrpbDNpqxJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28169.png + small + + https://s.yimg.com/iu/api/res/1.2/2z50BTVd5yLPrpbDNpqxJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28169.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25810 + 25810 + + Travis Benjamin + Travis + Benjamin + Travis + Benjamin + + nfl.p.25810 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/Z7R8xbPfeYRm2TZPnDr2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25810.png + small + + https://s.yimg.com/iu/api/res/1.2/Z7R8xbPfeYRm2TZPnDr2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25810.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28473 + 28473 + + Tyler Kroft + Tyler + Kroft + Tyler + Kroft + + nfl.p.28473 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/972IfJ4auFsVubPe7hCIsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28473.png + small + + https://s.yimg.com/iu/api/res/1.2/972IfJ4auFsVubPe7hCIsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28473.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28378 + 28378 + + Jason Myers + Jason + Myers + Jason + Myers + + nfl.p.28378 + nfl.t.20 + New York Jets + NYJ + + 11 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/EZiP5hu7z578kJiM0pUAVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28378.png + small + + https://s.yimg.com/iu/api/res/1.2/EZiP5hu7z578kJiM0pUAVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28378.png + 0 + K + + K + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24916 + 24916 + + Julius Thomas + Julius + Thomas + Julius + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24916 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/r9dw5zP0Sjlp0co0AP6cpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/24916.png + small + + https://s.yimg.com/iu/api/res/1.2/r9dw5zP0Sjlp0co0AP6cpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/24916.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25741 + 25741 + + Doug Martin + Doug + Martin + Doug + Martin + + nfl.p.25741 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/TxPXrE4E49Y1lolLDEBPSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25741.png + small + + https://s.yimg.com/iu/api/res/1.2/TxPXrE4E49Y1lolLDEBPSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25741.png + 0 + O + + RB + + 1 + + 126.8 + 14.1 + 1.3 + 0.03 + + + week + 1 + 12 + 0 + + + + 380.p.9066 + 9066 + + Stephen Hauschka + Stephen + Hauschka + Stephen + Hauschka + + nfl.p.9066 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/vho1OdxrheXvPzDfSHZNYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9066.png + small + + https://s.yimg.com/iu/api/res/1.2/vho1OdxrheXvPzDfSHZNYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9066.png + 0 + K + + K + + + 124.6 + 13.0 + 1.2 + 0.02 + + + week + 1 + 5 + 0 + + + + 380.p.26253 + 26253 + + Garrett Celek + Garrett + Celek + Garrett + Celek + + nfl.p.26253 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/mxFD3ch3juzDVhtfSCZU2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26253.png + small + + https://s.yimg.com/iu/api/res/1.2/mxFD3ch3juzDVhtfSCZU2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26253.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25744 + 25744 + + Coby Fleener + Coby + Fleener + Coby + Fleener + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25744 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/VWsuXKih6gWUaJxR6c3Ohg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/25744.png + small + + https://s.yimg.com/iu/api/res/1.2/VWsuXKih6gWUaJxR6c3Ohg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/25744.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28046 + 28046 + + Albert Wilson + Albert + Wilson + Albert + Wilson + + nfl.p.28046 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/KsiYxf3NSAd9jUrXZwAL3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28046.png + small + + https://s.yimg.com/iu/api/res/1.2/KsiYxf3NSAd9jUrXZwAL3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28046.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26800 + 26800 + + Dustin Hopkins + Dustin + Hopkins + Dustin + Hopkins + + nfl.p.26800 + nfl.t.28 + Washington Redskins + Was + + 4 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/HCSp8jyVRpGIZXz2WgZmug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26800.png + small + + https://s.yimg.com/iu/api/res/1.2/HCSp8jyVRpGIZXz2WgZmug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26800.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.30278 + 30278 + + Jamal Agnew + Jamal + Agnew + Jamal + Agnew + + nfl.p.30278 + nfl.t.8 + Detroit Lions + Det + + 6 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 52 + 0 + + + + 380.p.28442 + 28442 + + Ameer Abdullah + Ameer + Abdullah + Ameer + Abdullah + + nfl.p.28442 + nfl.t.8 + Detroit Lions + Det + + 6 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/qRFP9T7jrDt6dsA90oh0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28442.png + small + + https://s.yimg.com/iu/api/res/1.2/qRFP9T7jrDt6dsA90oh0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28442.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.9283 + 9283 + + Jeremy Maclin + Jeremy + Maclin + Jeremy + Maclin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9283 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/zlzIl1wUnTOUWEqHGYxmKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9283.png + small + + https://s.yimg.com/iu/api/res/1.2/zlzIl1wUnTOUWEqHGYxmKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9283.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28513 + 28513 + + Javorius Allen + Javorius + Allen + Javorius + Allen + + nfl.p.28513 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/w.ayhSWpiAYDqPX0s3K31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28513.png + small + + https://s.yimg.com/iu/api/res/1.2/w.ayhSWpiAYDqPX0s3K31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28513.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.24053 + 24053 + + Brandon LaFell + Brandon + LaFell + Brandon + LaFell + + nfl.p.24053 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/qGOnOaiLeAGtePt.nx7gOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24053.png + small + + https://s.yimg.com/iu/api/res/1.2/qGOnOaiLeAGtePt.nx7gOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24053.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29694 + 29694 + + Rob Kelley + Rob + Kelley + Rob + Kelley + + nfl.p.29694 + nfl.t.28 + Washington Redskins + Was + + 4 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/JrEUw32doE_iyCtsoO16Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29694.png + small + + https://s.yimg.com/iu/api/res/1.2/JrEUw32doE_iyCtsoO16Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29694.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30158 + 30158 + + Adam Shaheen + Adam + Shaheen + Adam + Shaheen + + IR + Injured Reserve + ankle + nfl.p.30158 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/J7xULkZEoZXKx8Tfaf5hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30158.png + small + + https://s.yimg.com/iu/api/res/1.2/J7xULkZEoZXKx8Tfaf5hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30158.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25295 + 25295 + + Nick Bellore + Nick + Bellore + Nick + Bellore + + nfl.p.25295 + nfl.t.8 + Detroit Lions + Det + + 6 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/WIt9Z0Hjd5rzkcF8Xd55Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/25295.png + small + + https://s.yimg.com/iu/api/res/1.2/WIt9Z0Hjd5rzkcF8Xd55Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/25295.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 48 + 0 + + + + 380.p.4269 + 4269 + + Phil Dawson + Phil + Dawson + Phil + Dawson + + nfl.p.4269 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/G8JqLUBx.psySWykdB_D2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/4269.png + small + + https://s.yimg.com/iu/api/res/1.2/G8JqLUBx.psySWykdB_D2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/4269.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.26824 + 26824 + + Ryan Griffin + Ryan + Griffin + Ryan + Griffin + + nfl.p.26824 + nfl.t.34 + Houston Texans + Hou + + 10 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/9hwZF.DLYTCjU2.25jsevA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26824.png + small + + https://s.yimg.com/iu/api/res/1.2/9hwZF.DLYTCjU2.25jsevA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26824.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27618 + 27618 + + Donte Moncrief + Donte + Moncrief + Donte + Moncrief + + nfl.p.27618 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/I0uXMVfzv3.zjvgSfqPZKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27618.png + small + + https://s.yimg.com/iu/api/res/1.2/I0uXMVfzv3.zjvgSfqPZKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27618.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 17 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29249 + 29249 + + Corey Coleman + Corey + Coleman + Corey + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29249 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/ZzbB.wBWSM.d24b1OnTgKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29249.png + small + + https://s.yimg.com/iu/api/res/1.2/ZzbB.wBWSM.d24b1OnTgKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29249.png + 0 + O + + WR + + 1 + + 130.5 + 13.7 + 1.1 + 0.03 + + + week + 1 + 5 + 0 + + + + 380.p.25730 + 25730 + + Kendall Wright + Kendall + Wright + Kendall + Wright + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25730 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/1FyDlBLh5aUh9MHO9VXANw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25730.png + small + + https://s.yimg.com/iu/api/res/1.2/1FyDlBLh5aUh9MHO9VXANw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25730.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30217 + 30217 + + C.J. Beathard + C.J. + Beathard + C.J. + Beathard + + nfl.p.30217 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/TEXtAAOA6U1AmxJEXM6.0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30217.png + small + + https://s.yimg.com/iu/api/res/1.2/TEXtAAOA6U1AmxJEXM6.0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30217.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27646 + 27646 + + Martavis Bryant + Martavis + Bryant + Martavis + Bryant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27646 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/.P_p0cpVMxIdMqdwjuQtYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27646.png + small + + https://s.yimg.com/iu/api/res/1.2/.P_p0cpVMxIdMqdwjuQtYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27646.png + 0 + O + + WR + + 1 + + 126.6 + 13.4 + 1.9 + 0.09 + + + week + 1 + 7 + 0 + + + + 380.p.30227 + 30227 + + Samaje Perine + Samaje + Perine + Samaje + Perine + + nfl.p.30227 + nfl.t.28 + Washington Redskins + Was + + 4 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/gQ2dhEnCfKcFnHQpf5GocA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30227.png + small + + https://s.yimg.com/iu/api/res/1.2/gQ2dhEnCfKcFnHQpf5GocA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30227.png + 0 + O + + RB + + + 123.5 + 13.5 + 1.2 + 0.02 + + + week + 1 + 3 + 0 + + + + 380.p.7777 + 7777 + + Marcedes Lewis + Marcedes + Lewis + Marcedes + Lewis + + nfl.p.7777 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/W0JS.Hufxa09Vs_MWZhp8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7777.png + small + + https://s.yimg.com/iu/api/res/1.2/W0JS.Hufxa09Vs_MWZhp8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7777.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27622 + 27622 + + Terrance West + Terrance + West + Terrance + West + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27622 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/AUYGNZMnGwHSGqzttX5e3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27622.png + small + + https://s.yimg.com/iu/api/res/1.2/AUYGNZMnGwHSGqzttX5e3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27622.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26784 + 26784 + + Tavarres King + Tavarres + King + Tavarres + King + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26784 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/gaaffHoXKUoikawyD0M9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26784.png + small + + https://s.yimg.com/iu/api/res/1.2/gaaffHoXKUoikawyD0M9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26784.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28705 + 28705 + + Bryce Callahan + Bryce + Callahan + Bryce + Callahan + + nfl.p.28705 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/BWW3g3lO3ByGan4u16zKBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28705.png + small + + https://s.yimg.com/iu/api/res/1.2/BWW3g3lO3ByGan4u16zKBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28705.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 44 + 0 + + + + 380.p.28547 + 28547 + + J.J. Nelson + J.J. + Nelson + J.J. + Nelson + + nfl.p.28547 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/ArfrherYRx0cVN5U35NqqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28547.png + small + + https://s.yimg.com/iu/api/res/1.2/ArfrherYRx0cVN5U35NqqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28547.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.100027 + 100027 + + Tampa Bay + Tampa Bay + + Tampa Bay + + + nfl.p.100027 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/tam.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/tam.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25681 + 25681 + + Terrelle Pryor Sr. + Terrelle + Pryor Sr. + Terrelle + Pryor Sr. + + nfl.p.25681 + nfl.t.20 + New York Jets + NYJ + + 11 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/sM1Ge6xr.11RtU5KWhPZ6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25681.png + small + + https://s.yimg.com/iu/api/res/1.2/sM1Ge6xr.11RtU5KWhPZ6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25681.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.28424 + 28424 + + T.J. Yeldon + T.J. + Yeldon + T.J. + Yeldon + + nfl.p.28424 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/zzXxwWKtsoPlk6GZ_aK4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28424.png + small + + https://s.yimg.com/iu/api/res/1.2/zzXxwWKtsoPlk6GZ_aK4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28424.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.100006 + 100006 + + Dallas + Dallas + + Dallas + + + nfl.p.100006 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/dal.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/dal.gif + 0 + DT + + DEF + + + 122.9 + 12.9 + 1.2 + 0.06 + + + week + 1 + 7 + 0 + + + + 380.p.7883 + 7883 + + Kyle Williams + Kyle + Williams + Kyle + Williams + + Q + Questionable + nfl.p.7883 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/ke.Qiwpfb_VJEw2mK1p9pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7883.png + small + + https://s.yimg.com/iu/api/res/1.2/ke.Qiwpfb_VJEw2mK1p9pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7883.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 40 + 0 + + + + 380.p.28204 + 28204 + + Marcus Williams + Marcus + Williams + Marcus + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28204 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/aemgbMUVfbjCwbMTZwasKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28204.1.png + small + + https://s.yimg.com/iu/api/res/1.2/aemgbMUVfbjCwbMTZwasKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28204.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 32 + 0 + + + + 380.p.25907 + 25907 + + Nate Ebner + Nate + Ebner + Nate + Ebner + + nfl.p.25907 + nfl.t.17 + New England Patriots + NE + + 11 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/Os6RMd3zX4c9B0opp56Gmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25907.png + small + + https://s.yimg.com/iu/api/res/1.2/Os6RMd3zX4c9B0opp56Gmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25907.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 32 + 0 + + + + 380.p.25120 + 25120 + + Dontrelle Inman + Dontrelle + Inman + Dontrelle + Inman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25120 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/njshG06ZRMWrdcnlnxx1WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25120.png + small + + https://s.yimg.com/iu/api/res/1.2/njshG06ZRMWrdcnlnxx1WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25120.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24685 + 24685 + + Marcus Sherels + Marcus + Sherels + Marcus + Sherels + + Q + Questionable + nfl.p.24685 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/QP_qX8GDf5Sj09_m1BquYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24685.png + small + + https://s.yimg.com/iu/api/res/1.2/QP_qX8GDf5Sj09_m1BquYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24685.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 28 + 0 + + + + 380.p.30131 + 30131 + + Adoree' Jackson + Adoree' + Jackson + Adoree' + Jackson + + nfl.p.30131 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/avA0KdjRTuV_LfkmmlqWXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30131.png + small + + https://s.yimg.com/iu/api/res/1.2/avA0KdjRTuV_LfkmmlqWXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30131.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 49 + 0 + + + + 380.p.26222 + 26222 + + Robert Golden + Robert + Golden + Robert + Golden + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26222 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/TnVIEbPEcrSTEYJasJXPvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26222.png + small + + https://s.yimg.com/iu/api/res/1.2/TnVIEbPEcrSTEYJasJXPvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26222.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 19 + 0 + + + + 380.p.25721 + 25721 + + Dontari Poe + Dontari + Poe + Dontari + Poe + + nfl.p.25721 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/kwAFJmsHJ.lX0wsRkZ0ebg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25721.png + small + + https://s.yimg.com/iu/api/res/1.2/kwAFJmsHJ.lX0wsRkZ0ebg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25721.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 31 + 0 + + + + 380.p.27345 + 27345 + + Jeff Heath + Jeff + Heath + Jeff + Heath + + nfl.p.27345 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/Co5BJg5khp0EZDf9GJuaNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27345.png + small + + https://s.yimg.com/iu/api/res/1.2/Co5BJg5khp0EZDf9GJuaNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27345.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 36 + 0 + + + + 380.p.28103 + 28103 + + Chandler Catanzaro + Chandler + Catanzaro + Chandler + Catanzaro + + nfl.p.28103 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/ZMs2joKniKcdapIt2kjVlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28103.png + small + + https://s.yimg.com/iu/api/res/1.2/ZMs2joKniKcdapIt2kjVlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28103.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28801 + 28801 + + Jermaine Whitehead + Jermaine + Whitehead + Jermaine + Whitehead + + nfl.p.28801 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/tPtFCvF5rQ1bV7RB71699g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28801.png + small + + https://s.yimg.com/iu/api/res/1.2/tPtFCvF5rQ1bV7RB71699g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28801.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 20 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29070 + 29070 + + Adam Humphries + Adam + Humphries + Adam + Humphries + + nfl.p.29070 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/1QbA2YYTkfOX4PDz_z9UZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29070.png + small + + https://s.yimg.com/iu/api/res/1.2/1QbA2YYTkfOX4PDz_z9UZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29070.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27074 + 27074 + + Jaron Brown + Jaron + Brown + Jaron + Brown + + nfl.p.27074 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/2I_KSWgrW87yXYq3ptkLDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27074.png + small + + https://s.yimg.com/iu/api/res/1.2/2I_KSWgrW87yXYq3ptkLDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27074.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.100010 + 100010 + + Tennessee + Tennessee + + Tennessee + + + nfl.p.100010 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ten.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ten.gif + 0 + DT + + DEF + + + 135.2 + 14.0 + 1.1 + 0.11 + + + week + 1 + 15 + 0 + + + + 380.p.27680 + 27680 + + Nat Berhe + Nat + Berhe + Nat + Berhe + + nfl.p.27680 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/7UbgXShECRva3uAfjHOs4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27680.png + small + + https://s.yimg.com/iu/api/res/1.2/7UbgXShECRva3uAfjHOs4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27680.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 16 + 0 + + + + 380.p.26060 + 26060 + + Cole Beasley + Cole + Beasley + Cole + Beasley + + nfl.p.26060 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/36NrtgiabTTWLTtdeHVjgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26060.png + small + + https://s.yimg.com/iu/api/res/1.2/36NrtgiabTTWLTtdeHVjgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26060.png + 0 + O + + WR + + + 119.8 + 12.5 + 1.3 + 0.03 + + + week + 1 + 8 + 0 + + + + 380.p.29077 + 29077 + + Quinton Dunbar + Quinton + Dunbar + Quinton + Dunbar + + nfl.p.29077 + nfl.t.28 + Washington Redskins + Was + + 4 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/4Nu73M5iNLMWo5aSWwy4Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29077.png + small + + https://s.yimg.com/iu/api/res/1.2/4Nu73M5iNLMWo5aSWwy4Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29077.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 18 + 0 + + + + 380.p.24908 + 24908 + + Chris Prosinski + Chris + Prosinski + Chris + Prosinski + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24908 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/Id1lvVA7jrWt1h1xBWnt6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24908.png + small + + https://s.yimg.com/iu/api/res/1.2/Id1lvVA7jrWt1h1xBWnt6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24908.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 12 + 0 + + + + 380.p.26871 + 26871 + + Daimion Stafford + Daimion + Stafford + Daimion + Stafford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26871 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/fODtGpnrfoMvancn5Rpi7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26871.png + small + + https://s.yimg.com/iu/api/res/1.2/fODtGpnrfoMvancn5Rpi7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26871.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.7864 + 7864 + + Will Blackmon + Will + Blackmon + Will + Blackmon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7864 + nfl.t.28 + Washington Redskins + Was + + 4 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/xAI_vWDq0M2C2ZXCyWsfDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7864.png + small + + https://s.yimg.com/iu/api/res/1.2/xAI_vWDq0M2C2ZXCyWsfDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7864.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + 380.p.8894 + 8894 + + Quintin Demps + Quintin + Demps + Quintin + Demps + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8894 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/C_5xtgJIrSEaIiDIy_hkOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/8894.png + small + + https://s.yimg.com/iu/api/res/1.2/C_5xtgJIrSEaIiDIy_hkOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/8894.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.23980 + 23980 + + Eric Berry + Eric + Berry + Eric + Berry + + Q + Questionable + nfl.p.23980 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/4j05_jO5oqv6aOT7_FvQuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/23980.png + small + + https://s.yimg.com/iu/api/res/1.2/4j05_jO5oqv6aOT7_FvQuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/23980.png + 0 + DP + + S + + 1 + 1 + + - + - + - + - + + + week + 1 + 21 + 0 + + + + 380.p.26978 + 26978 + + Steven Terrell + Steven + Terrell + Steven + Terrell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26978 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/vlNtgYCVAHETSK8GfRCTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26978.png + small + + https://s.yimg.com/iu/api/res/1.2/vlNtgYCVAHETSK8GfRCTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26978.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.29286 + 29286 + + Su'a Cravens + Su'a + Cravens + Su'a + Cravens + + IR + Injured Reserve + undisclosed + nfl.p.29286 + nfl.t.7 + Denver Broncos + Den + + 10 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/yxHVwXDzi1Jn_AOQe5TSLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29286.png + small + + https://s.yimg.com/iu/api/res/1.2/yxHVwXDzi1Jn_AOQe5TSLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29286.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.26873 + 26873 + + Don Jones + Don + Jones + Don + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26873 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/FUu5B_eEcW3O2pf58qiTcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26873.png + small + + https://s.yimg.com/iu/api/res/1.2/FUu5B_eEcW3O2pf58qiTcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26873.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.24112 + 24112 + + Kendrick Lewis + Kendrick + Lewis + Kendrick + Lewis + + nfl.p.24112 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 28 + S + + https://s.yimg.com/iu/api/res/1.2/EE627cbmfqEmpma4beaIEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24112.png + small + + https://s.yimg.com/iu/api/res/1.2/EE627cbmfqEmpma4beaIEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24112.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.27000 + 27000 + + Jordan Dangerfield + Jordan + Dangerfield + Jordan + Dangerfield + + nfl.p.27000 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/e08SnzD9sFbbqPzMY1xzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27000.png + small + + https://s.yimg.com/iu/api/res/1.2/e08SnzD9sFbbqPzMY1xzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27000.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.26288 + 26288 + + Kelcie McCray + Kelcie + McCray + Kelcie + McCray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26288 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/b9HuyGdrj1y9PkD9xipY6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26288.png + small + + https://s.yimg.com/iu/api/res/1.2/b9HuyGdrj1y9PkD9xipY6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26288.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.29653 + 29653 + + Sharrod Neasman + Sharrod + Neasman + Sharrod + Neasman + + Q + Questionable + undisclosed + nfl.p.29653 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 28 + DB,S + + https://s.yimg.com/iu/api/res/1.2/iOTEdOU1SPKXmPRJrOdkcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29653.png + small + + https://s.yimg.com/iu/api/res/1.2/iOTEdOU1SPKXmPRJrOdkcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29653.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.31024 + 31024 + + Jessie Bates III + Jessie + Bates III + Jessie + Bates III + + nfl.p.31024 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 30 + DB,S + + https://s.yimg.com/iu/api/res/1.2/qA9WgB3IhhFd0R39yLL4QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31024.png + small + + https://s.yimg.com/iu/api/res/1.2/qA9WgB3IhhFd0R39yLL4QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31024.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.30824 + 30824 + + Orion Stewart + Orion + Stewart + Orion + Stewart + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30824 + nfl.t.19 + New York Giants + NYG + + 9 + + 45 + DB,S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31122 + 31122 + + Dane Cruikshank + Dane + Cruikshank + Dane + Cruikshank + + nfl.p.31122 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 29 + DB,S + + https://s.yimg.com/iu/api/res/1.2/KoPcXmnH5fIc9dGLzrBPrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31122.png + small + + https://s.yimg.com/iu/api/res/1.2/KoPcXmnH5fIc9dGLzrBPrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31122.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.30631 + 30631 + + Rickey Jefferson + Rickey + Jefferson + Rickey + Jefferson + + IR + Injured Reserve + torn ACL + nfl.p.30631 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.28828 + 28828 + + Damian Parms + Damian + Parms + Damian + Parms + + IR + Injured Reserve + shoulder + nfl.p.28828 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/fWy23w6FPL9wvwPPHnKqMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28828.png + small + + https://s.yimg.com/iu/api/res/1.2/fWy23w6FPL9wvwPPHnKqMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28828.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31359 + 31359 + + Chris Lammons + Chris + Lammons + Chris + Lammons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31359 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31038 + 31038 + + Justin Reid + Justin + Reid + Justin + Reid + + nfl.p.31038 + nfl.t.34 + Houston Texans + Hou + + 10 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/E3k6UyWicJRfLX6G1hef0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31038.png + small + + https://s.yimg.com/iu/api/res/1.2/E3k6UyWicJRfLX6G1hef0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31038.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31258 + 31258 + + Godwin Igwebuike + Godwin + Igwebuike + Godwin + Igwebuike + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31258 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28830 + 28830 + + Robenson Therezie + Robenson + Therezie + Robenson + Therezie + + IR + Injured Reserve + undisclosed + nfl.p.28830 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/W0ySvJyVOSGrr14pbdgy_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28830.png + small + + https://s.yimg.com/iu/api/res/1.2/W0ySvJyVOSGrr14pbdgy_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28830.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31713 + 31713 + + Tyrin Holloway + Tyrin + Holloway + Tyrin + Holloway + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31713 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28532 + 28532 + + Mykkele Thompson + Mykkele + Thompson + Mykkele + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28532 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 28 + S + + https://s.yimg.com/iu/api/res/1.2/ca4vaxCZkVOzX33ltuU4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28532.png + small + + https://s.yimg.com/iu/api/res/1.2/ca4vaxCZkVOzX33ltuU4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28532.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.27596 + 27596 + + Dezmen Southward + Dezmen + Southward + Dezmen + Southward + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27596 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/b9UPX6DDaFnFOYxVU36oSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27596.1.png + small + + https://s.yimg.com/iu/api/res/1.2/b9UPX6DDaFnFOYxVU36oSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27596.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.30461 + 30461 + + Jordan Moore + Jordan + Moore + Jordan + Moore + + IR + Injured Reserve + undisclosed + nfl.p.30461 + nfl.t.7 + Denver Broncos + Den + + 10 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/Jg0qeNqAbVPD.IOO3_pOog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30461.png + small + + https://s.yimg.com/iu/api/res/1.2/Jg0qeNqAbVPD.IOO3_pOog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30461.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31065 + 31065 + + Tarvarius Moore + Tarvarius + Moore + Tarvarius + Moore + + nfl.p.31065 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/wg_ih6mbp1aSQ5XfDq7lng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31065.png + small + + https://s.yimg.com/iu/api/res/1.2/wg_ih6mbp1aSQ5XfDq7lng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31065.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28468 + 28468 + + Alex Carter + Alex + Carter + Alex + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28468 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/BIQz4XAG0AVDFGHghdik6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28468.png + small + + https://s.yimg.com/iu/api/res/1.2/BIQz4XAG0AVDFGHghdik6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28468.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31384 + 31384 + + Corey Griffin + Corey + Griffin + Corey + Griffin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31384 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31737 + 31737 + + Chucky Williams + Chucky + Williams + Chucky + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31737 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30987 + 30987 + + Derwin James + Derwin + James + Derwin + James + + nfl.p.30987 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/5jmzC6TvOgR405uBJham6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30987.png + small + + https://s.yimg.com/iu/api/res/1.2/5jmzC6TvOgR405uBJham6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30987.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 16 + 0 + + + + 380.p.25091 + 25091 + + Jeron Johnson + Jeron + Johnson + Jeron + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25091 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/Q.7Qox9_KGGYY31DJWHF.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/25091.png + small + + https://s.yimg.com/iu/api/res/1.2/Q.7Qox9_KGGYY31DJWHF.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/25091.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30690 + 30690 + + Chanceller James + Chanceller + James + Chanceller + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30690 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/_qtC.7x2VRt7W3lfi1HnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30690.png + small + + https://s.yimg.com/iu/api/res/1.2/_qtC.7x2VRt7W3lfi1HnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30690.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30838 + 30838 + + Tyson Graham + Tyson + Graham + Tyson + Graham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30838 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31433 + 31433 + + Raven Greene + Raven + Greene + Raven + Greene + + nfl.p.31433 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31562 + 31562 + + Trayvon Henderson + Trayvon + Henderson + Trayvon + Henderson + + IR + Injured Reserve + knee + nfl.p.31562 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31723 + 31723 + + Dallin Leavitt + Dallin + Leavitt + Dallin + Leavitt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31723 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30998 + 30998 + + Terrell Edmunds + Terrell + Edmunds + Terrell + Edmunds + + nfl.p.30998 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/DlPODbDenUpX5QIXE2UVCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30998.png + small + + https://s.yimg.com/iu/api/res/1.2/DlPODbDenUpX5QIXE2UVCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30998.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28153 + 28153 + + Kenny Ladler + Kenny + Ladler + Kenny + Ladler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28153 + nfl.t.28 + Washington Redskins + Was + + 4 + + 48 + S + + https://s.yimg.com/iu/api/res/1.2/QpLe1bTynLJJ8.RH4V7aaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/28153.png + small + + https://s.yimg.com/iu/api/res/1.2/QpLe1bTynLJJ8.RH4V7aaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/28153.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28636 + 28636 + + Ryan Murphy + Ryan + Murphy + Ryan + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28636 + nfl.t.19 + New York Giants + NYG + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/X4YAk9FNgR2MFuErpL31lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28636.png + small + + https://s.yimg.com/iu/api/res/1.2/X4YAk9FNgR2MFuErpL31lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28636.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31548 + 31548 + + Sean Chandler + Sean + Chandler + Sean + Chandler + + nfl.p.31548 + nfl.t.19 + New York Giants + NYG + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30358 + 30358 + + Jack Tocho + Jack + Tocho + Jack + Tocho + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30358 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29933 + 29933 + + Rolan Milligan + Rolan + Milligan + Rolan + Milligan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29933 + nfl.t.8 + Detroit Lions + Det + + 6 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/YM3uJ.2X_R45RkncXo7MLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29933.png + small + + https://s.yimg.com/iu/api/res/1.2/YM3uJ.2X_R45RkncXo7MLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29933.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30673 + 30673 + + Damarius Travis + Damarius + Travis + Damarius + Travis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30673 + nfl.t.17 + New England Patriots + NE + + 11 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/sZsGua7j.lMZLHKQJ2EayA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30673.png + small + + https://s.yimg.com/iu/api/res/1.2/sZsGua7j.lMZLHKQJ2EayA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30673.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30825 + 30825 + + Dymonte Thomas + Dymonte + Thomas + Dymonte + Thomas + + nfl.p.30825 + nfl.t.7 + Denver Broncos + Den + + 10 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30807 + 30807 + + T.J. Mutcherson + T.J. + Mutcherson + T.J. + Mutcherson + + IR + Injured Reserve + undisclosed + nfl.p.30807 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31733 + 31733 + + Steven Parker + Steven + Parker + Steven + Parker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31733 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31582 + 31582 + + Jeremy Reaves + Jeremy + Reaves + Jeremy + Reaves + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31582 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31237 + 31237 + + Tray Matthews + Tray + Matthews + Tray + Matthews + + IR + Injured Reserve + nfl.p.31237 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30750 + 30750 + + Denzel Johnson + Denzel + Johnson + Denzel + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30750 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31587 + 31587 + + Dominick Sanders + Dominick + Sanders + Dominick + Sanders + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31587 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31273 + 31273 + + C.J. Reavis + C.J. + Reavis + C.J. + Reavis + + Q + Questionable + nfl.p.31273 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30687 + 30687 + + Jordan Sterns + Jordan + Sterns + Jordan + Sterns + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30687 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31154 + 31154 + + Marcell Harris + Marcell + Harris + Marcell + Harris + + IR + Injured Reserve + Achilles + nfl.p.31154 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 49 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30331 + 30331 + + Leon McQuay III + Leon + McQuay III + Leon + McQuay III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30331 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/ELCSZJ94uRk_hK6KeUH8pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30331.png + small + + https://s.yimg.com/iu/api/res/1.2/ELCSZJ94uRk_hK6KeUH8pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30331.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29829 + 29829 + + A.J. Hendy + A.J. + Hendy + A.J. + Hendy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29829 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/XaZLyMVbp1_uUUVeeqeSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29829.1.png + small + + https://s.yimg.com/iu/api/res/1.2/XaZLyMVbp1_uUUVeeqeSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29829.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31296 + 31296 + + Tyree Robinson + Tyree + Robinson + Tyree + Robinson + + nfl.p.31296 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30169 + 30169 + + Obi Melifonwu + Obi + Melifonwu + Obi + Melifonwu + + IR + Injured Reserve + nfl.p.30169 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/doveszM9UUK4RIGB.XlIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30169.png + small + + https://s.yimg.com/iu/api/res/1.2/doveszM9UUK4RIGB.XlIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30169.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31306 + 31306 + + A.J. Howard + A.J. + Howard + A.J. + Howard + + undisclosed + nfl.p.31306 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31160 + 31160 + + DeShon Elliott + DeShon + Elliott + DeShon + Elliott + + IR + Injured Reserve + undisclosed + nfl.p.31160 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31052 + 31052 + + Tracy Walker + Tracy + Walker + Tracy + Walker + + nfl.p.31052 + nfl.t.8 + Detroit Lions + Det + + 6 + + 47 + S + + https://s.yimg.com/iu/api/res/1.2/ZmMsfngpLdTDpGKo6ARSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31052.png + small + + https://s.yimg.com/iu/api/res/1.2/ZmMsfngpLdTDpGKo6ARSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31052.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29833 + 29833 + + Tyvis Powell + Tyvis + Powell + Tyvis + Powell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29833 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/ZVH6FWmF_I_zh3wNQin97w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29833.png + small + + https://s.yimg.com/iu/api/res/1.2/ZVH6FWmF_I_zh3wNQin97w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29833.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31644 + 31644 + + Anthony Sherrils + Anthony + Sherrils + Anthony + Sherrils + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31644 + nfl.t.8 + Detroit Lions + Det + + 6 + + + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31318 + 31318 + + Jonathan Owens + Jonathan + Owens + Jonathan + Owens + + IR + Injured Reserve + undisclosed + nfl.p.31318 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30578 + 30578 + + Demetrious Cox + Demetrious + Cox + Demetrious + Cox + + PUP-P + Physically Unable to Perform (Preseason) + nfl.p.30578 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28492 + 28492 + + James Sample + James + Sample + James + Sample + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28492 + nfl.t.28 + Washington Redskins + Was + + 4 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/qEugH2TrA7GpBpBfs8bzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28492.1.png + small + + https://s.yimg.com/iu/api/res/1.2/qEugH2TrA7GpBpBfs8bzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28492.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31395 + 31395 + + Quin Blanding + Quin + Blanding + Quin + Blanding + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31395 + nfl.t.28 + Washington Redskins + Was + + 4 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30713 + 30713 + + Tre Sullivan + Tre + Sullivan + Tre + Sullivan + + nfl.p.30713 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31652 + 31652 + + A.J. Moore Jr. + A.J. + Moore Jr. + A.J. + Moore Jr. + + nfl.p.31652 + nfl.t.34 + Houston Texans + Hou + + 10 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29604 + 29604 + + Stefan McClure + Stefan + McClure + Stefan + McClure + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29604 + nfl.t.8 + Detroit Lions + Det + + 6 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/wHfJxd1nhXyc4kpQHZ_o3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29604.1.png + small + + https://s.yimg.com/iu/api/res/1.2/wHfJxd1nhXyc4kpQHZ_o3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29604.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31079 + 31079 + + Troy Apke + Troy + Apke + Troy + Apke + + nfl.p.31079 + nfl.t.28 + Washington Redskins + Was + + 4 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/QDnorUzoHYqAXs0hpfJxuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31079.png + small + + https://s.yimg.com/iu/api/res/1.2/QDnorUzoHYqAXs0hpfJxuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31079.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30447 + 30447 + + Marcelis Branch + Marcelis + Branch + Marcelis + Branch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30447 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/uMk5R5kGKU0c96MvJvZMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30447.png + small + + https://s.yimg.com/iu/api/res/1.2/uMk5R5kGKU0c96MvJvZMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30447.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26922 + 26922 + + Marcus Cromartie + Marcus + Cromartie + Marcus + Cromartie + + IR + Injured Reserve + undisclosed + nfl.p.26922 + nfl.t.8 + Detroit Lions + Det + + 6 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/uK8cVQ5l_H8yCwM5fHsD2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26922.png + small + + https://s.yimg.com/iu/api/res/1.2/uK8cVQ5l_H8yCwM5fHsD2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26922.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31754 + 31754 + + Nate Holley + Nate + Holley + Nate + Holley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31754 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30557 + 30557 + + Malik Golden + Malik + Golden + Malik + Golden + + IR + Injured Reserve + undisclosed + nfl.p.30557 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31087 + 31087 + + Jordan Whitehead + Jordan + Whitehead + Jordan + Whitehead + + nfl.p.31087 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/JV47yqX3ezwzfRYLWqdI8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31087.png + small + + https://s.yimg.com/iu/api/res/1.2/JV47yqX3ezwzfRYLWqdI8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31087.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9596 + 9596 + + Colt Anderson + Colt + Anderson + Colt + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9596 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/L5UgESv5GgjewSMSIMpUKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9596.1.png + small + + https://s.yimg.com/iu/api/res/1.2/L5UgESv5GgjewSMSIMpUKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9596.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31363 + 31363 + + Tigie Sankoh + Tigie + Sankoh + Tigie + Sankoh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31363 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30652 + 30652 + + Maurice Smith + Maurice + Smith + Maurice + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30652 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28732 + 28732 + + Dean Marlowe + Dean + Marlowe + Dean + Marlowe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28732 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/k5_UnZpP40He8PsyUGvtKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28732.png + small + + https://s.yimg.com/iu/api/res/1.2/k5_UnZpP40He8PsyUGvtKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28732.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28712 + 28712 + + Ronald Martin + Ronald + Martin + Ronald + Martin + + IR + Injured Reserve + nfl.p.28712 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/6.z.lICL5y5a__B22ewpGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28712.1.png + small + + https://s.yimg.com/iu/api/res/1.2/6.z.lICL5y5a__B22ewpGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28712.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31333 + 31333 + + Terrell Williams + Terrell + Williams + Terrell + Williams + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31333 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 6 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31763 + 31763 + + Brandon Bryant + Brandon + Bryant + Brandon + Bryant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31763 + nfl.t.20 + New York Jets + NYJ + + 11 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29022 + 29022 + + Jameill Showers + Jameill + Showers + Jameill + Showers + + IR + Injured Reserve + torn ACL + nfl.p.29022 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 28 + S + + https://s.yimg.com/iu/api/res/1.2/bh8GYjH9XS5WA7Jgcp2Csw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29022.png + small + + https://s.yimg.com/iu/api/res/1.2/bh8GYjH9XS5WA7Jgcp2Csw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29022.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31729 + 31729 + + Michael Cirino + Michael + Cirino + Michael + Cirino + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31729 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28148 + 28148 + + L.J. McCray + L.J. + McCray + L.J. + McCray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28148 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/GqPdHaPzX6Gz3diz9MFtHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28148.png + small + + https://s.yimg.com/iu/api/res/1.2/GqPdHaPzX6Gz3diz9MFtHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28148.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31118 + 31118 + + Marcus Allen + Marcus + Allen + Marcus + Allen + + nfl.p.31118 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/NZlkfCCoWng3u0VSwiSZtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31118.png + small + + https://s.yimg.com/iu/api/res/1.2/NZlkfCCoWng3u0VSwiSZtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31118.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30663 + 30663 + + David Jones + David + Jones + David + Jones + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30663 + nfl.t.17 + New England Patriots + NE + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/AkjtdTJ32DvdzrbtHlGwJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30663.png + small + + https://s.yimg.com/iu/api/res/1.2/AkjtdTJ32DvdzrbtHlGwJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30663.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29577 + 29577 + + Isaiah Johnson + Isaiah + Johnson + Isaiah + Johnson + + nfl.p.29577 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/sf2wjj7MOQ3MHzOFs2cmgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29577.png + small + + https://s.yimg.com/iu/api/res/1.2/sf2wjj7MOQ3MHzOFs2cmgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29577.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31094 + 31094 + + Armani Watts + Armani + Watts + Armani + Watts + + nfl.p.31094 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/8tF9zEZ9KtTNPbXru5VKdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31094.png + small + + https://s.yimg.com/iu/api/res/1.2/8tF9zEZ9KtTNPbXru5VKdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31094.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31731 + 31731 + + Afolabi Laguda + Afolabi + Laguda + Afolabi + Laguda + + IR + Injured Reserve + undisclosed + nfl.p.31731 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31367 + 31367 + + Chris Cooper + Chris + Cooper + Chris + Cooper + + IR + Injured Reserve + undisclosed + nfl.p.31367 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31611 + 31611 + + Damon Webb + Damon + Webb + Damon + Webb + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31611 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29439 + 29439 + + Harlan Miller + Harlan + Miller + Harlan + Miller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29439 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/px3f0OOlp55NmJDM8n1y3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29439.png + small + + https://s.yimg.com/iu/api/res/1.2/px3f0OOlp55NmJDM8n1y3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29439.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31324 + 31324 + + Zeke Turner + Zeke + Turner + Zeke + Turner + + nfl.p.31324 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 47 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29079 + 29079 + + Travell Dixon + Travell + Dixon + Travell + Dixon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29079 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/I.Ags5OZuYY2ZWXIvwx0rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29079.png + small + + https://s.yimg.com/iu/api/res/1.2/I.Ags5OZuYY2ZWXIvwx0rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29079.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28879 + 28879 + + Isaiah Johnson + Isaiah + Johnson + Isaiah + Johnson + + nfl.p.28879 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/v2xJsT4Z4a4YyGztJoI8ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28879.png + small + + https://s.yimg.com/iu/api/res/1.2/v2xJsT4Z4a4YyGztJoI8ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28879.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31576 + 31576 + + Ryan Neal + Ryan + Neal + Ryan + Neal + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31576 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31585 + 31585 + + Stephen Roberts + Stephen + Roberts + Stephen + Roberts + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31585 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30678 + 30678 + + Devin Chappell + Devin + Chappell + Devin + Chappell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30678 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31455 + 31455 + + Micah Hannemann + Micah + Hannemann + Micah + Hannemann + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31455 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31063 + 31063 + + Ronnie Harrison + Ronnie + Harrison + Ronnie + Harrison + + nfl.p.31063 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/bSetFbvHnOmUENzYZaz7lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31063.png + small + + https://s.yimg.com/iu/api/res/1.2/bSetFbvHnOmUENzYZaz7lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31063.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30404 + 30404 + + Charlie Miller + Charlie + Miller + Charlie + Miller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30404 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30485 + 30485 + + Ironhead Gallon + Ironhead + Gallon + Ironhead + Gallon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30485 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/GwaVUzrIf6cVbj7ovb7rEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30485.png + small + + https://s.yimg.com/iu/api/res/1.2/GwaVUzrIf6cVbj7ovb7rEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30485.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30508 + 30508 + + Fish Smithson + Fish + Smithson + Fish + Smithson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30508 + nfl.t.28 + Washington Redskins + Was + + 4 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27650 + 27650 + + Marqueston Huff + Marqueston + Huff + Marqueston + Huff + + IR + Injured Reserve + undisclosed + nfl.p.27650 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/.YXt2HFCr5HhZuDe1w_Wzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27650.png + small + + https://s.yimg.com/iu/api/res/1.2/.YXt2HFCr5HhZuDe1w_Wzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27650.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31664 + 31664 + + Nick Orr + Nick + Orr + Nick + Orr + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31664 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29798 + 29798 + + Doug Middleton Jr. + Doug + Middleton Jr. + Doug + Middleton Jr. + + nfl.p.29798 + nfl.t.20 + New York Jets + NYJ + + 11 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/YR87PPQWqdh90qk2t6qsIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29798.1.png + small + + https://s.yimg.com/iu/api/res/1.2/YR87PPQWqdh90qk2t6qsIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29798.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30320 + 30320 + + Brandon Wilson + Brandon + Wilson + Brandon + Wilson + + nfl.p.30320 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31259 + 31259 + + Josh Liddell + Josh + Liddell + Josh + Liddell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31259 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27710 + 27710 + + Antone Exum Jr. + Antone + Exum Jr. + Antone + Exum Jr. + + nfl.p.27710 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/23D2w.Xte8h1f1ShhJq8cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27710.png + small + + https://s.yimg.com/iu/api/res/1.2/23D2w.Xte8h1f1ShhJq8cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27710.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31381 + 31381 + + Trey Marshall + Trey + Marshall + Trey + Marshall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31381 + nfl.t.7 + Denver Broncos + Den + + 10 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31693 + 31693 + + Tyrice Beverette + Tyrice + Beverette + Tyrice + Beverette + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31693 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.6767 + 6767 + + DeAngelo Hall + DeAngelo + Hall + DeAngelo + Hall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6767 + nfl.t.28 + Washington Redskins + Was + + 4 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/23sr6BDpt2hT.ElhbFZuIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/6767.png + small + + https://s.yimg.com/iu/api/res/1.2/23sr6BDpt2hT.ElhbFZuIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/6767.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31373 + 31373 + + George Odum + George + Odum + George + Odum + + nfl.p.31373 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31360 + 31360 + + Secdrick Cooper + Secdrick + Cooper + Secdrick + Cooper + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31360 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30460 + 30460 + + Quincy Mauger + Quincy + Mauger + Quincy + Mauger + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30460 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/iQG.9HYPJNneXvtD8UXsNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30460.png + small + + https://s.yimg.com/iu/api/res/1.2/iQG.9HYPJNneXvtD8UXsNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30460.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30981 + 30981 + + Minkah Fitzpatrick + Minkah + Fitzpatrick + Minkah + Fitzpatrick + + nfl.p.30981 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/dgPck9Y64.tvDLnJc6qd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30981.png + small + + https://s.yimg.com/iu/api/res/1.2/dgPck9Y64.tvDLnJc6qd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30981.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30961 + 30961 + + Kacy Rodgers II + Kacy + Rodgers II + Kacy + Rodgers II + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30961 + nfl.t.20 + New York Jets + NYJ + + 11 + + 39 + LB,S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 1 + 14 + 0 + + + + 380.p.31089 + 31089 + + Kyzir White + Kyzir + White + Kyzir + White + + nfl.p.31089 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 44 + LB,S + + https://s.yimg.com/iu/api/res/1.2/XjhB6M3GXZsoPINtk9cEJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31089.png + small + + https://s.yimg.com/iu/api/res/1.2/XjhB6M3GXZsoPINtk9cEJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31089.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31469 + 31469 + + Jason Hall + Jason + Hall + Jason + Hall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31469 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 46 + LB,S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.28870 + 28870 + + Justin Currie + Justin + Currie + Justin + Currie + + IR + Injured Reserve + undisclosed + nfl.p.28870 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 42 + LB,S + + https://s.yimg.com/iu/api/res/1.2/JS52HtPgNiYln8qCtsWWkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28870.png + small + + https://s.yimg.com/iu/api/res/1.2/JS52HtPgNiYln8qCtsWWkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28870.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + 380.p.29662 + 29662 + + Dominique Alexander + Dominique + Alexander + Dominique + Alexander + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29662 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/NGMM.XaNMb8RHr0TcEBFjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29662.1.png + small + + https://s.yimg.com/iu/api/res/1.2/NGMM.XaNMb8RHr0TcEBFjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29662.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.29403 + 29403 + + Antwione Williams + Antwione + Williams + Antwione + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29403 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/4jcRSJSnMXle6L8LpwBMCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29403.png + small + + https://s.yimg.com/iu/api/res/1.2/4jcRSJSnMXle6L8LpwBMCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29403.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.7769 + 7769 + + Tamba Hali + Tamba + Hali + Tamba + Hali + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7769 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/AQVO_KLSlcwroiN838j6zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/7769.png + small + + https://s.yimg.com/iu/api/res/1.2/AQVO_KLSlcwroiN838j6zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/7769.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.29424 + 29424 + + Josh Forrest + Josh + Forrest + Josh + Forrest + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29424 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/yOLFFnzwmBIg52F8hjCdRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29424.png + small + + https://s.yimg.com/iu/api/res/1.2/yOLFFnzwmBIg52F8hjCdRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29424.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.26711 + 26711 + + Corey Lemonier + Corey + Lemonier + Corey + Lemonier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26711 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/KQDeFzoiZ_mhcVJQEZXpAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26711.png + small + + https://s.yimg.com/iu/api/res/1.2/KQDeFzoiZ_mhcVJQEZXpAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26711.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.27770 + 27770 + + Corey Nelson + Corey + Nelson + Corey + Nelson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27770 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/zlnsg1zV3PeXsJeqE6Vwkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27770.1.png + small + + https://s.yimg.com/iu/api/res/1.2/zlnsg1zV3PeXsJeqE6Vwkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27770.1.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.27259 + 27259 + + Brandon Copeland + Brandon + Copeland + Brandon + Copeland + + nfl.p.27259 + nfl.t.20 + New York Jets + NYJ + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/EVtCn2OqIITmKit6MGdxNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27259.png + small + + https://s.yimg.com/iu/api/res/1.2/EVtCn2OqIITmKit6MGdxNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27259.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.29336 + 29336 + + Josh Perry + Josh + Perry + Josh + Perry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29336 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/ZMXtu7ubkjsylLsLsNCq9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29336.png + small + + https://s.yimg.com/iu/api/res/1.2/ZMXtu7ubkjsylLsLsNCq9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29336.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.29456 + 29456 + + Aaron Wallace + Aaron + Wallace + Aaron + Wallace + + nfl.p.29456 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/VOryOTbH.vkJWuB9VHuywQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29456.png + small + + https://s.yimg.com/iu/api/res/1.2/VOryOTbH.vkJWuB9VHuywQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29456.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.27813 + 27813 + + Howard Jones + Howard + Jones + Howard + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27813 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/kUc71H3niUx05UMy5xYGIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27813.png + small + + https://s.yimg.com/iu/api/res/1.2/kUc71H3niUx05UMy5xYGIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27813.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28470 + 28470 + + Lorenzo Mauldin + Lorenzo + Mauldin + Lorenzo + Mauldin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28470 + nfl.t.20 + New York Jets + NYJ + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/iIXZ84botMmBrJeYp4BWjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28470.1.png + small + + https://s.yimg.com/iu/api/res/1.2/iIXZ84botMmBrJeYp4BWjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28470.1.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.29501 + 29501 + + Jeremy Cash + Jeremy + Cash + Jeremy + Cash + + IR + Injured Reserve + undisclosed + nfl.p.29501 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/MTcZ0ez0RESe0S.ggG.MiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29501.png + small + + https://s.yimg.com/iu/api/res/1.2/MTcZ0ez0RESe0S.ggG.MiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29501.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28075 + 28075 + + Jayrone Elliott + Jayrone + Elliott + Jayrone + Elliott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28075 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/iKIiR_UvePhiAXPwW9rrYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28075.png + small + + https://s.yimg.com/iu/api/res/1.2/iKIiR_UvePhiAXPwW9rrYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28075.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.25509 + 25509 + + Mark Herzlich + Mark + Herzlich + Mark + Herzlich + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25509 + nfl.t.19 + New York Giants + NYG + + 9 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/XoNXXBudMlTX6zwcS117EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25509.png + small + + https://s.yimg.com/iu/api/res/1.2/XoNXXBudMlTX6zwcS117EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25509.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28845 + 28845 + + Thurston Armbrister + Thurston + Armbrister + Thurston + Armbrister + + IR + Injured Reserve + undisclosed + nfl.p.28845 + nfl.t.19 + New York Giants + NYG + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/PNTFwctsb6CPOE7EYuG4bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28845.1.png + small + + https://s.yimg.com/iu/api/res/1.2/PNTFwctsb6CPOE7EYuG4bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28845.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24826 + 24826 + + Akeem Ayers + Akeem + Ayers + Akeem + Ayers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24826 + nfl.t.19 + New York Giants + NYG + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/SDggTDRRr5crILk9ZY4gFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/24826.png + small + + https://s.yimg.com/iu/api/res/1.2/SDggTDRRr5crILk9ZY4gFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/24826.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25508 + 25508 + + Spencer Paysinger + Spencer + Paysinger + Spencer + Paysinger + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25508 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/DAYktoSNyfhjdjpqlBUcbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25508.1.png + small + + https://s.yimg.com/iu/api/res/1.2/DAYktoSNyfhjdjpqlBUcbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25508.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24358 + 24358 + + Albert McClellan + Albert + McClellan + Albert + McClellan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24358 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/ed10720C2xJp9Mw2Yu.Xyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24358.png + small + + https://s.yimg.com/iu/api/res/1.2/ed10720C2xJp9Mw2Yu.Xyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24358.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25697 + 25697 + + Jerrell Freeman + Jerrell + Freeman + Jerrell + Freeman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25697 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/WqlxGveV.etPIr2NYqXXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/25697.png + small + + https://s.yimg.com/iu/api/res/1.2/WqlxGveV.etPIr2NYqXXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/25697.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26743 + 26743 + + Gerald Hodges + Gerald + Hodges + Gerald + Hodges + + nfl.p.26743 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/aggY9vDYExUbU_wyeAj8RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26743.png + small + + https://s.yimg.com/iu/api/res/1.2/aggY9vDYExUbU_wyeAj8RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26743.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.28528 + 28528 + + Ben Heeney + Ben + Heeney + Ben + Heeney + + IR + Injured Reserve + undisclosed + nfl.p.28528 + nfl.t.34 + Houston Texans + Hou + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/_l5J_1u4m5iC7OXELaVHig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28528.png + small + + https://s.yimg.com/iu/api/res/1.2/_l5J_1u4m5iC7OXELaVHig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28528.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29098 + 29098 + + Justin March-Lillard + Justin + March-Lillard + Justin + March-Lillard + + nfl.p.29098 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/EySr6y3GgmgRm.fjEn7nZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29098.1.png + small + + https://s.yimg.com/iu/api/res/1.2/EySr6y3GgmgRm.fjEn7nZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29098.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.9601 + 9601 + + Dannell Ellerbe + Dannell + Ellerbe + Dannell + Ellerbe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9601 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/XByQuxtsgeP4gdGhBLmMRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9601.png + small + + https://s.yimg.com/iu/api/res/1.2/XByQuxtsgeP4gdGhBLmMRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9601.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.25736 + 25736 + + Whitney Mercilus + Whitney + Mercilus + Whitney + Mercilus + + nfl.p.25736 + nfl.t.34 + Houston Texans + Hou + + 10 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/2A7rmcB55USpXgGi.jCZXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25736.png + small + + https://s.yimg.com/iu/api/res/1.2/2A7rmcB55USpXgGi.jCZXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25736.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.25940 + 25940 + + Nate Stupar + Nate + Stupar + Nate + Stupar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25940 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/O1_VgML4csWNxeVCJ3wJ.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25940.png + small + + https://s.yimg.com/iu/api/res/1.2/O1_VgML4csWNxeVCJ3wJ.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25940.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28070 + 28070 + + Shayne Skov + Shayne + Skov + Shayne + Skov + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28070 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/.WakHlkK3396gcqb83ULOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28070.png + small + + https://s.yimg.com/iu/api/res/1.2/.WakHlkK3396gcqb83ULOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28070.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27923 + 27923 + + Kasim Edebali + Kasim + Edebali + Kasim + Edebali + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27923 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/t4nOLiSrT3HxUCWRpvh0bA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27923.png + small + + https://s.yimg.com/iu/api/res/1.2/t4nOLiSrT3HxUCWRpvh0bA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27923.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.23994 + 23994 + + Sean Weatherspoon + Sean + Weatherspoon + Sean + Weatherspoon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.23994 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/urnYcuh1w70ShVA9khirxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23994.png + small + + https://s.yimg.com/iu/api/res/1.2/urnYcuh1w70ShVA9khirxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23994.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25029 + 25029 + + Malcolm Smith + Malcolm + Smith + Malcolm + Smith + + nfl.p.25029 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/ZARn_mWSYdEsaG7FJz3ldg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25029.png + small + + https://s.yimg.com/iu/api/res/1.2/ZARn_mWSYdEsaG7FJz3ldg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25029.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.28809 + 28809 + + Gabe Martin + Gabe + Martin + Gabe + Martin + + IR + Injured Reserve + undisclosed + nfl.p.28809 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/4.xFaDcvVvIieymyt.xrrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28809.png + small + + https://s.yimg.com/iu/api/res/1.2/4.xFaDcvVvIieymyt.xrrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28809.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28935 + 28935 + + Neville Hewitt + Neville + Hewitt + Neville + Hewitt + + nfl.p.28935 + nfl.t.20 + New York Jets + NYJ + + 11 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/.B42PAD6pSuPym3uvxeqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28935.1.png + small + + https://s.yimg.com/iu/api/res/1.2/.B42PAD6pSuPym3uvxeqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28935.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26694 + 26694 + + T.J. McDonald + T.J. + McDonald + T.J. + McDonald + + nfl.p.26694 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/KFTvgfj5f2vEeIrR04HorQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26694.png + small + + https://s.yimg.com/iu/api/res/1.2/KFTvgfj5f2vEeIrR04HorQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26694.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25739 + 25739 + + Harrison Smith + Harrison + Smith + Harrison + Smith + + nfl.p.25739 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/ZA8Qo7TwVoRRpYWiOeeUpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25739.png + small + + https://s.yimg.com/iu/api/res/1.2/ZA8Qo7TwVoRRpYWiOeeUpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25739.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 42 + 0 + + + + 380.p.29514 + 29514 + + Jarrod Wilson + Jarrod + Wilson + Jarrod + Wilson + + nfl.p.29514 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/w9gBlUVV0VYivngeKiADCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29514.1.png + small + + https://s.yimg.com/iu/api/res/1.2/w9gBlUVV0VYivngeKiADCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29514.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24109 + 24109 + + Kam Chancellor + Kam + Chancellor + Kam + Chancellor + + PUP-P + Physically Unable to Perform (Preseason) + nfl.p.24109 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/YWxB3gebEf1YkqpGHFSEYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24109.png + small + + https://s.yimg.com/iu/api/res/1.2/YWxB3gebEf1YkqpGHFSEYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24109.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29298 + 29298 + + Kevin Byard + Kevin + Byard + Kevin + Byard + + nfl.p.29298 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/U.2Iy9y95jUvWIBdYsudCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29298.png + small + + https://s.yimg.com/iu/api/res/1.2/U.2Iy9y95jUvWIBdYsudCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29298.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 39 + 0 + + + + 380.p.24677 + 24677 + + Anthony Levine Sr. + Anthony + Levine Sr. + Anthony + Levine Sr. + + nfl.p.24677 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/fZhZV5fCNL1yV4B.g.vOjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24677.png + small + + https://s.yimg.com/iu/api/res/1.2/fZhZV5fCNL1yV4B.g.vOjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24677.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29363 + 29363 + + Derrick Kindred + Derrick + Kindred + Derrick + Kindred + + nfl.p.29363 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/3E1ZE_2YQluaVaGpkZ4mzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29363.1.png + small + + https://s.yimg.com/iu/api/res/1.2/3E1ZE_2YQluaVaGpkZ4mzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29363.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24139 + 24139 + + Reshad Jones + Reshad + Jones + Reshad + Jones + + nfl.p.24139 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/tvQFR3uLft3oyi25NZjbTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24139.png + small + + https://s.yimg.com/iu/api/res/1.2/tvQFR3uLft3oyi25NZjbTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24139.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 57 + 0 + + + + 380.p.29216 + 29216 + + Dexter McCoil + Dexter + McCoil + Dexter + McCoil + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29216 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 14 + S + + https://s.yimg.com/iu/api/res/1.2/sjP7mDGXq6xWWsmOEAHd3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29216.png + small + + https://s.yimg.com/iu/api/res/1.2/sjP7mDGXq6xWWsmOEAHd3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29216.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28838 + 28838 + + Anthony Harris + Anthony + Harris + Anthony + Harris + + nfl.p.28838 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/rKnh_eTKsGSu5_dhmy7aBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28838.png + small + + https://s.yimg.com/iu/api/res/1.2/rKnh_eTKsGSu5_dhmy7aBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28838.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26703 + 26703 + + J.J. Wilcox + J.J. + Wilcox + J.J. + Wilcox + + nfl.p.26703 + nfl.t.20 + New York Jets + NYJ + + 11 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/EGVbwxbFNgNuuO0JOiUlZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26703.png + small + + https://s.yimg.com/iu/api/res/1.2/EGVbwxbFNgNuuO0JOiUlZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26703.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29720 + 29720 + + Kentrell Brice + Kentrell + Brice + Kentrell + Brice + + nfl.p.29720 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/y3yBsRhrlfzUta7j36IpAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29720.png + small + + https://s.yimg.com/iu/api/res/1.2/y3yBsRhrlfzUta7j36IpAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29720.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29292 + 29292 + + Sean Davis + Sean + Davis + Sean + Davis + + nfl.p.29292 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/ti3XDnfx_tHceOu4t8O5dQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29292.png + small + + https://s.yimg.com/iu/api/res/1.2/ti3XDnfx_tHceOu4t8O5dQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29292.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 12 + 0 + + + + 380.p.28785 + 28785 + + Deshazor Everett + Deshazor + Everett + Deshazor + Everett + + nfl.p.28785 + nfl.t.28 + Washington Redskins + Was + + 4 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/KYl.cVKj2wxujWSvSRyGjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28785.png + small + + https://s.yimg.com/iu/api/res/1.2/KYl.cVKj2wxujWSvSRyGjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28785.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29453 + 29453 + + Will Parks + Will + Parks + Will + Parks + + Q + Questionable + nfl.p.29453 + nfl.t.7 + Denver Broncos + Den + + 10 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/21Mwaj1Ym41S0L1YXpzJcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29453.1.png + small + + https://s.yimg.com/iu/api/res/1.2/21Mwaj1Ym41S0L1YXpzJcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29453.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28036 + 28036 + + Daniel Sorensen + Daniel + Sorensen + Daniel + Sorensen + + IR + Injured Reserve + undisclosed + nfl.p.28036 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 49 + S + + https://s.yimg.com/iu/api/res/1.2/s7MhfQvNzto8gs4YHrlV4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28036.1.png + small + + https://s.yimg.com/iu/api/res/1.2/s7MhfQvNzto8gs4YHrlV4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28036.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26356 + 26356 + + Rodney McLeod + Rodney + McLeod + Rodney + McLeod + + nfl.p.26356 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/5C1dpMUZbAttbki8qRlnuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26356.png + small + + https://s.yimg.com/iu/api/res/1.2/5C1dpMUZbAttbki8qRlnuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26356.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26680 + 26680 + + D.J. Swearinger + D.J. + Swearinger + D.J. + Swearinger + + nfl.p.26680 + nfl.t.28 + Washington Redskins + Was + + 4 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/2Ji.wanv1PEaQRjz_eFuXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26680.png + small + + https://s.yimg.com/iu/api/res/1.2/2Ji.wanv1PEaQRjz_eFuXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26680.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.27558 + 27558 + + Jimmie Ward + Jimmie + Ward + Jimmie + Ward + + Q + Questionable + nfl.p.27558 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/z0YnKw30RY2CNW.QBiqvmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27558.png + small + + https://s.yimg.com/iu/api/res/1.2/z0YnKw30RY2CNW.QBiqvmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27558.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29952 + 29952 + + Marwin Evans + Marwin + Evans + Marwin + Evans + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29952 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/cqtQGN8jRY7hiAbcOWk77Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29952.png + small + + https://s.yimg.com/iu/api/res/1.2/cqtQGN8jRY7hiAbcOWk77Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29952.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9352 + 9352 + + Lardarius Webb + Lardarius + Webb + Lardarius + Webb + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9352 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/sk7HEBf.pbl3dVaLwGsSXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9352.png + small + + https://s.yimg.com/iu/api/res/1.2/sk7HEBf.pbl3dVaLwGsSXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9352.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25884 + 25884 + + Keith Tandy + Keith + Tandy + Keith + Tandy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25884 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/aRhxWaik4.HUJ0C5Y2khfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25884.png + small + + https://s.yimg.com/iu/api/res/1.2/aRhxWaik4.HUJ0C5Y2khfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25884.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26734 + 26734 + + Shamarko Thomas + Shamarko + Thomas + Shamarko + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26734 + nfl.t.7 + Denver Broncos + Den + + 10 + + 47 + S + + https://s.yimg.com/iu/api/res/1.2/nx6Xf2DXOZLfFpd640wDCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26734.png + small + + https://s.yimg.com/iu/api/res/1.2/nx6Xf2DXOZLfFpd640wDCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26734.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29251 + 29251 + + Keanu Neal + Keanu + Neal + Keanu + Neal + + nfl.p.29251 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/mswQqZJA3cm20OjlOdkzXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29251.png + small + + https://s.yimg.com/iu/api/res/1.2/mswQqZJA3cm20OjlOdkzXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29251.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 50 + 0 + + + + 380.p.28434 + 28434 + + Jaquiski Tartt + Jaquiski + Tartt + Jaquiski + Tartt + + nfl.p.28434 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/wGXdjQaE8PgRvoeRv5FIcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28434.png + small + + https://s.yimg.com/iu/api/res/1.2/wGXdjQaE8PgRvoeRv5FIcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28434.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.27675 + 27675 + + Ricardo Allen + Ricardo + Allen + Ricardo + Allen + + nfl.p.27675 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/dJqZe4LJKbRGt6Sqd.3iSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27675.png + small + + https://s.yimg.com/iu/api/res/1.2/dJqZe4LJKbRGt6Sqd.3iSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27675.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24326 + 24326 + + Chris Maragos + Chris + Maragos + Chris + Maragos + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.24326 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/Pr.YLqEDdbr1dzmGDlY4Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24326.png + small + + https://s.yimg.com/iu/api/res/1.2/Pr.YLqEDdbr1dzmGDlY4Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24326.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26372 + 26372 + + Tashaun Gipson + Tashaun + Gipson + Tashaun + Gipson + + nfl.p.26372 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/EE6iWynQ5EzTZ_pt9A0Acw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26372.1.png + small + + https://s.yimg.com/iu/api/res/1.2/EE6iWynQ5EzTZ_pt9A0Acw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26372.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25090 + 25090 + + Ron Parker + Ron + Parker + Ron + Parker + + nfl.p.25090 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/Ye_l8imspHuH0Eu3BSmbOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25090.1.png + small + + https://s.yimg.com/iu/api/res/1.2/Ye_l8imspHuH0Eu3BSmbOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25090.1.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26917 + 26917 + + Jahleel Addae + Jahleel + Addae + Jahleel + Addae + + nfl.p.26917 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/suwoasbuOI03olSyuYq3uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26917.png + small + + https://s.yimg.com/iu/api/res/1.2/suwoasbuOI03olSyuYq3uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26917.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.9311 + 9311 + + Mike Mitchell + Mike + Mitchell + Mike + Mitchell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9311 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/b63zpUCEjyNmcB2cm28QLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9311.png + small + + https://s.yimg.com/iu/api/res/1.2/b63zpUCEjyNmcB2cm28QLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9311.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24887 + 24887 + + Da'Norris Searcy + Da'Norris + Searcy + Da'Norris + Searcy + + nfl.p.24887 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/SuRoTd9yqIi5pOGM4VKpbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24887.png + small + + https://s.yimg.com/iu/api/res/1.2/SuRoTd9yqIi5pOGM4VKpbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24887.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7121 + 7121 + + Mike Adams + Mike + Adams + Mike + Adams + + nfl.p.7121 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/KqFVzWLcSmq7ZD0wYAVzbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7121.png + small + + https://s.yimg.com/iu/api/res/1.2/KqFVzWLcSmq7ZD0wYAVzbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7121.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29446 + 29446 + + Kavon Frazier + Kavon + Frazier + Kavon + Frazier + + Q + Questionable + nfl.p.29446 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/v8qmq2earicsj_ofipwMdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29446.png + small + + https://s.yimg.com/iu/api/res/1.2/v8qmq2earicsj_ofipwMdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29446.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26782 + 26782 + + Micah Hyde + Micah + Hyde + Micah + Hyde + + nfl.p.26782 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/L69TRYUMNbQf0O33eheaDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26782.png + small + + https://s.yimg.com/iu/api/res/1.2/L69TRYUMNbQf0O33eheaDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26782.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.29086 + 29086 + + Corey Moore + Corey + Moore + Corey + Moore + + nfl.p.29086 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/g.GPKQsQqLqEJAvC7QS5.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29086.png + small + + https://s.yimg.com/iu/api/res/1.2/g.GPKQsQqLqEJAvC7QS5.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29086.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27744 + 27744 + + Andre Hal + Andre + Hal + Andre + Hal + + O + Out + nfl.p.27744 + nfl.t.34 + Houston Texans + Hou + + 10 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/qxmJKMbCiP25DSzhp0cwbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27744.png + small + + https://s.yimg.com/iu/api/res/1.2/qxmJKMbCiP25DSzhp0cwbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27744.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24259 + 24259 + + Rafael Bush + Rafael + Bush + Rafael + Bush + + nfl.p.24259 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/APPcuoiZmh_h87soqOWEsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24259.png + small + + https://s.yimg.com/iu/api/res/1.2/APPcuoiZmh_h87soqOWEsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24259.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9305 + 9305 + + Darius Butler + Darius + Butler + Darius + Butler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9305 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/AjK14_8rt7MpuhabRJ1c_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/9305.png + small + + https://s.yimg.com/iu/api/res/1.2/AjK14_8rt7MpuhabRJ1c_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/9305.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8877 + 8877 + + Tyvon Branch + Tyvon + Branch + Tyvon + Branch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8877 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/5p4m_brpgwzGmVESs.5y9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8877.png + small + + https://s.yimg.com/iu/api/res/1.2/5p4m_brpgwzGmVESs.5y9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8877.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27180 + 27180 + + Bradley McDougald + Bradley + McDougald + Bradley + McDougald + + Q + Questionable + nfl.p.27180 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/bAUbpw9eE8Q4MgP_8o4cHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27180.png + small + + https://s.yimg.com/iu/api/res/1.2/bAUbpw9eE8Q4MgP_8o4cHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27180.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28530 + 28530 + + Adrian Amos + Adrian + Amos + Adrian + Amos + + nfl.p.28530 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/a.j6TaAC1spHWRU7BTP59g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28530.png + small + + https://s.yimg.com/iu/api/res/1.2/a.j6TaAC1spHWRU7BTP59g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28530.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28497 + 28497 + + Clayton Geathers + Clayton + Geathers + Clayton + Geathers + + nfl.p.28497 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/x0OPLac.3N_avZyCyZGNiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28497.1.png + small + + https://s.yimg.com/iu/api/res/1.2/x0OPLac.3N_avZyCyZGNiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28497.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25758 + 25758 + + Tavon Wilson + Tavon + Wilson + Tavon + Wilson + + nfl.p.25758 + nfl.t.8 + Detroit Lions + Det + + 6 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/Lcia5dOEYnQawZjURfhm2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25758.png + small + + https://s.yimg.com/iu/api/res/1.2/Lcia5dOEYnQawZjURfhm2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25758.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.24880 + 24880 + + Chris Conte + Chris + Conte + Chris + Conte + + nfl.p.24880 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/6VSrcaNMNmaQfpED0Oq8Nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24880.png + small + + https://s.yimg.com/iu/api/res/1.2/6VSrcaNMNmaQfpED0Oq8Nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24880.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26866 + 26866 + + Kemal Ishmael + Kemal + Ishmael + Kemal + Ishmael + + nfl.p.26866 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/DyHzNodFvjM4UEC1YuTsbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26866.png + small + + https://s.yimg.com/iu/api/res/1.2/DyHzNodFvjM4UEC1YuTsbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26866.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8422 + 8422 + + Corey Graham + Corey + Graham + Corey + Graham + + nfl.p.8422 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/WsF01Xmmba_0bNgu38aKYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8422.1.png + small + + https://s.yimg.com/iu/api/res/1.2/WsF01Xmmba_0bNgu38aKYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8422.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24046 + 24046 + + Morgan Burnett + Morgan + Burnett + Morgan + Burnett + + nfl.p.24046 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/mJSP5GkJZenr5S0ehwMOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24046.png + small + + https://s.yimg.com/iu/api/res/1.2/mJSP5GkJZenr5S0ehwMOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24046.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.29248 + 29248 + + Karl Joseph + Karl + Joseph + Karl + Joseph + + nfl.p.29248 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/eCZDiQ7eW7oYgyJAmILyvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29248.png + small + + https://s.yimg.com/iu/api/res/1.2/eCZDiQ7eW7oYgyJAmILyvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29248.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.28421 + 28421 + + Landon Collins + Landon + Collins + Landon + Collins + + nfl.p.28421 + nfl.t.19 + New York Giants + NYG + + 9 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/UHuO7yrsCIdO6pMZINlINA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28421.png + small + + https://s.yimg.com/iu/api/res/1.2/UHuO7yrsCIdO6pMZINlINA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28421.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 51 + 0 + + + + 380.p.27638 + 27638 + + Maurice Alexander + Maurice + Alexander + Maurice + Alexander + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27638 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/RNCshz1dLtUgjYw3UgSqSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27638.png + small + + https://s.yimg.com/iu/api/res/1.2/RNCshz1dLtUgjYw3UgSqSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27638.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28503 + 28503 + + Ibraheim Campbell + Ibraheim + Campbell + Ibraheim + Campbell + + nfl.p.28503 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/VNt.LAT_LbYpbt6LOlX8Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28503.png + small + + https://s.yimg.com/iu/api/res/1.2/VNt.LAT_LbYpbt6LOlX8Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28503.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26265 + 26265 + + Michael Thomas + Michael + Thomas + Michael + Thomas + + nfl.p.26265 + nfl.t.19 + New York Giants + NYG + + 9 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/HA6_0glcUTe_6pgghn0xhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26265.1.png + small + + https://s.yimg.com/iu/api/res/1.2/HA6_0glcUTe_6pgghn0xhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26265.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9441 + 9441 + + Don Carey + Don + Carey + Don + Carey + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.9441 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/Odz5X0CzwODi9aUaB3AF2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9441.png + small + + https://s.yimg.com/iu/api/res/1.2/Odz5X0CzwODi9aUaB3AF2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9441.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29345 + 29345 + + Miles Killebrew + Miles + Killebrew + Miles + Killebrew + + nfl.p.29345 + nfl.t.8 + Detroit Lions + Det + + 6 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/rF.UC8WYfNIVN0t5ic.DBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29345.png + small + + https://s.yimg.com/iu/api/res/1.2/rF.UC8WYfNIVN0t5ic.DBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29345.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26638 + 26638 + + Kenny Vaccaro + Kenny + Vaccaro + Kenny + Vaccaro + + nfl.p.26638 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/OB28ivj6qcGqMrvLTE2Xzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/26638.png + small + + https://s.yimg.com/iu/api/res/1.2/OB28ivj6qcGqMrvLTE2Xzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/26638.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26656 + 26656 + + Johnathan Cyprien + Johnathan + Cyprien + Johnathan + Cyprien + + IR + Injured Reserve + torn left ACL + nfl.p.26656 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/3hY9rdLCmUJ_obvkE9LV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26656.png + small + + https://s.yimg.com/iu/api/res/1.2/3hY9rdLCmUJ_obvkE9LV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26656.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27081 + 27081 + + Tony Jefferson + Tony + Jefferson + Tony + Jefferson + + nfl.p.27081 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/YejUoMFxQDpiN2EK9Om93w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27081.png + small + + https://s.yimg.com/iu/api/res/1.2/YejUoMFxQDpiN2EK9Om93w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27081.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.26484 + 26484 + + Eddie Pleasant + Eddie + Pleasant + Eddie + Pleasant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26484 + nfl.t.17 + New England Patriots + NE + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/SuqVtwiL.lnekLQ2oMHDow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26484.1.png + small + + https://s.yimg.com/iu/api/res/1.2/SuqVtwiL.lnekLQ2oMHDow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26484.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9306 + 9306 + + Jairus Byrd + Jairus + Byrd + Jairus + Byrd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9306 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/Hd9Tajw.rFDb8tgVsEQL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9306.png + small + + https://s.yimg.com/iu/api/res/1.2/Hd9Tajw.rFDb8tgVsEQL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9306.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24603 + 24603 + + Barry Church + Barry + Church + Barry + Church + + nfl.p.24603 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/P3eWw9fYl6qW8HceyUpagg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24603.png + small + + https://s.yimg.com/iu/api/res/1.2/P3eWw9fYl6qW8HceyUpagg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24603.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.26641 + 26641 + + Eric Reid + Eric + Reid + Eric + Reid + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26641 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/q1Ki8rJNQTsilDSYDlNAJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26641.png + small + + https://s.yimg.com/iu/api/res/1.2/q1Ki8rJNQTsilDSYDlNAJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26641.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9298 + 9298 + + Patrick Chung + Patrick + Chung + Patrick + Chung + + nfl.p.9298 + nfl.t.17 + New England Patriots + NE + + 11 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/h6zBojQU1YJSYF6XRjoPRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9298.png + small + + https://s.yimg.com/iu/api/res/1.2/h6zBojQU1YJSYF6XRjoPRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9298.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.26692 + 26692 + + Tyrann Mathieu + Tyrann + Mathieu + Tyrann + Mathieu + + nfl.p.26692 + nfl.t.34 + Houston Texans + Hou + + 10 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/gm7Y.sNLq3SZPc13sxfrvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26692.png + small + + https://s.yimg.com/iu/api/res/1.2/gm7Y.sNLq3SZPc13sxfrvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26692.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 37 + 0 + + + + 380.p.28585 + 28585 + + Derron Smith + Derron + Smith + Derron + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28585 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/XzhUO3RoMX_gfFhu5I61jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28585.png + small + + https://s.yimg.com/iu/api/res/1.2/XzhUO3RoMX_gfFhu5I61jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28585.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29295 + 29295 + + Vonn Bell + Vonn + Bell + Vonn + Bell + + nfl.p.29295 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/gTBlanZ6hhoXPCr8eP2DSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29295.png + small + + https://s.yimg.com/iu/api/res/1.2/gTBlanZ6hhoXPCr8eP2DSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29295.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.24837 + 24837 + + Marcus Gilchrist + Marcus + Gilchrist + Marcus + Gilchrist + + nfl.p.24837 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/OqpjHm9ONqgW071e7lAezA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24837.png + small + + https://s.yimg.com/iu/api/res/1.2/OqpjHm9ONqgW071e7lAezA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24837.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.25877 + 25877 + + George Iloka + George + Iloka + George + Iloka + + nfl.p.25877 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/Ipi5h5PZn7ZfKCbEz2BNAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25877.png + small + + https://s.yimg.com/iu/api/res/1.2/Ipi5h5PZn7ZfKCbEz2BNAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25877.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27269 + 27269 + + Brynden Trawick + Brynden + Trawick + Brynden + Trawick + + nfl.p.27269 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/23uUWMd1gb0lylmhL12X5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27269.png + small + + https://s.yimg.com/iu/api/res/1.2/23uUWMd1gb0lylmhL12X5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27269.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24012 + 24012 + + Nate Allen + Nate + Allen + Nate + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24012 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/V9p.nrh.6ytDsMysII.Erg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/24012.png + small + + https://s.yimg.com/iu/api/res/1.2/V9p.nrh.6ytDsMysII.Erg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/24012.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29574 + 29574 + + Matthias Farley + Matthias + Farley + Matthias + Farley + + nfl.p.29574 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/tbe796w9URK_AizQNjbkpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29574.png + small + + https://s.yimg.com/iu/api/res/1.2/tbe796w9URK_AizQNjbkpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29574.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29478 + 29478 + + Jayron Kearse + Jayron + Kearse + Jayron + Kearse + + nfl.p.29478 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/SMnnclQdggESxlJJUg6Nng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29478.png + small + + https://s.yimg.com/iu/api/res/1.2/SMnnclQdggESxlJJUg6Nng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29478.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29358 + 29358 + + Deon Bush + Deon + Bush + Deon + Bush + + nfl.p.29358 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/1_HRQKWcJPB5w9axzD1tVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29358.png + small + + https://s.yimg.com/iu/api/res/1.2/1_HRQKWcJPB5w9axzD1tVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29358.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24002 + 24002 + + Devin McCourty + Devin + McCourty + Devin + McCourty + + nfl.p.24002 + nfl.t.17 + New England Patriots + NE + + 11 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/RV0rSrZMhLsZnPLhb1o7Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24002.png + small + + https://s.yimg.com/iu/api/res/1.2/RV0rSrZMhLsZnPLhb1o7Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24002.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 23 + 0 + + + + 380.p.27629 + 27629 + + Jaylen Watkins + Jaylen + Watkins + Jaylen + Watkins + + IR + Injured Reserve + torn right ACL + nfl.p.27629 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/pkJdzfvDyYJ7H9kmKhu5UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27629.png + small + + https://s.yimg.com/iu/api/res/1.2/pkJdzfvDyYJ7H9kmKhu5UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27629.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27105 + 27105 + + Cody Davis + Cody + Davis + Cody + Davis + + nfl.p.27105 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/J7w.WoHwczbQmPfPDq9NWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27105.png + small + + https://s.yimg.com/iu/api/res/1.2/J7w.WoHwczbQmPfPDq9NWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27105.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8291 + 8291 + + Eric Weddle + Eric + Weddle + Eric + Weddle + + nfl.p.8291 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/eEQF8yH1FOl8izQ.SXxHdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8291.png + small + + https://s.yimg.com/iu/api/res/1.2/eEQF8yH1FOl8izQ.SXxHdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8291.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.27569 + 27569 + + Lamarcus Joyner + Lamarcus + Joyner + Lamarcus + Joyner + + nfl.p.27569 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/3SIFG7kCpGTMnjezwhtwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27569.png + small + + https://s.yimg.com/iu/api/res/1.2/3SIFG7kCpGTMnjezwhtwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27569.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.29291 + 29291 + + T.J. Green + T.J. + Green + T.J. + Green + + IR + Injured Reserve + undisclosed + nfl.p.29291 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/GBfMy1LIb9SgVWP0f.qRqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29291.1.png + small + + https://s.yimg.com/iu/api/res/1.2/GBfMy1LIb9SgVWP0f.qRqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29291.1.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9376 + 9376 + + Glover Quin + Glover + Quin + Glover + Quin + + nfl.p.9376 + nfl.t.8 + Detroit Lions + Det + + 6 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/obTeHR0wTQjpIYYUk5XP2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9376.png + small + + https://s.yimg.com/iu/api/res/1.2/obTeHR0wTQjpIYYUk5XP2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9376.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.26714 + 26714 + + Duron Harmon + Duron + Harmon + Duron + Harmon + + nfl.p.26714 + nfl.t.17 + New England Patriots + NE + + 11 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/X58nDGoZt1waVKuQqcVwDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/26714.png + small + + https://s.yimg.com/iu/api/res/1.2/X58nDGoZt1waVKuQqcVwDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/26714.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24977 + 24977 + + Colin Jones + Colin + Jones + Colin + Jones + + nfl.p.24977 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/PbVV_AQG3MWxSem0sIx9gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24977.png + small + + https://s.yimg.com/iu/api/res/1.2/PbVV_AQG3MWxSem0sIx9gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24977.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26621 + 26621 + + Chris Banjo + Chris + Banjo + Chris + Banjo + + nfl.p.26621 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/PprhIoPDVMLa6AhdPXH8YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26621.png + small + + https://s.yimg.com/iu/api/res/1.2/PprhIoPDVMLa6AhdPXH8YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26621.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8275 + 8275 + + Reggie Nelson + Reggie + Nelson + Reggie + Nelson + + nfl.p.8275 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/HAI_ok.Kq.m2uRlcxE8UMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8275.png + small + + https://s.yimg.com/iu/api/res/1.2/HAI_ok.Kq.m2uRlcxE8UMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8275.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29332 + 29332 + + Justin Simmons + Justin + Simmons + Justin + Simmons + + nfl.p.29332 + nfl.t.7 + Denver Broncos + Den + + 10 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/UZ4YPb5zjpfuKdMRFV0UnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29332.png + small + + https://s.yimg.com/iu/api/res/1.2/UZ4YPb5zjpfuKdMRFV0UnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29332.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.27656 + 27656 + + Tre Boston + Tre + Boston + Tre + Boston + + nfl.p.27656 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/egO1niwL1MIPiTQXX9T0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27656.png + small + + https://s.yimg.com/iu/api/res/1.2/egO1niwL1MIPiTQXX9T0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27656.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26989 + 26989 + + Rontez Miles + Rontez + Miles + Rontez + Miles + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.26989 + nfl.t.20 + New York Jets + NYJ + + 11 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/eOiOvBMIULS2f5w9wYqICQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26989.1.png + small + + https://s.yimg.com/iu/api/res/1.2/eOiOvBMIULS2f5w9wYqICQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26989.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28303 + 28303 + + Adrian Phillips + Adrian + Phillips + Adrian + Phillips + + nfl.p.28303 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/.oVFZExSWRHBD_kaBmU8Rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28303.png + small + + https://s.yimg.com/iu/api/res/1.2/.oVFZExSWRHBD_kaBmU8Rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28303.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29841 + 29841 + + Andrew Adams + Andrew + Adams + Andrew + Adams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29841 + nfl.t.19 + New York Giants + NYG + + 9 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/wvrUZ9rtVzawOjMm1OgvqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29841.png + small + + https://s.yimg.com/iu/api/res/1.2/wvrUZ9rtVzawOjMm1OgvqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29841.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29479 + 29479 + + Clayton Fejedelem + Clayton + Fejedelem + Clayton + Fejedelem + + nfl.p.29479 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/c2Zd4pcGS_evrG9iZHj9nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29479.1.png + small + + https://s.yimg.com/iu/api/res/1.2/c2Zd4pcGS_evrG9iZHj9nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29479.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27549 + 27549 + + Ha Ha Clinton-Dix + Ha Ha + Clinton-Dix + Ha Ha + Clinton-Dix + + nfl.p.27549 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/RnUTagsaLKvFr8.rljiKMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27549.png + small + + https://s.yimg.com/iu/api/res/1.2/RnUTagsaLKvFr8.rljiKMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27549.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 33 + 0 + + + + 380.p.23989 + 23989 + + Earl Thomas + Earl + Thomas + Earl + Thomas + + O + Out + nfl.p.23989 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/e2enV3FGLnUQVehTgy9o0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23989.png + small + + https://s.yimg.com/iu/api/res/1.2/e2enV3FGLnUQVehTgy9o0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23989.png + 0 + DP + + S + + 1 + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.24219 + 24219 + + Kurt Coleman + Kurt + Coleman + Kurt + Coleman + + nfl.p.24219 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/ydFZpHdfS15vHQ9BtvD.ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24219.png + small + + https://s.yimg.com/iu/api/res/1.2/ydFZpHdfS15vHQ9BtvD.ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24219.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.7956 + 7956 + + Antoine Bethea + Antoine + Bethea + Antoine + Bethea + + nfl.p.7956 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/Ubjr6tEGhxzA6fjsldc67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7956.png + small + + https://s.yimg.com/iu/api/res/1.2/Ubjr6tEGhxzA6fjsldc67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7956.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24590 + 24590 + + Darian Stewart + Darian + Stewart + Darian + Stewart + + nfl.p.24590 + nfl.t.7 + Denver Broncos + Den + + 10 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/1EdKZzo6.4o39_6vT41Ksg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24590.png + small + + https://s.yimg.com/iu/api/res/1.2/1EdKZzo6.4o39_6vT41Ksg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24590.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24013 + 24013 + + T.J. Ward + T.J. + Ward + T.J. + Ward + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24013 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/MLFKrk8VYZ3Eel0xZ7u5qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/24013.png + small + + https://s.yimg.com/iu/api/res/1.2/MLFKrk8VYZ3Eel0xZ7u5qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/24013.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28452 + 28452 + + Jordan Richards + Jordan + Richards + Jordan + Richards + + nfl.p.28452 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/Dqoao5yLhJwy4C9_ZqEaQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28452.png + small + + https://s.yimg.com/iu/api/res/1.2/Dqoao5yLhJwy4C9_ZqEaQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28452.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26841 + 26841 + + Jordan Poyer + Jordan + Poyer + Jordan + Poyer + + nfl.p.26841 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/uY5rZtHVOpjoQ9MHF6ID3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26841.1.png + small + + https://s.yimg.com/iu/api/res/1.2/uY5rZtHVOpjoQ9MHF6ID3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26841.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 25 + 0 + + + + 380.p.31085 + 31085 + + Joel Iyiegbuniwe + Joel + Iyiegbuniwe + Joel + Iyiegbuniwe + + nfl.p.31085 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/R4fcLouwX3RFZ5IJCNgQMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31085.png + small + + https://s.yimg.com/iu/api/res/1.2/R4fcLouwX3RFZ5IJCNgQMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31085.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31313 + 31313 + + Mike Needham + Mike + Needham + Mike + Needham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31313 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28798 + 28798 + + Marcus Rush + Marcus + Rush + Marcus + Rush + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28798 + nfl.t.7 + Denver Broncos + Den + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/VpYHyQeyJwLMTYXTnlNPyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28798.png + small + + https://s.yimg.com/iu/api/res/1.2/VpYHyQeyJwLMTYXTnlNPyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28798.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31480 + 31480 + + Jason Cabinda + Jason + Cabinda + Jason + Cabinda + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31480 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31487 + 31487 + + Raymond Davison III + Raymond + Davison III + Raymond + Davison III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31487 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 60 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30315 + 30315 + + Pita Taumoepenu + Pita + Taumoepenu + Pita + Taumoepenu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30315 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/L0FNDsctudv71DeCMdDa8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30315.png + small + + https://s.yimg.com/iu/api/res/1.2/L0FNDsctudv71DeCMdDa8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30315.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30576 + 30576 + + Brandon Bell + Brandon + Bell + Brandon + Bell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30576 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31563 + 31563 + + Junior Joseph + Junior + Joseph + Junior + Joseph + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31563 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28624 + 28624 + + Mark Nzeocha + Mark + Nzeocha + Mark + Nzeocha + + nfl.p.28624 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/eUO4s1ueQNg2tt3Gmv2Tgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28624.png + small + + https://s.yimg.com/iu/api/res/1.2/eUO4s1ueQNg2tt3Gmv2Tgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28624.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29937 + 29937 + + Pete Robertson + Pete + Robertson + Pete + Robertson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29937 + nfl.t.28 + Washington Redskins + Was + + 4 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/aQE9FWJlJ38f8pWgSpWWCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29937.png + small + + https://s.yimg.com/iu/api/res/1.2/aQE9FWJlJ38f8pWgSpWWCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29937.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31264 + 31264 + + Reggie Hunter + Reggie + Hunter + Reggie + Hunter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31264 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27424 + 27424 + + Freddie Bishop III + Freddie + Bishop III + Freddie + Bishop III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27424 + nfl.t.8 + Detroit Lions + Det + + 6 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/2vkmcsLu47plxcqp_EubPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27424.1.png + small + + https://s.yimg.com/iu/api/res/1.2/2vkmcsLu47plxcqp_EubPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27424.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31300 + 31300 + + Frank Ginda + Frank + Ginda + Frank + Ginda + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31300 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29926 + 29926 + + Micah Awe + Micah + Awe + Micah + Awe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29926 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/Y1qz_uBJgSqgdmL6_uYm0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29926.png + small + + https://s.yimg.com/iu/api/res/1.2/Y1qz_uBJgSqgdmL6_uYm0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29926.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31597 + 31597 + + Corey Thompson + Corey + Thompson + Corey + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31597 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31714 + 31714 + + KeShun Freeman + KeShun + Freeman + KeShun + Freeman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31714 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28599 + 28599 + + Reshard Cliett + Reshard + Cliett + Reshard + Cliett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28599 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/FPNdWIL8_0x998HWlp5yGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28599.1.png + small + + https://s.yimg.com/iu/api/res/1.2/FPNdWIL8_0x998HWlp5yGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28599.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31742 + 31742 + + Shaheed Salmon + Shaheed + Salmon + Shaheed + Salmon + + NA + Inactive: Coach's Decision or Not on Roster + ankle + nfl.p.31742 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31170 + 31170 + + Foyesade Oluokun + Foyesade + Oluokun + Foyesade + Oluokun + + nfl.p.31170 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30904 + 30904 + + Brady Sheldon + Brady + Sheldon + Brady + Sheldon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30904 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30659 + 30659 + + Brooks Ellis + Brooks + Ellis + Brooks + Ellis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30659 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/i6DIZi9WR0.o5CidQUUmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30659.png + small + + https://s.yimg.com/iu/api/res/1.2/i6DIZi9WR0.o5CidQUUmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30659.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30021 + 30021 + + Kyle Coleman + Kyle + Coleman + Kyle + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30021 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/9efpXp0.NgpaLPodR97GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30021.png + small + + https://s.yimg.com/iu/api/res/1.2/9efpXp0.NgpaLPodR97GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30021.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27699 + 27699 + + Jordan Tripp + Jordan + Tripp + Jordan + Tripp + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27699 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/OjBZK78rawxrpNZ3k2iDIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27699.png + small + + https://s.yimg.com/iu/api/res/1.2/OjBZK78rawxrpNZ3k2iDIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27699.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30760 + 30760 + + Otha Peters + Otha + Peters + Otha + Peters + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30760 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31720 + 31720 + + Vontae Diggs + Vontae + Diggs + Vontae + Diggs + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31720 + nfl.t.28 + Washington Redskins + Was + + 4 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31218 + 31218 + + Kendall Donnerson + Kendall + Donnerson + Kendall + Donnerson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31218 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25021 + 25021 + + Andrew Gachkar + Andrew + Gachkar + Andrew + Gachkar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25021 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/kKXW_6twzut9tnRw8ZOZzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25021.png + small + + https://s.yimg.com/iu/api/res/1.2/kKXW_6twzut9tnRw8ZOZzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25021.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29832 + 29832 + + Farrington Huguenin + Farrington + Huguenin + Farrington + Huguenin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29832 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/FZmSSWIzpki9L6FIBkG9Ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29832.png + small + + https://s.yimg.com/iu/api/res/1.2/FZmSSWIzpki9L6FIBkG9Ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29832.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31043 + 31043 + + Jerome Baker + Jerome + Baker + Jerome + Baker + + nfl.p.31043 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/oGBi5UHWlDSrGf8J2Aqhfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31043.png + small + + https://s.yimg.com/iu/api/res/1.2/oGBi5UHWlDSrGf8J2Aqhfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31043.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29093 + 29093 + + Andrew East + Andrew + East + Andrew + East + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29093 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/coCBqjDXBYSRde_cEeh5sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29093.png + small + + https://s.yimg.com/iu/api/res/1.2/coCBqjDXBYSRde_cEeh5sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29093.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30387 + 30387 + + Keith Kelsey + Keith + Kelsey + Keith + Kelsey + + IR + Injured Reserve + undisclosed + nfl.p.30387 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/pGX9uUlPU2EUa_sW3Wu4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30387.png + small + + https://s.yimg.com/iu/api/res/1.2/pGX9uUlPU2EUa_sW3Wu4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30387.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28698 + 28698 + + Rick Lovato + Rick + Lovato + Rick + Lovato + + nfl.p.28698 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/sgO4gJ04Nn.sUMWZuuhMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28698.png + small + + https://s.yimg.com/iu/api/res/1.2/sgO4gJ04Nn.sUMWZuuhMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28698.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31292 + 31292 + + Kyle Queiro + Kyle + Queiro + Kyle + Queiro + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31292 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26897 + 26897 + + John Lotulelei + John + Lotulelei + John + Lotulelei + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26897 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/Zb6DJgG2TOPoDPr3PPf9ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26897.png + small + + https://s.yimg.com/iu/api/res/1.2/Zb6DJgG2TOPoDPr3PPf9ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26897.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31374 + 31374 + + William Ossai + William + Ossai + William + Ossai + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31374 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30635 + 30635 + + Ahmad Thomas + Ahmad + Thomas + Ahmad + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30635 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31679 + 31679 + + D'Juan Hines + D'Juan + Hines + D'Juan + Hines + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31679 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28733 + 28733 + + Arthur Miley + Arthur + Miley + Arthur + Miley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28733 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/gyweImilJLjtBIGklXxPqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28733.png + small + + https://s.yimg.com/iu/api/res/1.2/gyweImilJLjtBIGklXxPqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28733.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31048 + 31048 + + Malik Jefferson + Malik + Jefferson + Malik + Jefferson + + nfl.p.31048 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/PXp4XJkVObi6knXAkFSvtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31048.png + small + + https://s.yimg.com/iu/api/res/1.2/PXp4XJkVObi6knXAkFSvtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31048.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25327 + 25327 + + Jonathan Freeny + Jonathan + Freeny + Jonathan + Freeny + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25327 + nfl.t.8 + Detroit Lions + Det + + 6 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/YM_JH3OvdBDQ7Y2tyAyzIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/25327.png + small + + https://s.yimg.com/iu/api/res/1.2/YM_JH3OvdBDQ7Y2tyAyzIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/25327.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30039 + 30039 + + Darnell Sankey + Darnell + Sankey + Darnell + Sankey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30039 + nfl.t.8 + Detroit Lions + Det + + 6 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31197 + 31197 + + Quentin Poling + Quentin + Poling + Quentin + Poling + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31197 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30361 + 30361 + + Keion Adams + Keion + Adams + Keion + Adams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30361 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/SSqFaSHkCg1PYmHCgyvQ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30361.png + small + + https://s.yimg.com/iu/api/res/1.2/SSqFaSHkCg1PYmHCgyvQ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30361.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31761 + 31761 + + Bo Bower + Bo + Bower + Bo + Bower + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31761 + nfl.t.7 + Denver Broncos + Den + + 10 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30345 + 30345 + + Elijah Lee + Elijah + Lee + Elijah + Lee + + nfl.p.30345 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31131 + 31131 + + Jermaine Carter Jr. + Jermaine + Carter Jr. + Jermaine + Carter Jr. + + nfl.p.31131 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/HmaJpYQ8rFb5LmxQFbkYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31131.png + small + + https://s.yimg.com/iu/api/res/1.2/HmaJpYQ8rFb5LmxQFbkYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31131.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31120 + 31120 + + Genard Avery + Genard + Avery + Genard + Avery + + Q + Questionable + nfl.p.31120 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/kJJHPDQpt0.vBsSNKYJsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31120.png + small + + https://s.yimg.com/iu/api/res/1.2/kJJHPDQpt0.vBsSNKYJsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31120.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25857 + 25857 + + Tank Carder + Tank + Carder + Tank + Carder + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25857 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/Q0YcgPH_NGAihy7jTgNIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25857.png + small + + https://s.yimg.com/iu/api/res/1.2/Q0YcgPH_NGAihy7jTgNIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25857.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31495 + 31495 + + Ben Niemann + Ben + Niemann + Ben + Niemann + + nfl.p.31495 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28487 + 28487 + + P.J. Dawson + P.J. + Dawson + P.J. + Dawson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28487 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/zhu3RcNmxpjJGs1kB.c7gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28487.1.png + small + + https://s.yimg.com/iu/api/res/1.2/zhu3RcNmxpjJGs1kB.c7gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28487.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31230 + 31230 + + Garret Dooley + Garret + Dooley + Garret + Dooley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31230 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30608 + 30608 + + Johnathan Calvin + Johnathan + Calvin + Johnathan + Calvin + + IR + Injured Reserve + undisclosed + nfl.p.30608 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/RMNgrzkoSu8voleQmoVCRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30608.png + small + + https://s.yimg.com/iu/api/res/1.2/RMNgrzkoSu8voleQmoVCRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30608.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31040 + 31040 + + Fred Warner + Fred + Warner + Fred + Warner + + nfl.p.31040 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/hINnhvS4gZy.i_tucyj8wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31040.png + small + + https://s.yimg.com/iu/api/res/1.2/hINnhvS4gZy.i_tucyj8wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31040.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30094 + 30094 + + Jeff Knox + Jeff + Knox + Jeff + Knox + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30094 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31200 + 31200 + + Leon Jacobs + Leon + Jacobs + Leon + Jacobs + + nfl.p.31200 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31440 + 31440 + + Marcus Porter + Marcus + Porter + Marcus + Porter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31440 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31184 + 31184 + + Peter Kalambayi + Peter + Kalambayi + Peter + Kalambayi + + nfl.p.31184 + nfl.t.34 + Houston Texans + Hou + + 10 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9537 + 9537 + + Garrison Sanborn + Garrison + Sanborn + Garrison + Sanborn + + nfl.p.9537 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 89 + LB + + https://s.yimg.com/iu/api/res/1.2/S5GaJTGxVTl.6U17ncglGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9537.1.png + small + + https://s.yimg.com/iu/api/res/1.2/S5GaJTGxVTl.6U17ncglGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9537.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31191 + 31191 + + Matthew Adams + Matthew + Adams + Matthew + Adams + + nfl.p.31191 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30857 + 30857 + + Matt Galambos + Matt + Galambos + Matt + Galambos + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30857 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/iHbdTAF82qK_p55mqUkliA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30857.png + small + + https://s.yimg.com/iu/api/res/1.2/iHbdTAF82qK_p55mqUkliA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30857.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31204 + 31204 + + Andre Smith + Andre + Smith + Andre + Smith + + Q + Questionable + nfl.p.31204 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30986 + 30986 + + Tremaine Edmunds + Tremaine + Edmunds + Tremaine + Edmunds + + nfl.p.30986 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/krfj7X4hfMhq_Tog9u_1cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30986.png + small + + https://s.yimg.com/iu/api/res/1.2/krfj7X4hfMhq_Tog9u_1cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30986.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 12 + 0 + + + + 380.p.31502 + 31502 + + Greer Martini + Greer + Martini + Greer + Martini + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31502 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31802 + 31802 + + Jaboree Williams + Jaboree + Williams + Jaboree + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31802 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31468 + 31468 + + Emmanuel Beal + Emmanuel + Beal + Emmanuel + Beal + + IR + Injured Reserve + undisclosed + nfl.p.31468 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31299 + 31299 + + Dennis Gardeck + Dennis + Gardeck + Dennis + Gardeck + + nfl.p.31299 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 92 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30471 + 30471 + + Riley Bullough + Riley + Bullough + Riley + Bullough + + IR + Injured Reserve + undisclosed + nfl.p.30471 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27736 + 27736 + + Eric Pinkins + Eric + Pinkins + Eric + Pinkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27736 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/RLcFOHeDSOHXvzZBv101Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27736.png + small + + https://s.yimg.com/iu/api/res/1.2/RLcFOHeDSOHXvzZBv101Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27736.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31696 + 31696 + + Manase Hungalu + Manase + Hungalu + Manase + Hungalu + + IR + Injured Reserve + undisclosed + nfl.p.31696 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31113 + 31113 + + Ja'Whaun Bentley + Ja'Whaun + Bentley + Ja'Whaun + Bentley + + nfl.p.31113 + nfl.t.17 + New England Patriots + NE + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/20DncDrYQOnKzOXEV8G4wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31113.png + small + + https://s.yimg.com/iu/api/res/1.2/20DncDrYQOnKzOXEV8G4wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31113.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31187 + 31187 + + Keishawn Bierria + Keishawn + Bierria + Keishawn + Bierria + + nfl.p.31187 + nfl.t.7 + Denver Broncos + Den + + 10 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31434 + 31434 + + Naashon Hughes + Naashon + Hughes + Naashon + Hughes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31434 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30103 + 30103 + + Bo Lokombo + Bo + Lokombo + Bo + Lokombo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30103 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/_TSznHxRMBvOpQh1OItskA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30103.png + small + + https://s.yimg.com/iu/api/res/1.2/_TSznHxRMBvOpQh1OItskA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30103.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31568 + 31568 + + Asantay Brown + Asantay + Brown + Asantay + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31568 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31470 + 31470 + + Tanner Carew + Tanner + Carew + Tanner + Carew + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31470 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 63 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31175 + 31175 + + Trevon Young + Trevon + Young + Trevon + Young + + nfl.p.31175 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31792 + 31792 + + A.J. Johnson + A.J. + Johnson + A.J. + Johnson + + nfl.p.31792 + nfl.t.7 + Denver Broncos + Den + + 10 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31717 + 31717 + + Airius Moore + Airius + Moore + Airius + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31717 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31532 + 31532 + + Matthew Thomas + Matthew + Thomas + Matthew + Thomas + + nfl.p.31532 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31006 + 31006 + + Darius Leonard + Darius + Leonard + Darius + Leonard + + nfl.p.31006 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/0m8gui7EXqZvIA2X3AvtWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31006.png + small + + https://s.yimg.com/iu/api/res/1.2/0m8gui7EXqZvIA2X3AvtWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31006.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31780 + 31780 + + Jonathan Celestin + Jonathan + Celestin + Jonathan + Celestin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31780 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31745 + 31745 + + Kyle Wilson + Kyle + Wilson + Kyle + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31745 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31615 + 31615 + + Sharif Finch + Sharif + Finch + Sharif + Finch + + nfl.p.31615 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31629 + 31629 + + Al-Rasheed Benton + Al-Rasheed + Benton + Al-Rasheed + Benton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31629 + nfl.t.8 + Detroit Lions + Det + + 6 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27649 + 27649 + + Carl Bradford + Carl + Bradford + Carl + Bradford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27649 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/HSYX3YkryoFicCCcqnS01w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27649.png + small + + https://s.yimg.com/iu/api/res/1.2/HSYX3YkryoFicCCcqnS01w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27649.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29894 + 29894 + + Deon King + Deon + King + Deon + King + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29894 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/o.nw3V.VRABCbhKaWvXMDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29894.png + small + + https://s.yimg.com/iu/api/res/1.2/o.nw3V.VRABCbhKaWvXMDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29894.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25976 + 25976 + + Aaron Brewer + Aaron + Brewer + Aaron + Brewer + + nfl.p.25976 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/beVGdcSWoPeqGpTViIWD2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25976.png + small + + https://s.yimg.com/iu/api/res/1.2/beVGdcSWoPeqGpTViIWD2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25976.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30564 + 30564 + + Donavin Newsom + Donavin + Newsom + Donavin + Newsom + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30564 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/DZoUQyN.T2XsuJl.mg_WLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30564.png + small + + https://s.yimg.com/iu/api/res/1.2/DZoUQyN.T2XsuJl.mg_WLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30564.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30099 + 30099 + + Adam Bighill + Adam + Bighill + Adam + Bighill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30099 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31205 + 31205 + + Zaire Franklin + Zaire + Franklin + Zaire + Franklin + + nfl.p.31205 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31290 + 31290 + + Joel Lanning + Joel + Lanning + Joel + Lanning + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31290 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31571 + 31571 + + Davin Bellamy + Davin + Bellamy + Davin + Bellamy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31571 + nfl.t.34 + Houston Texans + Hou + + 10 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31412 + 31412 + + Colton Jumper + Colton + Jumper + Colton + Jumper + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31412 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31147 + 31147 + + Christian Sam + Christian + Sam + Christian + Sam + + IR + Injured Reserve + undisclosed + nfl.p.31147 + nfl.t.17 + New England Patriots + NE + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31430 + 31430 + + Parris Bennett + Parris + Bennett + Parris + Bennett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31430 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31614 + 31614 + + Nick DeLuca + Nick + DeLuca + Nick + DeLuca + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31614 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31076 + 31076 + + Josey Jewell + Josey + Jewell + Josey + Jewell + + nfl.p.31076 + nfl.t.7 + Denver Broncos + Den + + 10 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/XKGc10JNOjiwdvloEQ9PPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31076.png + small + + https://s.yimg.com/iu/api/res/1.2/XKGc10JNOjiwdvloEQ9PPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31076.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30783 + 30783 + + Kennan Gilchrist + Kennan + Gilchrist + Kennan + Gilchrist + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30783 + nfl.t.34 + Houston Texans + Hou + + 10 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/a7rU25rJRGtVtBb6R4UFMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30783.png + small + + https://s.yimg.com/iu/api/res/1.2/a7rU25rJRGtVtBb6R4UFMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30783.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31552 + 31552 + + Tae Davis + Tae + Davis + Tae + Davis + + nfl.p.31552 + nfl.t.19 + New York Giants + NYG + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30347 + 30347 + + Ejuan Price + Ejuan + Price + Ejuan + Price + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30347 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31272 + 31272 + + Andrew Motuapuaka + Andrew + Motuapuaka + Andrew + Motuapuaka + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31272 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30989 + 30989 + + Leighton Vander Esch + Leighton + Vander Esch + Leighton + Vander Esch + + Q + Questionable + nfl.p.30989 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/xiRbexilG_mC9CuGElRfbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30989.png + small + + https://s.yimg.com/iu/api/res/1.2/xiRbexilG_mC9CuGElRfbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30989.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31503 + 31503 + + Frankie Luvu + Frankie + Luvu + Frankie + Luvu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31503 + nfl.t.20 + New York Jets + NYJ + + 11 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30500 + 30500 + + Mike Moore + Mike + Moore + Mike + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30500 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28902 + 28902 + + Tony Washington + Tony + Washington + Tony + Washington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28902 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/9TbpK_eNVillm3EU46oz6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28902.1.png + small + + https://s.yimg.com/iu/api/res/1.2/9TbpK_eNVillm3EU46oz6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28902.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30978 + 30978 + + Roquan Smith + Roquan + Smith + Roquan + Smith + + Q + Questionable + nfl.p.30978 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/0A9cDcKNwd5sQeVECkvbUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30978.png + small + + https://s.yimg.com/iu/api/res/1.2/0A9cDcKNwd5sQeVECkvbUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30978.png + 0 + DP + + LB + + 1 + 1 + + - + - + - + - + + + week + 1 + 18 + 0 + + + + 380.p.26979 + 26979 + + Carson Tinker + Carson + Tinker + Carson + Tinker + + nfl.p.26979 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/VXCETfhpj_qcszwenAg8Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26979.1.png + small + + https://s.yimg.com/iu/api/res/1.2/VXCETfhpj_qcszwenAg8Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26979.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31036 + 31036 + + Lorenzo Carter + Lorenzo + Carter + Lorenzo + Carter + + nfl.p.31036 + nfl.t.19 + New York Giants + NYG + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/IwSvvFvP41xogLVAkVpUXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31036.png + small + + https://s.yimg.com/iu/api/res/1.2/IwSvvFvP41xogLVAkVpUXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31036.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31246 + 31246 + + Mason McKenrick + Mason + McKenrick + Mason + McKenrick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31246 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31201 + 31201 + + Travin Howard + Travin + Howard + Travin + Howard + + undisclosed + nfl.p.31201 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30417 + 30417 + + Sae Tautu + Sae + Tautu + Sae + Tautu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30417 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28900 + 28900 + + Carlos Thompson + Carlos + Thompson + Carlos + Thompson + + IR + Injured Reserve + undisclosed + nfl.p.28900 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/5MK2ogISZ_db9hgnjmmouQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28900.1.png + small + + https://s.yimg.com/iu/api/res/1.2/5MK2ogISZ_db9hgnjmmouQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28900.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31357 + 31357 + + Richard Jarvis III + Richard + Jarvis III + Richard + Jarvis III + + nfl.p.31357 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31018 + 31018 + + Uchenna Nwosu + Uchenna + Nwosu + Uchenna + Nwosu + + Q + Questionable + nfl.p.31018 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/KxcJUm.vCdc57iWjX8bLzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31018.png + small + + https://s.yimg.com/iu/api/res/1.2/KxcJUm.vCdc57iWjX8bLzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31018.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30294 + 30294 + + Dylan Donahue + Dylan + Donahue + Dylan + Donahue + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30294 + nfl.t.20 + New York Jets + NYJ + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30340 + 30340 + + Josh Carraway + Josh + Carraway + Josh + Carraway + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30340 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30785 + 30785 + + Joseph Jones + Joseph + Jones + Joseph + Jones + + nfl.p.30785 + nfl.t.7 + Denver Broncos + Den + + 10 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/aUzozvID_sxBLCiIls8R5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30785.png + small + + https://s.yimg.com/iu/api/res/1.2/aUzozvID_sxBLCiIls8R5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30785.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31471 + 31471 + + Warren Long + Warren + Long + Warren + Long + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31471 + nfl.t.19 + New York Giants + NYG + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31172 + 31172 + + Jack Cichy + Jack + Cichy + Jack + Cichy + + nfl.p.31172 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29727 + 29727 + + Reggie Gilbert + Reggie + Gilbert + Reggie + Gilbert + + nfl.p.29727 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/2FbT32LWrWRv5SNuS6KyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29727.png + small + + https://s.yimg.com/iu/api/res/1.2/2FbT32LWrWRv5SNuS6KyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29727.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31163 + 31163 + + Chris Covington + Chris + Covington + Chris + Covington + + nfl.p.31163 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31377 + 31377 + + Jeff Holland + Jeff + Holland + Jeff + Holland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31377 + nfl.t.7 + Denver Broncos + Den + + 10 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28620 + 28620 + + Edmond Robinson + Edmond + Robinson + Edmond + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28620 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/m15IvKtxqmPtD3CTLG.Jrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28620.png + small + + https://s.yimg.com/iu/api/res/1.2/m15IvKtxqmPtD3CTLG.Jrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28620.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24028 + 24028 + + Jermaine Cunningham + Jermaine + Cunningham + Jermaine + Cunningham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24028 + nfl.t.20 + New York Jets + NYJ + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/0Qz5jjhFeoK_92JsJWMdcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/24028.png + small + + https://s.yimg.com/iu/api/res/1.2/0Qz5jjhFeoK_92JsJWMdcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/24028.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31533 + 31533 + + Cayson Collins + Cayson + Collins + Cayson + Collins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31533 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31708 + 31708 + + Robert Spillane + Robert + Spillane + Robert + Spillane + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31708 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31398 + 31398 + + Jerod Fernandez + Jerod + Fernandez + Jerod + Fernandez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31398 + nfl.t.28 + Washington Redskins + Was + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28565 + 28565 + + Deiontrez Mount + Deiontrez + Mount + Deiontrez + Mount + + IR + Injured Reserve + undisclosed + nfl.p.28565 + nfl.t.7 + Denver Broncos + Den + + 10 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/z6pNG.434CXxoE1sprHusQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28565.png + small + + https://s.yimg.com/iu/api/res/1.2/z6pNG.434CXxoE1sprHusQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28565.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31484 + 31484 + + Olasunkanmi Adeniyi + Olasunkanmi + Adeniyi + Olasunkanmi + Adeniyi + + IR + Injured Reserve + hamstring + nfl.p.31484 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 92 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31058 + 31058 + + Oren Burks + Oren + Burks + Oren + Burks + + Q + Questionable + nfl.p.31058 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/fBcIShe.o71RpmkmAfEfuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31058.png + small + + https://s.yimg.com/iu/api/res/1.2/fBcIShe.o71RpmkmAfEfuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31058.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30556 + 30556 + + Jimmie Gilbert + Jimmie + Gilbert + Jimmie + Gilbert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30556 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/f7f12sDFMzCR0Tu3CiyxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30556.png + small + + https://s.yimg.com/iu/api/res/1.2/f7f12sDFMzCR0Tu3CiyxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30556.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25549 + 25549 + + Jake McQuaide + Jake + McQuaide + Jake + McQuaide + + nfl.p.25549 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/vzL4rX34hOeDVp3hTORIYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25549.png + small + + https://s.yimg.com/iu/api/res/1.2/vzL4rX34hOeDVp3hTORIYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25549.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31317 + 31317 + + Matthew Oplinger + Matthew + Oplinger + Matthew + Oplinger + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31317 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30573 + 30573 + + Connor Harris + Connor + Harris + Connor + Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30573 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31504 + 31504 + + Anthony Wint + Anthony + Wint + Anthony + Wint + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31504 + nfl.t.20 + New York Jets + NYJ + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31638 + 31638 + + Chad Meredith + Chad + Meredith + Chad + Meredith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31638 + nfl.t.8 + Detroit Lions + Det + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31744 + 31744 + + DeMarquis Gates + DeMarquis + Gates + DeMarquis + Gates + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31744 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7512 + 7512 + + L.P. Ladouceur + L.P. + Ladouceur + L.P. + Ladouceur + + nfl.p.7512 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/GbrMaBBNNOacQFA1Z37lHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/7512.png + small + + https://s.yimg.com/iu/api/res/1.2/GbrMaBBNNOacQFA1Z37lHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/7512.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30954 + 30954 + + Christian Kuntz + Christian + Kuntz + Christian + Kuntz + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30954 + nfl.t.7 + Denver Broncos + Den + + 10 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30514 + 30514 + + Bam Bradley + Bam + Bradley + Bam + Bradley + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30514 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/dat.ovBOCnrRbEfwaQehbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30514.png + small + + https://s.yimg.com/iu/api/res/1.2/dat.ovBOCnrRbEfwaQehbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30514.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31372 + 31372 + + Skai Moore + Skai + Moore + Skai + Moore + + nfl.p.31372 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29584 + 29584 + + Cassanova McKinzy + Cassanova + McKinzy + Cassanova + McKinzy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29584 + nfl.t.28 + Washington Redskins + Was + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/ptqw1tIXkGCIuQvE024Dkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29584.png + small + + https://s.yimg.com/iu/api/res/1.2/ptqw1tIXkGCIuQvE024Dkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29584.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30568 + 30568 + + Austin Calitro + Austin + Calitro + Austin + Calitro + + nfl.p.30568 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31305 + 31305 + + Chris Frey + Chris + Frey + Chris + Frey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31305 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30666 + 30666 + + Harvey Langi + Harvey + Langi + Harvey + Langi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30666 + nfl.t.17 + New England Patriots + NE + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/zEKfuCQhbqFxpCGYrc_.sQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30666.png + small + + https://s.yimg.com/iu/api/res/1.2/zEKfuCQhbqFxpCGYrc_.sQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30666.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26168 + 26168 + + Josh Harris + Josh + Harris + Josh + Harris + + Q + Questionable + nfl.p.26168 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lCnYU.D1HGwD6F736XjfsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26168.png + small + + https://s.yimg.com/iu/api/res/1.2/lCnYU.D1HGwD6F736XjfsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26168.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31753 + 31753 + + Josh Woods + Josh + Woods + Josh + Woods + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31753 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30167 + 30167 + + Raekwon McMillan + Raekwon + McMillan + Raekwon + McMillan + + nfl.p.30167 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/cx3OZlgw79YGB8TVW5l1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30167.png + small + + https://s.yimg.com/iu/api/res/1.2/cx3OZlgw79YGB8TVW5l1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30167.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30881 + 30881 + + Eric Nzeocha + Eric + Nzeocha + Eric + Nzeocha + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30881 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30535 + 30535 + + Garrett Sickels + Garrett + Sickels + Garrett + Sickels + + IR + Injured Reserve + undisclosed + nfl.p.30535 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31790 + 31790 + + Davond Dade + Davond + Dade + Davond + Dade + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31790 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31766 + 31766 + + Ro'Derrick Hoskins + Ro'Derrick + Hoskins + Ro'Derrick + Hoskins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31766 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 63 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29210 + 29210 + + Derrick Mathews + Derrick + Mathews + Derrick + Mathews + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29210 + nfl.t.19 + New York Giants + NYG + + 9 + + 39 + LB + + https://s.yimg.com/iu/api/res/1.2/UteEou2GuRbLRz4KY2hLqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29210.png + small + + https://s.yimg.com/iu/api/res/1.2/UteEou2GuRbLRz4KY2hLqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29210.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31356 + 31356 + + Emmanuel Ellerbee + Emmanuel + Ellerbee + Emmanuel + Ellerbee + + nfl.p.31356 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30470 + 30470 + + Richie Brown Jr. + Richie + Brown Jr. + Richie + Brown Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30470 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31435 + 31435 + + C.J. Johnson + C.J. + Johnson + C.J. + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + hamstring + nfl.p.31435 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31291 + 31291 + + Ed Shockley + Ed + Shockley + Ed + Shockley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31291 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31186 + 31186 + + Azeem Victor + Azeem + Victor + Azeem + Victor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31186 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31511 + 31511 + + Brett Taylor + Brett + Taylor + Brett + Taylor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31511 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30992 + 30992 + + Rashaan Evans + Rashaan + Evans + Rashaan + Evans + + nfl.p.30992 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/n1n9.RLkOIN9Hoj5CQQnPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30992.png + small + + https://s.yimg.com/iu/api/res/1.2/n1n9.RLkOIN9Hoj5CQQnPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30992.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31235 + 31235 + + Hercules Mata'afa + Hercules + Mata'afa + Hercules + Mata'afa + + IR + Injured Reserve + torn ACL + nfl.p.31235 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30700 + 30700 + + LaTroy Lewis + LaTroy + Lewis + LaTroy + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30700 + nfl.t.34 + Houston Texans + Hou + + 10 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30499 + 30499 + + Jermaine Grace + Jermaine + Grace + Jermaine + Grace + + nfl.p.30499 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/bnhIgbTfjC7x3WaJVR3tHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30499.png + small + + https://s.yimg.com/iu/api/res/1.2/bnhIgbTfjC7x3WaJVR3tHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30499.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31566 + 31566 + + Chris Worley + Chris + Worley + Chris + Worley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31566 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31472 + 31472 + + Jake Pugh + Jake + Pugh + Jake + Pugh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31472 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31245 + 31245 + + Alvin Jones + Alvin + Jones + Alvin + Jones + + undisclosed + nfl.p.31245 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31661 + 31661 + + Nyles Morgan + Nyles + Morgan + Nyles + Morgan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31661 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31354 + 31354 + + Emmanuel Smith + Emmanuel + Smith + Emmanuel + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31354 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30722 + 30722 + + Isaiah Irving + Isaiah + Irving + Isaiah + Irving + + nfl.p.30722 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31092 + 31092 + + Kenny Young + Kenny + Young + Kenny + Young + + Q + Questionable + nfl.p.31092 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/4wqa1Yw.lgrJ9bnw2ljGLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31092.png + small + + https://s.yimg.com/iu/api/res/1.2/4wqa1Yw.lgrJ9bnw2ljGLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31092.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28597 + 28597 + + Obum Gwacham + Obum + Gwacham + Obum + Gwacham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28597 + nfl.t.20 + New York Jets + NYJ + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/EOf6pT21VJ7EwpTG1_oeCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28597.png + small + + https://s.yimg.com/iu/api/res/1.2/EOf6pT21VJ7EwpTG1_oeCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28597.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31195 + 31195 + + Devante Downs + Devante + Downs + Devante + Downs + + nfl.p.31195 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31355 + 31355 + + Anthony Winbush + Anthony + Winbush + Anthony + Winbush + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31355 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30296 + 30296 + + Ukeme Eligwe + Ukeme + Eligwe + Ukeme + Eligwe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30296 + nfl.t.19 + New York Giants + NYG + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31117 + 31117 + + Micah Kiser + Micah + Kiser + Micah + Kiser + + nfl.p.31117 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/U_kqwaBTrTjJWgt8HTHycA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31117.png + small + + https://s.yimg.com/iu/api/res/1.2/U_kqwaBTrTjJWgt8HTHycA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31117.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31540 + 31540 + + Mike McCray + Mike + McCray + Mike + McCray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31540 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30815 + 30815 + + Jerrol Garcia-Williams + Jerrol + Garcia-Williams + Jerrol + Garcia-Williams + + IR + Injured Reserve + knee + nfl.p.30815 + nfl.t.7 + Denver Broncos + Den + + 10 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25519 + 25519 + + Bryan Braman + Bryan + Braman + Bryan + Braman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25519 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/EoJRvpTWirfof.bi0jey5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25519.png + small + + https://s.yimg.com/iu/api/res/1.2/EoJRvpTWirfof.bi0jey5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25519.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29473 + 29473 + + Trevor Bates + Trevor + Bates + Trevor + Bates + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29473 + nfl.t.8 + Detroit Lions + Det + + 6 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/I4lL8fmV4Dg9LwSmOrYPaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29473.png + small + + https://s.yimg.com/iu/api/res/1.2/I4lL8fmV4Dg9LwSmOrYPaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29473.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31750 + 31750 + + Chris Board + Chris + Board + Chris + Board + + nfl.p.31750 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30489 + 30489 + + Tre'von Johnson + Tre'von + Johnson + Tre'von + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30489 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/qjg9PyPXAq0lNA2mDYWFhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30489.png + small + + https://s.yimg.com/iu/api/res/1.2/qjg9PyPXAq0lNA2mDYWFhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30489.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29713 + 29713 + + Brandon Chubb + Brandon + Chubb + Brandon + Chubb + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29713 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/9HXO7mL4ULvCNCtY.4Ie8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29713.png + small + + https://s.yimg.com/iu/api/res/1.2/9HXO7mL4ULvCNCtY.4Ie8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29713.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31785 + 31785 + + James Crawford + James + Crawford + James + Crawford + + nfl.p.31785 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31111 + 31111 + + Shaquem Griffin + Shaquem + Griffin + Shaquem + Griffin + + nfl.p.31111 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/VJ8B.byAxgJOI7uS3BWhNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31111.png + small + + https://s.yimg.com/iu/api/res/1.2/VJ8B.byAxgJOI7uS3BWhNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31111.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31167 + 31167 + + Shaun Dion Hamilton + Shaun Dion + Hamilton + Shaun Dion + Hamilton + + nfl.p.31167 + nfl.t.28 + Washington Redskins + Was + + 4 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28006 + 28006 + + Deontae Skinner + Deontae + Skinner + Deontae + Skinner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28006 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/QOdE84fLLerFm8N0bmIHxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28006.png + small + + https://s.yimg.com/iu/api/res/1.2/QOdE84fLLerFm8N0bmIHxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28006.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31410 + 31410 + + Tegray Scales + Tegray + Scales + Tegray + Scales + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31410 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30803 + 30803 + + Gimel President + Gimel + President + Gimel + President + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30803 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29231 + 29231 + + Drew Ferris + Drew + Ferris + Drew + Ferris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29231 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/GQGDv6VaG2W3P8if14Thew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29231.png + small + + https://s.yimg.com/iu/api/res/1.2/GQGDv6VaG2W3P8if14Thew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29231.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31070 + 31070 + + Dorian O'Daniel + Dorian + O'Daniel + Dorian + O'Daniel + + nfl.p.31070 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/lzQ9nIaTXQikUeLT8BlKAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31070.png + small + + https://s.yimg.com/iu/api/res/1.2/lzQ9nIaTXQikUeLT8BlKAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31070.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30155 + 30155 + + Marcus Williams + Marcus + Williams + Marcus + Williams + + nfl.p.30155 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/lL5po5Ar_EN.8zWFUUXnKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30155.png + small + + https://s.yimg.com/iu/api/res/1.2/lL5po5Ar_EN.8zWFUUXnKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30155.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 13 + 0 + + + + 380.p.30299 + 30299 + + Chuck Clark + Chuck + Clark + Chuck + Clark + + nfl.p.30299 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/6YL.VeHoxQ6isWXNlRpohQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30299.png + small + + https://s.yimg.com/iu/api/res/1.2/6YL.VeHoxQ6isWXNlRpohQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30299.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29224 + 29224 + + Erik Harris + Erik + Harris + Erik + Harris + + nfl.p.29224 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/8Fe8oADkMrZbYAy3q2nWKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29224.png + small + + https://s.yimg.com/iu/api/res/1.2/8Fe8oADkMrZbYAy3q2nWKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29224.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30262 + 30262 + + Damontae Kazee + Damontae + Kazee + Damontae + Kazee + + nfl.p.30262 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29845 + 29845 + + Trae Elston + Trae + Elston + Trae + Elston + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29845 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/4LBbjpWbrrBSlJt.Mr3y2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29845.png + small + + https://s.yimg.com/iu/api/res/1.2/4LBbjpWbrrBSlJt.Mr3y2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29845.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30149 + 30149 + + Budda Baker + Budda + Baker + Budda + Baker + + nfl.p.30149 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/uet4z27G0b1.awvl33DHHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30149.png + small + + https://s.yimg.com/iu/api/res/1.2/uet4z27G0b1.awvl33DHHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30149.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.30224 + 30224 + + Tedric Thompson + Tedric + Thompson + Tedric + Thompson + + Q + Questionable + nfl.p.30224 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29781 + 29781 + + Charles Washington + Charles + Washington + Charles + Washington + + nfl.p.29781 + nfl.t.8 + Detroit Lions + Det + + 6 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/A8tREDEvZmpF7lTSB5t5Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29781.png + small + + https://s.yimg.com/iu/api/res/1.2/A8tREDEvZmpF7lTSB5t5Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29781.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30848 + 30848 + + Jamal Carter Sr. + Jamal + Carter Sr. + Jamal + Carter Sr. + + IR + Injured Reserve + torn hamstring + nfl.p.30848 + nfl.t.7 + Denver Broncos + Den + + 10 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30163 + 30163 + + Justin Evans + Justin + Evans + Justin + Evans + + Q + Questionable + nfl.p.30163 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/7EcF_22btb9Wc.B5uDlD1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30163.png + small + + https://s.yimg.com/iu/api/res/1.2/7EcF_22btb9Wc.B5uDlD1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30163.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.27607 + 27607 + + Terrence Brooks + Terrence + Brooks + Terrence + Brooks + + nfl.p.27607 + nfl.t.20 + New York Jets + NYJ + + 11 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/kn1omyg36HHsJFJJWOCqFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27607.1.png + small + + https://s.yimg.com/iu/api/res/1.2/kn1omyg36HHsJFJJWOCqFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27607.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30174 + 30174 + + Josh Jones + Josh + Jones + Josh + Jones + + nfl.p.30174 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/Nvv6WB2kjpOYF0ZgzlOSvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30174.png + small + + https://s.yimg.com/iu/api/res/1.2/Nvv6WB2kjpOYF0ZgzlOSvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30174.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.30334 + 30334 + + Shalom Luani + Shalom + Luani + Shalom + Luani + + nfl.p.30334 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30321 + 30321 + + Rudy Ford + Rudy + Ford + Rudy + Ford + + nfl.p.30321 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/x638J_PnBLcKESqgGqx3AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30321.png + small + + https://s.yimg.com/iu/api/res/1.2/x638J_PnBLcKESqgGqx3AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30321.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30152 + 30152 + + Marcus Maye + Marcus + Maye + Marcus + Maye + + Q + Questionable + nfl.p.30152 + nfl.t.20 + New York Jets + NYJ + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30226 + 30226 + + Rayshawn Jenkins + Rayshawn + Jenkins + Rayshawn + Jenkins + + nfl.p.30226 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30119 + 30119 + + Jamal Adams + Jamal + Adams + Jamal + Adams + + nfl.p.30119 + nfl.t.20 + New York Jets + NYJ + + 11 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/jL6qZbxH3ekH80M.olGbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30119.png + small + + https://s.yimg.com/iu/api/res/1.2/jL6qZbxH3ekH80M.olGbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30119.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 13 + 0 + + + + 380.p.29419 + 29419 + + DeAndre Houston-Carson + DeAndre + Houston-Carson + DeAndre + Houston-Carson + + O + Out + nfl.p.29419 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/Bwdz5UE.p5.2Hd623lfWsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29419.png + small + + https://s.yimg.com/iu/api/res/1.2/Bwdz5UE.p5.2Hd623lfWsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29419.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30304 + 30304 + + Xavier Woods + Xavier + Woods + Xavier + Woods + + Q + Questionable + nfl.p.30304 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/_CR2zSRqX2bV_Fq1xeEa1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30304.png + small + + https://s.yimg.com/iu/api/res/1.2/_CR2zSRqX2bV_Fq1xeEa1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30304.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30236 + 30236 + + Montae Nicholson + Montae + Nicholson + Montae + Nicholson + + nfl.p.30236 + nfl.t.28 + Washington Redskins + Was + + 4 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28889 + 28889 + + Kurtis Drummond + Kurtis + Drummond + Kurtis + Drummond + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28889 + nfl.t.34 + Houston Texans + Hou + + 10 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/.O6BtVujeNC9GON2GKeuUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28889.1.png + small + + https://s.yimg.com/iu/api/res/1.2/.O6BtVujeNC9GON2GKeuUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28889.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29305 + 29305 + + Darian Thompson + Darian + Thompson + Darian + Thompson + + IR + Injured Reserve + undisclosed + nfl.p.29305 + nfl.t.19 + New York Giants + NYG + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/9.1jl5nbCbG5VlrjbtTlBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29305.png + small + + https://s.yimg.com/iu/api/res/1.2/9.1jl5nbCbG5VlrjbtTlBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29305.png + 0 + DP + + S + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30128 + 30128 + + Malik Hooker + Malik + Hooker + Malik + Hooker + + nfl.p.30128 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/41NY6.pFgTimGTV5glCrYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30128.png + small + + https://s.yimg.com/iu/api/res/1.2/41NY6.pFgTimGTV5glCrYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30128.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.29401 + 29401 + + Marqui Christian + Marqui + Christian + Marqui + Christian + + nfl.p.29401 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/SnKQjbFwuAAH9kZPjCcDkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29401.png + small + + https://s.yimg.com/iu/api/res/1.2/SnKQjbFwuAAH9kZPjCcDkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29401.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30208 + 30208 + + Delano Hill + Delano + Hill + Delano + Hill + + nfl.p.30208 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30225 + 30225 + + Eddie Jackson + Eddie + Jackson + Eddie + Jackson + + nfl.p.30225 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/62HC_UcWQhOy4TCEGVAktg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/30225.png + small + + https://s.yimg.com/iu/api/res/1.2/62HC_UcWQhOy4TCEGVAktg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/30225.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.30204 + 30204 + + John Johnson III + John + Johnson III + John + Johnson III + + nfl.p.30204 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 14 + 0 + + + + 380.p.28987 + 28987 + + Brandon King + Brandon + King + Brandon + King + + nfl.p.28987 + nfl.t.17 + New England Patriots + NE + + 11 + + 36 + LB,S + + https://s.yimg.com/iu/api/res/1.2/esFQ__vLL2WZltSf8p_fgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28987.png + small + + https://s.yimg.com/iu/api/res/1.2/esFQ__vLL2WZltSf8p_fgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28987.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26887 + 26887 + + Lerentee McCray + Lerentee + McCray + Lerentee + McCray + + nfl.p.26887 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/YH6ajaONzoxnCvLqvrMZLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26887.png + small + + https://s.yimg.com/iu/api/res/1.2/YH6ajaONzoxnCvLqvrMZLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26887.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27275 + 27275 + + Terence Garvin + Terence + Garvin + Terence + Garvin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27275 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/BEp90E4ZIWltUMyWH9Jm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27275.png + small + + https://s.yimg.com/iu/api/res/1.2/BEp90E4ZIWltUMyWH9Jm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27275.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29343 + 29343 + + B.J. Goodson + B.J. + Goodson + B.J. + Goodson + + nfl.p.29343 + nfl.t.19 + New York Giants + NYG + + 9 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/X7cJrqPEfvKUOzE5etAQwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29343.png + small + + https://s.yimg.com/iu/api/res/1.2/X7cJrqPEfvKUOzE5etAQwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29343.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24507 + 24507 + + Frank Zombo + Frank + Zombo + Frank + Zombo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24507 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/GcFfasSAp3X9P1QUKWTlWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24507.1.png + small + + https://s.yimg.com/iu/api/res/1.2/GcFfasSAp3X9P1QUKWTlWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24507.1.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25719 + 25719 + + Luke Kuechly + Luke + Kuechly + Luke + Kuechly + + nfl.p.25719 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/xkU_W76wu.1YQOoLO6t_Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25719.png + small + + https://s.yimg.com/iu/api/res/1.2/xkU_W76wu.1YQOoLO6t_Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25719.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 90 + 0 + + + + 380.p.9290 + 9290 + + Clay Matthews + Clay + Matthews + Clay + Matthews + + nfl.p.9290 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/Ic9l5KTx3_6n1U5tnOgUVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9290.png + small + + https://s.yimg.com/iu/api/res/1.2/Ic9l5KTx3_6n1U5tnOgUVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9290.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.27647 + 27647 + + Anthony Hitchens + Anthony + Hitchens + Anthony + Hitchens + + nfl.p.27647 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/FbDnX2xVLfvkgoiq7bxnBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27647.png + small + + https://s.yimg.com/iu/api/res/1.2/FbDnX2xVLfvkgoiq7bxnBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27647.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.27568 + 27568 + + Kyle Van Noy + Kyle + Van Noy + Kyle + Van Noy + + nfl.p.27568 + nfl.t.17 + New England Patriots + NE + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/uEhXjMz1oxbZmybVni6mIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27568.png + small + + https://s.yimg.com/iu/api/res/1.2/uEhXjMz1oxbZmybVni6mIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27568.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.29448 + 29448 + + Elandon Roberts + Elandon + Roberts + Elandon + Roberts + + nfl.p.29448 + nfl.t.17 + New England Patriots + NE + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/NvfBb4SuzhG4NyBnSUs7Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29448.png + small + + https://s.yimg.com/iu/api/res/1.2/NvfBb4SuzhG4NyBnSUs7Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29448.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28908 + 28908 + + Mike Hull + Mike + Hull + Mike + Hull + + IR + Injured Reserve + knee + nfl.p.28908 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/qPgu.TahKiQNZr8y7w0P0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28908.1.png + small + + https://s.yimg.com/iu/api/res/1.2/qPgu.TahKiQNZr8y7w0P0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28908.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9543 + 9543 + + Ramon Humber + Ramon + Humber + Ramon + Humber + + nfl.p.9543 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/xrmcD1tmb6RrKPoUpg5J5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9543.1.png + small + + https://s.yimg.com/iu/api/res/1.2/xrmcD1tmb6RrKPoUpg5J5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9543.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.23991 + 23991 + + Derrick Morgan + Derrick + Morgan + Derrick + Morgan + + Q + Questionable + nfl.p.23991 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/KopGoWqEoro5eivJjlcUfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/23991.png + small + + https://s.yimg.com/iu/api/res/1.2/KopGoWqEoro5eivJjlcUfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/23991.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28607 + 28607 + + Hayes Pullard III + Hayes + Pullard III + Hayes + Pullard III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28607 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/_7UPZgnYkcvNzsN7wpCVQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/28607.png + small + + https://s.yimg.com/iu/api/res/1.2/_7UPZgnYkcvNzsN7wpCVQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/28607.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29321 + 29321 + + Nick Vigil + Nick + Vigil + Nick + Vigil + + nfl.p.29321 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/LUAx4L46Lr.ZSoVrfGslTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29321.1.png + small + + https://s.yimg.com/iu/api/res/1.2/LUAx4L46Lr.ZSoVrfGslTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29321.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.9310 + 9310 + + Connor Barwin + Connor + Barwin + Connor + Barwin + + Q + Questionable + nfl.p.9310 + nfl.t.19 + New York Giants + NYG + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/KBiue9ygSGsUlNIacN4SKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/9310.png + small + + https://s.yimg.com/iu/api/res/1.2/KBiue9ygSGsUlNIacN4SKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/9310.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.27040 + 27040 + + Paul Worrilow + Paul + Worrilow + Paul + Worrilow + + IR + Injured Reserve + torn right ACL + nfl.p.27040 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/MnrLX5Ax3mOmHCQoYHFdmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27040.png + small + + https://s.yimg.com/iu/api/res/1.2/MnrLX5Ax3mOmHCQoYHFdmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27040.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25850 + 25850 + + Najee Goode + Najee + Goode + Najee + Goode + + nfl.p.25850 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/EXTo0izwYqZsaU5_wtTXQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25850.png + small + + https://s.yimg.com/iu/api/res/1.2/EXTo0izwYqZsaU5_wtTXQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25850.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28411 + 28411 + + Shane Ray + Shane + Ray + Shane + Ray + + nfl.p.28411 + nfl.t.7 + Denver Broncos + Den + + 10 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/4HEvnmLgcjEiKLLxm4HIZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28411.png + small + + https://s.yimg.com/iu/api/res/1.2/4HEvnmLgcjEiKLLxm4HIZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28411.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25735 + 25735 + + Dont'a Hightower + Dont'a + Hightower + Dont'a + Hightower + + nfl.p.25735 + nfl.t.17 + New England Patriots + NE + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/FdgelLIjfZjbGCNkHWnI6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25735.png + small + + https://s.yimg.com/iu/api/res/1.2/FdgelLIjfZjbGCNkHWnI6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25735.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.29758 + 29758 + + Patrick Onwuasor + Patrick + Onwuasor + Patrick + Onwuasor + + nfl.p.29758 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/AkIc0tz_HKF_t9hlzik01Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29758.png + small + + https://s.yimg.com/iu/api/res/1.2/AkIc0tz_HKF_t9hlzik01Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29758.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29428 + 29428 + + Cory James + Cory + James + Cory + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29428 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/kvlBKFMHvkKy0bAsFYTOfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29428.png + small + + https://s.yimg.com/iu/api/res/1.2/kvlBKFMHvkKy0bAsFYTOfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29428.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27599 + 27599 + + Christian Kirksey + Christian + Kirksey + Christian + Kirksey + + nfl.p.27599 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/PAMs38otGE40ySQqg8d5qQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27599.png + small + + https://s.yimg.com/iu/api/res/1.2/PAMs38otGE40ySQqg8d5qQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27599.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 40 + 0 + + + + 380.p.28377 + 28377 + + Brian Peters + Brian + Peters + Brian + Peters + + nfl.p.28377 + nfl.t.34 + Houston Texans + Hou + + 10 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/nvdShZmWM9dfE7G7cuEXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28377.1.png + small + + https://s.yimg.com/iu/api/res/1.2/nvdShZmWM9dfE7G7cuEXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28377.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7875 + 7875 + + Elvis Dumervil + Elvis + Dumervil + Elvis + Dumervil + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7875 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/435xJrXxfTgf5xZTw4N02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7875.png + small + + https://s.yimg.com/iu/api/res/1.2/435xJrXxfTgf5xZTw4N02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7875.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.6792 + 6792 + + Karlos Dansby + Karlos + Dansby + Karlos + Dansby + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6792 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/fXfoWFhWkhwYBOXTkC1XMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/6792.png + small + + https://s.yimg.com/iu/api/res/1.2/fXfoWFhWkhwYBOXTkC1XMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/6792.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25757 + 25757 + + Bobby Wagner + Bobby + Wagner + Bobby + Wagner + + nfl.p.25757 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/4LlTQNs7gmpF4StvAvwHQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25757.png + small + + https://s.yimg.com/iu/api/res/1.2/4LlTQNs7gmpF4StvAvwHQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25757.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 84 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26727 + 26727 + + Jelani Jenkins + Jelani + Jenkins + Jelani + Jenkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26727 + nfl.t.34 + Houston Texans + Hou + + 10 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/vnJ0tq4N8U0II203sjShfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/26727.png + small + + https://s.yimg.com/iu/api/res/1.2/vnJ0tq4N8U0II203sjShfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/26727.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27702 + 27702 + + Devon Kennard + Devon + Kennard + Devon + Kennard + + nfl.p.27702 + nfl.t.8 + Detroit Lions + Det + + 6 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/rQKCV_QTkmNIklZCNoTkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27702.png + small + + https://s.yimg.com/iu/api/res/1.2/rQKCV_QTkmNIklZCNoTkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27702.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29409 + 29409 + + Jatavis Brown + Jatavis + Brown + Jatavis + Brown + + nfl.p.29409 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/WVRgCe2PHCpl.DiDFNp_8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29409.png + small + + https://s.yimg.com/iu/api/res/1.2/WVRgCe2PHCpl.DiDFNp_8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29409.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.26829 + 26829 + + Vince Williams + Vince + Williams + Vince + Williams + + nfl.p.26829 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 98 + LB + + https://s.yimg.com/iu/api/res/1.2/0CcAkWKGN1hsVhti3yc.mA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26829.png + small + + https://s.yimg.com/iu/api/res/1.2/0CcAkWKGN1hsVhti3yc.mA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26829.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 18 + 0 + + + + 380.p.27679 + 27679 + + Avery Williamson + Avery + Williamson + Avery + Williamson + + Q + Questionable + nfl.p.27679 + nfl.t.20 + New York Jets + NYJ + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/47Yb9q8hjWzNyapR.34rrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27679.png + small + + https://s.yimg.com/iu/api/res/1.2/47Yb9q8hjWzNyapR.34rrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27679.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.24855 + 24855 + + Kelvin Sheppard + Kelvin + Sheppard + Kelvin + Sheppard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24855 + nfl.t.19 + New York Giants + NYG + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/CbPfXlMVSxraOyKvKTgvkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24855.png + small + + https://s.yimg.com/iu/api/res/1.2/CbPfXlMVSxraOyKvKTgvkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24855.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25823 + 25823 + + Kyle Wilber + Kyle + Wilber + Kyle + Wilber + + nfl.p.25823 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/mT7Yltfnh3Wun4p7v7zl5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25823.png + small + + https://s.yimg.com/iu/api/res/1.2/mT7Yltfnh3Wun4p7v7zl5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25823.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29254 + 29254 + + Darron Lee + Darron + Lee + Darron + Lee + + nfl.p.29254 + nfl.t.20 + New York Jets + NYJ + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/nWkc8fULF5iYcork90ez8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29254.png + small + + https://s.yimg.com/iu/api/res/1.2/nWkc8fULF5iYcork90ez8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29254.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.9302 + 9302 + + Rey Maualuga + Rey + Maualuga + Rey + Maualuga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9302 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/ciEcaDBCCtm.HO_quiG6sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9302.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ciEcaDBCCtm.HO_quiG6sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9302.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8269 + 8269 + + Lawrence Timmons + Lawrence + Timmons + Lawrence + Timmons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8269 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 94 + LB + + https://s.yimg.com/iu/api/res/1.2/ACl1UtFxtD_3KVZHgG0fPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/8269.png + small + + https://s.yimg.com/iu/api/res/1.2/ACl1UtFxtD_3KVZHgG0fPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/8269.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27543 + 27543 + + Ryan Shazier + Ryan + Shazier + Ryan + Shazier + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.27543 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/.ikTPmmkEggoG._WTntAXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27543.png + small + + https://s.yimg.com/iu/api/res/1.2/.ikTPmmkEggoG._WTntAXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27543.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24189 + 24189 + + Willie Young + Willie + Young + Willie + Young + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24189 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 97 + LB + + https://s.yimg.com/iu/api/res/1.2/7qxX9IcidaxK9nkgledRLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24189.png + small + + https://s.yimg.com/iu/api/res/1.2/7qxX9IcidaxK9nkgledRLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24189.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29380 + 29380 + + Matt Judon + Matt + Judon + Matt + Judon + + nfl.p.29380 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/y5I_2OUK4kGkGwtHUDi.lA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29380.png + small + + https://s.yimg.com/iu/api/res/1.2/y5I_2OUK4kGkGwtHUDi.lA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29380.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.7191 + 7191 + + Derrick Johnson + Derrick + Johnson + Derrick + Johnson + + nfl.p.7191 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/l.AcI6Cd4iQH4ifp5zbbAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7191.png + small + + https://s.yimg.com/iu/api/res/1.2/l.AcI6Cd4iQH4ifp5zbbAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7191.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24803 + 24803 + + Ryan Kerrigan + Ryan + Kerrigan + Ryan + Kerrigan + + nfl.p.24803 + nfl.t.28 + Washington Redskins + Was + + 4 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/VXoKUyvEx1Y5dKVZYhSEwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24803.png + small + + https://s.yimg.com/iu/api/res/1.2/VXoKUyvEx1Y5dKVZYhSEwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24803.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 19 + 0 + + + + 380.p.9279 + 9279 + + Brian Cushing + Brian + Cushing + Brian + Cushing + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9279 + nfl.t.34 + Houston Texans + Hou + + 10 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/gLwdXlTHLTbf6POZllJMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/9279.png + small + + https://s.yimg.com/iu/api/res/1.2/gLwdXlTHLTbf6POZllJMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/9279.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28517 + 28517 + + Jake Ryan + Jake + Ryan + Jake + Ryan + + IR + Injured Reserve + torn right ACL + nfl.p.28517 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/DisPhmpZBL6cLgfi15QIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28517.png + small + + https://s.yimg.com/iu/api/res/1.2/DisPhmpZBL6cLgfi15QIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28517.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.6346 + 6346 + + Terrell Suggs + Terrell + Suggs + Terrell + Suggs + + nfl.p.6346 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/6prXXQug5KJiWaLNKHr0jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6346.png + small + + https://s.yimg.com/iu/api/res/1.2/6prXXQug5KJiWaLNKHr0jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6346.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 15 + 0 + + + + 380.p.28396 + 28396 + + Vic Beasley Jr. + Vic + Beasley Jr. + Vic + Beasley Jr. + + nfl.p.28396 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/V1VxZi9zzAK4Tsz.02eN1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28396.png + small + + https://s.yimg.com/iu/api/res/1.2/V1VxZi9zzAK4Tsz.02eN1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28396.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.28612 + 28612 + + Bryce Hager + Bryce + Hager + Bryce + Hager + + nfl.p.28612 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/NBwgUq95nr0QS.6zrY.vqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28612.png + small + + https://s.yimg.com/iu/api/res/1.2/NBwgUq95nr0QS.6zrY.vqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28612.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28431 + 28431 + + Benardrick McKinney + Benardrick + McKinney + Benardrick + McKinney + + nfl.p.28431 + nfl.t.34 + Houston Texans + Hou + + 10 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/mTKAcB1yH02cCpEsXt3Rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28431.1.png + small + + https://s.yimg.com/iu/api/res/1.2/mTKAcB1yH02cCpEsXt3Rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28431.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 22 + 0 + + + + 380.p.28512 + 28512 + + Kwon Alexander + Kwon + Alexander + Kwon + Alexander + + nfl.p.28512 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/qHRCglpkAQjj7KxlqoWDxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28512.png + small + + https://s.yimg.com/iu/api/res/1.2/qHRCglpkAQjj7KxlqoWDxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28512.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 58 + 0 + + + + 380.p.24030 + 24030 + + Sean Lee + Sean + Lee + Sean + Lee + + nfl.p.24030 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/BMZvWgNGshLbSoHZhhH5gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24030.png + small + + https://s.yimg.com/iu/api/res/1.2/BMZvWgNGshLbSoHZhhH5gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24030.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 50 + 0 + + + + 380.p.29285 + 29285 + + Deion Jones + Deion + Jones + Deion + Jones + + nfl.p.29285 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/rIEUZ9ogwS5kxU9BUbncsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29285.png + small + + https://s.yimg.com/iu/api/res/1.2/rIEUZ9ogwS5kxU9BUbncsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29285.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 76 + 0 + + + + 380.p.29322 + 29322 + + Kyler Fackrell + Kyler + Fackrell + Kyler + Fackrell + + nfl.p.29322 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/YPYzgvBjO4NokEETIMyMMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29322.png + small + + https://s.yimg.com/iu/api/res/1.2/YPYzgvBjO4NokEETIMyMMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29322.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26629 + 26629 + + Barkevious Mingo + Barkevious + Mingo + Barkevious + Mingo + + nfl.p.26629 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lOIrElrDW4uPap2Yn_4WmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26629.png + small + + https://s.yimg.com/iu/api/res/1.2/lOIrElrDW4uPap2Yn_4WmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26629.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26675 + 26675 + + Jamie Collins Sr. + Jamie + Collins Sr. + Jamie + Collins Sr. + + nfl.p.26675 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/UyiN6XUeq96PToJwUs3AjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26675.png + small + + https://s.yimg.com/iu/api/res/1.2/UyiN6XUeq96PToJwUs3AjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26675.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.26669 + 26669 + + Kiko Alonso + Kiko + Alonso + Kiko + Alonso + + nfl.p.26669 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/5Cobo6gyCnVuw8lQGuy2MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26669.png + small + + https://s.yimg.com/iu/api/res/1.2/5Cobo6gyCnVuw8lQGuy2MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26669.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 13 + 0 + + + + 380.p.25689 + 25689 + + Craig Robertson + Craig + Robertson + Craig + Robertson + + nfl.p.25689 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/x8S6f3KwX3eRqBR_nDEwXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25689.png + small + + https://s.yimg.com/iu/api/res/1.2/x8S6f3KwX3eRqBR_nDEwXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25689.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27839 + 27839 + + Christian Jones + Christian + Jones + Christian + Jones + + nfl.p.27839 + nfl.t.8 + Detroit Lions + Det + + 6 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/kmbd8bpFl7nsivQCOelrdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27839.png + small + + https://s.yimg.com/iu/api/res/1.2/kmbd8bpFl7nsivQCOelrdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27839.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25864 + 25864 + + Korey Toomer + Korey + Toomer + Korey + Toomer + + nfl.p.25864 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/E3cZrLFjwDIkekGP9MYrZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25864.1.png + small + + https://s.yimg.com/iu/api/res/1.2/E3cZrLFjwDIkekGP9MYrZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25864.1.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29349 + 29349 + + De'Vondre Campbell + De'Vondre + Campbell + De'Vondre + Campbell + + nfl.p.29349 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/IC2WCaTC4BpJsujPr8AUfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29349.png + small + + https://s.yimg.com/iu/api/res/1.2/IC2WCaTC4BpJsujPr8AUfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29349.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.26856 + 26856 + + David Bass + David + Bass + David + Bass + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26856 + nfl.t.20 + New York Jets + NYJ + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/EyRrmp6dZFKafdMEwnhwWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26856.png + small + + https://s.yimg.com/iu/api/res/1.2/EyRrmp6dZFKafdMEwnhwWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26856.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24066 + 24066 + + NaVorro Bowman + NaVorro + Bowman + NaVorro + Bowman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24066 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/uuWKPvtHox2tWqK3d8M1Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24066.png + small + + https://s.yimg.com/iu/api/res/1.2/uuWKPvtHox2tWqK3d8M1Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24066.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27537 + 27537 + + Anthony Barr + Anthony + Barr + Anthony + Barr + + nfl.p.27537 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/Qequt9OKnO9ZR3.nrJ3cZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27537.png + small + + https://s.yimg.com/iu/api/res/1.2/Qequt9OKnO9ZR3.nrJ3cZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27537.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28557 + 28557 + + David Mayo + David + Mayo + David + Mayo + + nfl.p.28557 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/lra4gTyr1lSynrSIc.wV5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28557.png + small + + https://s.yimg.com/iu/api/res/1.2/lra4gTyr1lSynrSIc.wV5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28557.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25848 + 25848 + + Tahir Whitehead + Tahir + Whitehead + Tahir + Whitehead + + nfl.p.25848 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/WI9Fnf.hphH2e5nqXu9qQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25848.png + small + + https://s.yimg.com/iu/api/res/1.2/WI9Fnf.hphH2e5nqXu9qQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25848.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.28695 + 28695 + + John Timu + John + Timu + John + Timu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28695 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/nN_87uaRCbzPC9EWKU.xTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28695.png + small + + https://s.yimg.com/iu/api/res/1.2/nN_87uaRCbzPC9EWKU.xTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28695.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29505 + 29505 + + Jared Norris + Jared + Norris + Jared + Norris + + nfl.p.29505 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/5BMFP0WZPzhbJaZeiKm.rQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29505.png + small + + https://s.yimg.com/iu/api/res/1.2/5BMFP0WZPzhbJaZeiKm.rQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29505.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26475 + 26475 + + Emmanuel Lamur + Emmanuel + Lamur + Emmanuel + Lamur + + nfl.p.26475 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/4uQiqAXjap9fcX88ZI.xJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26475.png + small + + https://s.yimg.com/iu/api/res/1.2/4uQiqAXjap9fcX88ZI.xJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26475.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9554 + 9554 + + Jonathan Casillas + Jonathan + Casillas + Jonathan + Casillas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9554 + nfl.t.19 + New York Giants + NYG + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/dxzslZ.VrJVujUj6ge5gvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/9554.png + small + + https://s.yimg.com/iu/api/res/1.2/dxzslZ.VrJVujUj6ge5gvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/9554.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28413 + 28413 + + Shaq Thompson + Shaq + Thompson + Shaq + Thompson + + nfl.p.28413 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/rc6PxWvM.mPykFUDNgL5xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/28413.png + small + + https://s.yimg.com/iu/api/res/1.2/rc6PxWvM.mPykFUDNgL5xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/28413.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.29718 + 29718 + + Cory Littleton + Cory + Littleton + Cory + Littleton + + nfl.p.29718 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24952 + 24952 + + Pernell McPhee + Pernell + McPhee + Pernell + McPhee + + nfl.p.24952 + nfl.t.28 + Washington Redskins + Was + + 4 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/diHCPcYhIgQT5PEhDc9Llg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24952.png + small + + https://s.yimg.com/iu/api/res/1.2/diHCPcYhIgQT5PEhDc9Llg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24952.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27940 + 27940 + + Adarius Taylor + Adarius + Taylor + Adarius + Taylor + + nfl.p.27940 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/8gisnDQsVdb0S_BpIpLlJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27940.png + small + + https://s.yimg.com/iu/api/res/1.2/8gisnDQsVdb0S_BpIpLlJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27940.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24193 + 24193 + + Dekoda Watson + Dekoda + Watson + Dekoda + Watson + + nfl.p.24193 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 97 + LB + + https://s.yimg.com/iu/api/res/1.2/rIkwBbbMZEf6EI0q_B.zTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24193.png + small + + https://s.yimg.com/iu/api/res/1.2/rIkwBbbMZEf6EI0q_B.zTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24193.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26771 + 26771 + + A.J. Klein + A.J. + Klein + A.J. + Klein + + nfl.p.26771 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/fVsaZYJ0zgqT.pAx8ndY3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26771.png + small + + https://s.yimg.com/iu/api/res/1.2/fVsaZYJ0zgqT.pAx8ndY3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26771.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28600 + 28600 + + Anthony Chickillo + Anthony + Chickillo + Anthony + Chickillo + + nfl.p.28600 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/2lw_09UkrmuoB7mV9K2QVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28600.png + small + + https://s.yimg.com/iu/api/res/1.2/2lw_09UkrmuoB7mV9K2QVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28600.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26668 + 26668 + + Kevin Minter + Kevin + Minter + Kevin + Minter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26668 + nfl.t.20 + New York Jets + NYJ + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/3x3zt3776Xwo3ixVsIOz4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26668.png + small + + https://s.yimg.com/iu/api/res/1.2/3x3zt3776Xwo3ixVsIOz4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26668.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27740 + 27740 + + Marquis Flowers + Marquis + Flowers + Marquis + Flowers + + nfl.p.27740 + nfl.t.8 + Detroit Lions + Det + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/X2Rl3IMtX4kP3IAStaYgLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27740.1.png + small + + https://s.yimg.com/iu/api/res/1.2/X2Rl3IMtX4kP3IAStaYgLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27740.1.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29394 + 29394 + + Kentrell Brothers + Kentrell + Brothers + Kentrell + Brothers + + SUSP + Suspended + nfl.p.29394 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/PGHHPvc17KdIbN1mvWShaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29394.png + small + + https://s.yimg.com/iu/api/res/1.2/PGHHPvc17KdIbN1mvWShaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29394.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8944 + 8944 + + Erik Walden + Erik + Walden + Erik + Walden + + IR + Injured Reserve + hip + nfl.p.8944 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/nRAgAzyUombIBWV_0iFvyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8944.1.png + small + + https://s.yimg.com/iu/api/res/1.2/nRAgAzyUombIBWV_0iFvyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8944.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29480 + 29480 + + Tyler Matakevich + Tyler + Matakevich + Tyler + Matakevich + + nfl.p.29480 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/UurjPiLR1BdNMfz7KamgOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29480.png + small + + https://s.yimg.com/iu/api/res/1.2/UurjPiLR1BdNMfz7KamgOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29480.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8370 + 8370 + + Zak DeOssie + Zak + DeOssie + Zak + DeOssie + + nfl.p.8370 + nfl.t.19 + New York Giants + NYG + + 9 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/3Z_7oPEQgwVki5R6cD4yIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8370.png + small + + https://s.yimg.com/iu/api/res/1.2/3Z_7oPEQgwVki5R6cD4yIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8370.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25768 + 25768 + + Lavonte David + Lavonte + David + Lavonte + David + + nfl.p.25768 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/YO.9RYMQL8tOSgKgnDpVaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25768.png + small + + https://s.yimg.com/iu/api/res/1.2/YO.9RYMQL8tOSgKgnDpVaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25768.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 45 + 0 + + + + 380.p.28720 + 28720 + + Zaire Anderson + Zaire + Anderson + Zaire + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28720 + nfl.t.7 + Denver Broncos + Den + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/P3yaFqExcnhDjYiLFICdOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28720.1.png + small + + https://s.yimg.com/iu/api/res/1.2/P3yaFqExcnhDjYiLFICdOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28720.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24949 + 24949 + + Chris Carter + Chris + Carter + Chris + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24949 + nfl.t.28 + Washington Redskins + Was + + 4 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/bYn17XtA_3pZk8TUCH8vOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24949.1.png + small + + https://s.yimg.com/iu/api/res/1.2/bYn17XtA_3pZk8TUCH8vOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24949.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28529 + 28529 + + Martrell Spaight + Martrell + Spaight + Martrell + Spaight + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28529 + nfl.t.28 + Washington Redskins + Was + + 4 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/8pquj_as2YrVzE9a7NG9uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28529.png + small + + https://s.yimg.com/iu/api/res/1.2/8pquj_as2YrVzE9a7NG9uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28529.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25688 + 25688 + + Michael Wilhoite + Michael + Wilhoite + Michael + Wilhoite + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25688 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/SJmin0yAee2.8yi1fgMFvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25688.png + small + + https://s.yimg.com/iu/api/res/1.2/SJmin0yAee2.8yi1fgMFvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25688.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27820 + 27820 + + Shaquil Barrett + Shaquil + Barrett + Shaquil + Barrett + + nfl.p.27820 + nfl.t.7 + Denver Broncos + Den + + 10 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/mbA.8TsZmVRL6WUBsU6tPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27820.png + small + + https://s.yimg.com/iu/api/res/1.2/mbA.8TsZmVRL6WUBsU6tPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27820.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25852 + 25852 + + Brandon Marshall + Brandon + Marshall + Brandon + Marshall + + nfl.p.25852 + nfl.t.7 + Denver Broncos + Den + + 10 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/a996nYJiUJIiDc9KflXqAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25852.png + small + + https://s.yimg.com/iu/api/res/1.2/a996nYJiUJIiDc9KflXqAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25852.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + 380.p.28312 + 28312 + + Todd Davis + Todd + Davis + Todd + Davis + + nfl.p.28312 + nfl.t.7 + Denver Broncos + Den + + 10 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/.AtWAOCCVDv6c5g8OEDmlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28312.png + small + + https://s.yimg.com/iu/api/res/1.2/.AtWAOCCVDv6c5g8OEDmlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28312.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28089 + 28089 + + Joe Thomas + Joe + Thomas + Joe + Thomas + + nfl.p.28089 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/bPnXxyYvgV87J0PvI0gH3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28089.png + small + + https://s.yimg.com/iu/api/res/1.2/bPnXxyYvgV87J0PvI0gH3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28089.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27801 + 27801 + + Brock Coyle + Brock + Coyle + Brock + Coyle + + nfl.p.27801 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/KSXS_5161jvSo9.mXBRbaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27801.png + small + + https://s.yimg.com/iu/api/res/1.2/KSXS_5161jvSo9.mXBRbaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27801.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25796 + 25796 + + Sean Spence + Sean + Spence + Sean + Spence + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25796 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/2KgHhD9GBLWxLTjDFVwccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25796.png + small + + https://s.yimg.com/iu/api/res/1.2/2KgHhD9GBLWxLTjDFVwccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25796.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28707 + 28707 + + Jonathan Anderson + Jonathan + Anderson + Jonathan + Anderson + + undisclosed + nfl.p.28707 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/Dza3oUJe85rCETPtHWDURA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28707.png + small + + https://s.yimg.com/iu/api/res/1.2/Dza3oUJe85rCETPtHWDURA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28707.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24890 + 24890 + + Sam Acho + Sam + Acho + Sam + Acho + + nfl.p.24890 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/FLBk7ULeeCdPQfK5DlOYBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24890.png + small + + https://s.yimg.com/iu/api/res/1.2/FLBk7ULeeCdPQfK5DlOYBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24890.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25980 + 25980 + + Steven Johnson + Steven + Johnson + Steven + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25980 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/rqEPdFNFZaqf12vHo3wexQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/25980.png + small + + https://s.yimg.com/iu/api/res/1.2/rqEPdFNFZaqf12vHo3wexQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/25980.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29333 + 29333 + + Joe Schobert + Joe + Schobert + Joe + Schobert + + nfl.p.29333 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/90HWI.vWPajiltE_vF2Ecg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29333.png + small + + https://s.yimg.com/iu/api/res/1.2/90HWI.vWPajiltE_vF2Ecg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29333.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 21 + 0 + + + + 380.p.9072 + 9072 + + Wesley Woodyard + Wesley + Woodyard + Wesley + Woodyard + + nfl.p.9072 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/fSlveMGkJEaNgqNunncuJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9072.png + small + + https://s.yimg.com/iu/api/res/1.2/fSlveMGkJEaNgqNunncuJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9072.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 21 + 0 + + + + 380.p.25815 + 25815 + + Nigel Bradham + Nigel + Bradham + Nigel + Bradham + + SUSP + Suspended + nfl.p.25815 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/RVApK2yJQEXG.DR1YFVZDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25815.png + small + + https://s.yimg.com/iu/api/res/1.2/RVApK2yJQEXG.DR1YFVZDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25815.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29309 + 29309 + + Shilique Calhoun + Shilique + Calhoun + Shilique + Calhoun + + nfl.p.29309 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/FXc8W7p_IJmsVceXDy_DoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29309.png + small + + https://s.yimg.com/iu/api/res/1.2/FXc8W7p_IJmsVceXDy_DoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29309.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26836 + 26836 + + Michael Mauti + Michael + Mauti + Michael + Mauti + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26836 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/7f9_IG9Ty0_miF11Ar9UcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26836.png + small + + https://s.yimg.com/iu/api/res/1.2/7f9_IG9Ty0_miF11Ar9UcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26836.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29807 + 29807 + + Brennan Scarlett + Brennan + Scarlett + Brennan + Scarlett + + nfl.p.29807 + nfl.t.34 + Houston Texans + Hou + + 10 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/ko.QNRZNK0_mnqOqAKOyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29807.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ko.QNRZNK0_mnqOqAKOyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29807.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25717 + 25717 + + Mark Barron + Mark + Barron + Mark + Barron + + Q + Questionable + nfl.p.25717 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 26 + LB + + https://s.yimg.com/iu/api/res/1.2/aeDRMpxWKAyDL5HaxfPB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25717.png + small + + https://s.yimg.com/iu/api/res/1.2/aeDRMpxWKAyDL5HaxfPB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25717.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 24 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.24857 + 24857 + + Justin Houston + Justin + Houston + Justin + Houston + + nfl.p.24857 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/B4NtfbNmrQC8IkA8jSwydQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24857.png + small + + https://s.yimg.com/iu/api/res/1.2/B4NtfbNmrQC8IkA8jSwydQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24857.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 15 + 0 + + + + 380.p.27551 + 27551 + + Dee Ford + Dee + Ford + Dee + Ford + + nfl.p.27551 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/SjazJHm1u0N9anoG76Hnuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27551.png + small + + https://s.yimg.com/iu/api/res/1.2/SjazJHm1u0N9anoG76Hnuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27551.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27672 + 27672 + + Telvin Smith + Telvin + Smith + Telvin + Smith + + nfl.p.27672 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/NJ3gcUFwVakY70HwNsqzeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27672.png + small + + https://s.yimg.com/iu/api/res/1.2/NJ3gcUFwVakY70HwNsqzeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27672.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 88 + 0 + + + + 380.p.26975 + 26975 + + LaRoy Reynolds + LaRoy + Reynolds + LaRoy + Reynolds + + nfl.p.26975 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/Jq83YCs3kfVma0kh29jLiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26975.png + small + + https://s.yimg.com/iu/api/res/1.2/Jq83YCs3kfVma0kh29jLiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26975.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28433 + 28433 + + Eric Kendricks + Eric + Kendricks + Eric + Kendricks + + nfl.p.28433 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/soAPyJN8PKXHEfff_irU6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28433.png + small + + https://s.yimg.com/iu/api/res/1.2/soAPyJN8PKXHEfff_irU6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28433.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 31 + 0 + + + + 380.p.28998 + 28998 + + Matt Longacre + Matt + Longacre + Matt + Longacre + + nfl.p.28998 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/soUkzHuEmnOsXyDUnLnwqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28998.png + small + + https://s.yimg.com/iu/api/res/1.2/soUkzHuEmnOsXyDUnLnwqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28998.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8302 + 8302 + + Justin Durant + Justin + Durant + Justin + Durant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8302 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/9yB1OsJ83mEMDPVgdabUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/8302.png + small + + https://s.yimg.com/iu/api/res/1.2/9yB1OsJ83mEMDPVgdabUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/8302.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8006 + 8006 + + Ahmad Brooks + Ahmad + Brooks + Ahmad + Brooks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8006 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/XdPjxsKHu7wRbN8yw.6s0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8006.png + small + + https://s.yimg.com/iu/api/res/1.2/XdPjxsKHu7wRbN8yw.6s0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8006.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28472 + 28472 + + Jordan Hicks + Jordan + Hicks + Jordan + Hicks + + nfl.p.28472 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/1Hyh3QKIwCEXu9NHxjHnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28472.png + small + + https://s.yimg.com/iu/api/res/1.2/1Hyh3QKIwCEXu9NHxjHnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28472.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.27179 + 27179 + + Josh Martin + Josh + Martin + Josh + Martin + + Q + Questionable + nfl.p.27179 + nfl.t.20 + New York Jets + NYJ + + 11 + + 95 + LB + + https://s.yimg.com/iu/api/res/1.2/N1SklK1WfmUZCJrUVzFcfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27179.1.png + small + + https://s.yimg.com/iu/api/res/1.2/N1SklK1WfmUZCJrUVzFcfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27179.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27555 + 27555 + + Deone Bucannon + Deone + Bucannon + Deone + Bucannon + + nfl.p.27555 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 20 + LB + + https://s.yimg.com/iu/api/res/1.2/srk_jEDRgMoD6wy3KKNitA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27555.png + small + + https://s.yimg.com/iu/api/res/1.2/srk_jEDRgMoD6wy3KKNitA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27555.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + 380.p.24336 + 24336 + + Vincent Rey + Vincent + Rey + Vincent + Rey + + Q + Questionable + nfl.p.24336 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/bQAYxL_ewKALg7gR6TbYPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24336.1.png + small + + https://s.yimg.com/iu/api/res/1.2/bQAYxL_ewKALg7gR6TbYPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24336.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24827 + 24827 + + Bruce Carter + Bruce + Carter + Bruce + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24827 + nfl.t.20 + New York Jets + NYJ + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/brwxRdbrjxXPJy0NuzYlSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24827.1.png + small + + https://s.yimg.com/iu/api/res/1.2/brwxRdbrjxXPJy0NuzYlSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24827.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27660 + 27660 + + Kevin Pierre-Louis + Kevin + Pierre-Louis + Kevin + Pierre-Louis + + SUSP + Suspended + nfl.p.27660 + nfl.t.20 + New York Jets + NYJ + + 11 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/xYCet6QzTkZbHoWv84xeWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27660.png + small + + https://s.yimg.com/iu/api/res/1.2/xYCet6QzTkZbHoWv84xeWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27660.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26093 + 26093 + + Julian Stanford + Julian + Stanford + Julian + Stanford + + Q + Questionable + nfl.p.26093 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/fNi7LUd8m4juZqH0.G8V7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26093.1.png + small + + https://s.yimg.com/iu/api/res/1.2/fNi7LUd8m4juZqH0.G8V7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26093.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28560 + 28560 + + D.J. Alexander + D.J. + Alexander + D.J. + Alexander + + nfl.p.28560 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/xIBC3z8z19M8QSQ32qqSmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28560.png + small + + https://s.yimg.com/iu/api/res/1.2/xIBC3z8z19M8QSQ32qqSmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28560.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24789 + 24789 + + Von Miller + Von + Miller + Von + Miller + + nfl.p.24789 + nfl.t.7 + Denver Broncos + Den + + 10 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/3BUQnHsq1.CHC6nS1g3vjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24789.png + small + + https://s.yimg.com/iu/api/res/1.2/3BUQnHsq1.CHC6nS1g3vjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24789.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 58 + 0 + + + + 380.p.28541 + 28541 + + Kyle Emanuel + Kyle + Emanuel + Kyle + Emanuel + + nfl.p.28541 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/KKgdqyAqgHc1AAjAczntkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28541.png + small + + https://s.yimg.com/iu/api/res/1.2/KKgdqyAqgHc1AAjAczntkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28541.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26816 + 26816 + + Nate Palmer + Nate + Palmer + Nate + Palmer + + IR + Injured Reserve + leg + nfl.p.26816 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/upupuWh4eQTPx8dJErupzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26816.png + small + + https://s.yimg.com/iu/api/res/1.2/upupuWh4eQTPx8dJErupzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26816.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27203 + 27203 + + Will Compton + Will + Compton + Will + Compton + + nfl.p.27203 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/EXOZg0vHNnhx5AB2BQP0rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27203.png + small + + https://s.yimg.com/iu/api/res/1.2/EXOZg0vHNnhx5AB2BQP0rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27203.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29270 + 29270 + + Myles Jack + Myles + Jack + Myles + Jack + + nfl.p.29270 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/ePd.EBzTpfi1ztkalJCZPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29270.png + small + + https://s.yimg.com/iu/api/res/1.2/ePd.EBzTpfi1ztkalJCZPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29270.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 52 + 0 + + + + 380.p.28515 + 28515 + + Damien Wilson + Damien + Wilson + Damien + Wilson + + nfl.p.28515 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/LqgmkuJlPEH8X6NUMRjw_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28515.png + small + + https://s.yimg.com/iu/api/res/1.2/LqgmkuJlPEH8X6NUMRjw_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28515.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28506 + 28506 + + Ramik Wilson + Ramik + Wilson + Ramik + Wilson + + nfl.p.28506 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/5c3TFzedFuQ_K88TeA6CWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28506.1.png + small + + https://s.yimg.com/iu/api/res/1.2/5c3TFzedFuQ_K88TeA6CWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28506.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24871 + 24871 + + Mason Foster + Mason + Foster + Mason + Foster + + nfl.p.24871 + nfl.t.28 + Washington Redskins + Was + + 4 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/gcTWayAWiJjrpr_0VPu0.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24871.png + small + + https://s.yimg.com/iu/api/res/1.2/gcTWayAWiJjrpr_0VPu0.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24871.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.9277 + 9277 + + Brian Orakpo + Brian + Orakpo + Brian + Orakpo + + nfl.p.9277 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 98 + LB + + https://s.yimg.com/iu/api/res/1.2/mU_p9I6JLtlbZDvEsXzEWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9277.png + small + + https://s.yimg.com/iu/api/res/1.2/mU_p9I6JLtlbZDvEsXzEWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9277.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27678 + 27678 + + Aaron Lynch + Aaron + Lynch + Aaron + Lynch + + Q + Questionable + nfl.p.27678 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/g2VskYWgcukj89naChY.DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27678.png + small + + https://s.yimg.com/iu/api/res/1.2/g2VskYWgcukj89naChY.DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27678.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7569 + 7569 + + Lorenzo Alexander + Lorenzo + Alexander + Lorenzo + Alexander + + nfl.p.7569 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/l4Ambvd3B8AjxDzQzNfdFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7569.png + small + + https://s.yimg.com/iu/api/res/1.2/l4Ambvd3B8AjxDzQzNfdFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7569.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26238 + 26238 + + Vontaze Burfict + Vontaze + Burfict + Vontaze + Burfict + + SUSP + Suspended + nfl.p.26238 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/rSpDPdSOcrlgg8H7.MLS9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26238.png + small + + https://s.yimg.com/iu/api/res/1.2/rSpDPdSOcrlgg8H7.MLS9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26238.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.24886 + 24886 + + K.J. Wright + K.J. + Wright + K.J. + Wright + + D + Doubtful + nfl.p.24886 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/94vFYz8I1UXwBsFwd8_raw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24886.png + small + + https://s.yimg.com/iu/api/res/1.2/94vFYz8I1UXwBsFwd8_raw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24886.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.27601 + 27601 + + Preston Brown + Preston + Brown + Preston + Brown + + nfl.p.27601 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/MqorqPgF3Z8C5H8177tY.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27601.1.png + small + + https://s.yimg.com/iu/api/res/1.2/MqorqPgF3Z8C5H8177tY.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27601.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 14 + 0 + + + + 380.p.29955 + 29955 + + James Cowser + James + Cowser + James + Cowser + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29955 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/se3ss53Unzno0vcfIOoV9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29955.png + small + + https://s.yimg.com/iu/api/res/1.2/se3ss53Unzno0vcfIOoV9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29955.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29442 + 29442 + + Kamu Grugier-Hill + Kamu + Grugier-Hill + Kamu + Grugier-Hill + + nfl.p.29442 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/6jDpAhoGM.5ZhFTlEQcbMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/29442.png + small + + https://s.yimg.com/iu/api/res/1.2/6jDpAhoGM.5ZhFTlEQcbMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/29442.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28419 + 28419 + + Stephone Anthony + Stephone + Anthony + Stephone + Anthony + + nfl.p.28419 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/REqET0T8l98SLrSP6cHplg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28419.png + small + + https://s.yimg.com/iu/api/res/1.2/REqET0T8l98SLrSP6cHplg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28419.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27166 + 27166 + + Daren Bates + Daren + Bates + Daren + Bates + + nfl.p.27166 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/1aVfyPZG0L2BNHYaiVc1Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27166.png + small + + https://s.yimg.com/iu/api/res/1.2/1aVfyPZG0L2BNHYaiVc1Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27166.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28510 + 28510 + + Za'Darius Smith + Za'Darius + Smith + Za'Darius + Smith + + nfl.p.28510 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 90 + LB + + https://s.yimg.com/iu/api/res/1.2/fp2hO0qhwXNkc5ybWDO65Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28510.png + small + + https://s.yimg.com/iu/api/res/1.2/fp2hO0qhwXNkc5ybWDO65Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28510.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27612 + 27612 + + Kareem Martin + Kareem + Martin + Kareem + Martin + + nfl.p.27612 + nfl.t.19 + New York Giants + NYG + + 9 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/ByVG4f_SVdptdKklVQf_0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27612.png + small + + https://s.yimg.com/iu/api/res/1.2/ByVG4f_SVdptdKklVQf_0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27612.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29317 + 29317 + + Jordan Jenkins + Jordan + Jenkins + Jordan + Jenkins + + nfl.p.29317 + nfl.t.20 + New York Jets + NYJ + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/vxxS5.kTTQqVljGWSdtYeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29317.1.png + small + + https://s.yimg.com/iu/api/res/1.2/vxxS5.kTTQqVljGWSdtYeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29317.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29347 + 29347 + + Nick Kwiatkoski + Nick + Kwiatkoski + Nick + Kwiatkoski + + nfl.p.29347 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/b.20YBMaAYVkTQFr1W.Vfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29347.png + small + + https://s.yimg.com/iu/api/res/1.2/b.20YBMaAYVkTQFr1W.Vfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29347.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28426 + 28426 + + Preston Smith + Preston + Smith + Preston + Smith + + nfl.p.28426 + nfl.t.28 + Washington Redskins + Was + + 4 + + 94 + LB + + https://s.yimg.com/iu/api/res/1.2/Z7a78D.vuglfTvoofIKb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28426.png + small + + https://s.yimg.com/iu/api/res/1.2/Z7a78D.vuglfTvoofIKb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28426.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25756 + 25756 + + Mychal Kendricks + Mychal + Kendricks + Mychal + Kendricks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25756 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/gRy0GT76iBh9SGAirOcnSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25756.png + small + + https://s.yimg.com/iu/api/res/1.2/gRy0GT76iBh9SGAirOcnSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25756.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25787 + 25787 + + Demario Davis + Demario + Davis + Demario + Davis + + nfl.p.25787 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/UuxpS.s49a2efDQeDv5xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/25787.png + small + + https://s.yimg.com/iu/api/res/1.2/UuxpS.s49a2efDQeDv5xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/25787.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 36 + 0 + + + + 380.p.28467 + 28467 + + Eli Harold + Eli + Harold + Eli + Harold + + nfl.p.28467 + nfl.t.8 + Detroit Lions + Det + + 6 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/JRkdbCEsNJBmz.U9xLM8Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28467.png + small + + https://s.yimg.com/iu/api/res/1.2/JRkdbCEsNJBmz.U9xLM8Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28467.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25829 + 25829 + + Keenan Robinson + Keenan + Robinson + Keenan + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25829 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/RRMBbuTFKLN3V7bdmPLdXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/25829.png + small + + https://s.yimg.com/iu/api/res/1.2/RRMBbuTFKLN3V7bdmPLdXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/25829.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25898 + 25898 + + Danny Trevathan + Danny + Trevathan + Danny + Trevathan + + nfl.p.25898 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/WwSCJ87_06XZN84diI2qyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25898.png + small + + https://s.yimg.com/iu/api/res/1.2/WwSCJ87_06XZN84diI2qyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25898.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.29365 + 29365 + + Blake Martinez + Blake + Martinez + Blake + Martinez + + nfl.p.29365 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/92UkEy2ciA65_znHK1GB7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29365.png + small + + https://s.yimg.com/iu/api/res/1.2/92UkEy2ciA65_znHK1GB7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29365.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 64 + 0 + + + + 380.p.25358 + 25358 + + Josh Bynes + Josh + Bynes + Josh + Bynes + + nfl.p.25358 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/c13qX75nT7yF6sIV3hGl_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25358.png + small + + https://s.yimg.com/iu/api/res/1.2/c13qX75nT7yF6sIV3hGl_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25358.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7190 + 7190 + + Thomas Davis + Thomas + Davis + Thomas + Davis + + SUSP + Suspended + nfl.p.7190 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/RfebfWbyfj.Sq01Aw0JWyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7190.png + small + + https://s.yimg.com/iu/api/res/1.2/RfebfWbyfj.Sq01Aw0JWyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7190.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26370 + 26370 + + L.J. Fort + L.J. + Fort + L.J. + Fort + + nfl.p.26370 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/kYkKdROQeNi7w9JDO6PD0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26370.png + small + + https://s.yimg.com/iu/api/res/1.2/kYkKdROQeNi7w9JDO6PD0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26370.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25762 + 25762 + + Zach Brown + Zach + Brown + Zach + Brown + + Q + Questionable + nfl.p.25762 + nfl.t.28 + Washington Redskins + Was + + 4 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/si.pBHKzFo2snKD_7ZKGXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25762.1.png + small + + https://s.yimg.com/iu/api/res/1.2/si.pBHKzFo2snKD_7ZKGXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25762.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 48 + 0 + + + + 380.p.29359 + 29359 + + Antonio Morrison + Antonio + Morrison + Antonio + Morrison + + nfl.p.29359 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/l7nwGPqoioAZ9FwzN7ZnHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29359.1.png + small + + https://s.yimg.com/iu/api/res/1.2/l7nwGPqoioAZ9FwzN7ZnHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29359.1.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28410 + 28410 + + Bud Dupree + Bud + Dupree + Bud + Dupree + + nfl.p.28410 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/TAsGO5.1ErcmOW4KQQ_thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28410.png + small + + https://s.yimg.com/iu/api/res/1.2/TAsGO5.1ErcmOW4KQQ_thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28410.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26653 + 26653 + + Alec Ogletree + Alec + Ogletree + Alec + Ogletree + + nfl.p.26653 + nfl.t.19 + New York Giants + NYG + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/gAeQaebj6vYqg7yGY4iqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26653.png + small + + https://s.yimg.com/iu/api/res/1.2/gAeQaebj6vYqg7yGY4iqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26653.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 32 + 0 + + + + 380.p.29243 + 29243 + + Leonard Floyd + Leonard + Floyd + Leonard + Floyd + + Q + Questionable + nfl.p.29243 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 94 + LB + + https://s.yimg.com/iu/api/res/1.2/zljUzhNjRAhADWt1gjC4ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29243.png + small + + https://s.yimg.com/iu/api/res/1.2/zljUzhNjRAhADWt1gjC4ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29243.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.28436 + 28436 + + Denzel Perryman + Denzel + Perryman + Denzel + Perryman + + nfl.p.28436 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/zi2ejDT4Tpf6TH.YtAjfnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28436.png + small + + https://s.yimg.com/iu/api/res/1.2/zi2ejDT4Tpf6TH.YtAjfnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28436.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30424 + 30424 + + Nigel Harris + Nigel + Harris + Nigel + Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30424 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30428 + 30428 + + James Onwualu + James + Onwualu + James + Onwualu + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30428 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30306 + 30306 + + Jordan Evans + Jordan + Evans + Jordan + Evans + + nfl.p.30306 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30238 + 30238 + + Samson Ebukam + Samson + Ebukam + Samson + Ebukam + + nfl.p.30238 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30172 + 30172 + + Tanoh Kpassagnon + Tanoh + Kpassagnon + Tanoh + Kpassagnon + + nfl.p.30172 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 92 + LB + + https://s.yimg.com/iu/api/res/1.2/pxssCLuu5UleuEGFwwsKjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30172.png + small + + https://s.yimg.com/iu/api/res/1.2/pxssCLuu5UleuEGFwwsKjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30172.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28554 + 28554 + + Joe Cardona + Joe + Cardona + Joe + Cardona + + nfl.p.28554 + nfl.t.17 + New England Patriots + NE + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/1NYQ6PC__cbgEJ3HukKddg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28554.png + small + + https://s.yimg.com/iu/api/res/1.2/1NYQ6PC__cbgEJ3HukKddg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28554.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30162 + 30162 + + Ryan Anderson + Ryan + Anderson + Ryan + Anderson + + nfl.p.30162 + nfl.t.28 + Washington Redskins + Was + + 4 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/zcCLmuXy8LQ0qEMBD1KLLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30162.png + small + + https://s.yimg.com/iu/api/res/1.2/zcCLmuXy8LQ0qEMBD1KLLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30162.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29276 + 29276 + + Kamalei Correa + Kamalei + Correa + Kamalei + Correa + + nfl.p.29276 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/zFRPugcziN6PsO5kDShB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29276.png + small + + https://s.yimg.com/iu/api/res/1.2/zFRPugcziN6PsO5kDShB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29276.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30583 + 30583 + + Hardy Nickerson + Hardy + Nickerson + Hardy + Nickerson + + nfl.p.30583 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/9n0fi.sMhOqAMmn8wmcxcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30583.png + small + + https://s.yimg.com/iu/api/res/1.2/9n0fi.sMhOqAMmn8wmcxcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30583.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29268 + 29268 + + Jaylon Smith + Jaylon + Smith + Jaylon + Smith + + nfl.p.29268 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/Qu2hDk3NQV1zYv5OU6TKJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29268.png + small + + https://s.yimg.com/iu/api/res/1.2/Qu2hDk3NQV1zYv5OU6TKJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29268.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 13 + 0 + + + + 380.p.27348 + 27348 + + Deon Lacey + Deon + Lacey + Deon + Lacey + + nfl.p.27348 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/UC0tV7mvFSNB8_kdZrsE_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130908/27348.png + small + + https://s.yimg.com/iu/api/res/1.2/UC0tV7mvFSNB8_kdZrsE_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130908/27348.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30220 + 30220 + + Kendell Beckwith + Kendell + Beckwith + Kendell + Beckwith + + O + Out + nfl.p.30220 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29417 + 29417 + + Devante Bond + Devante + Bond + Devante + Bond + + IR + Injured Reserve + hamstring + nfl.p.29417 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/ijUy6A3xpFoI7oRVXRctwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29417.png + small + + https://s.yimg.com/iu/api/res/1.2/ijUy6A3xpFoI7oRVXRctwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29417.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30237 + 30237 + + Jalen Reeves-Maybin + Jalen + Reeves-Maybin + Jalen + Reeves-Maybin + + nfl.p.30237 + nfl.t.8 + Detroit Lions + Det + + 6 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30233 + 30233 + + Ben Gedeon + Ben + Gedeon + Ben + Gedeon + + nfl.p.30233 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30134 + 30134 + + Jarrad Davis + Jarrad + Davis + Jarrad + Davis + + nfl.p.30134 + nfl.t.8 + Detroit Lions + Det + + 6 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/NwRMwGLNHl8LD41sh5VRmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30134.png + small + + https://s.yimg.com/iu/api/res/1.2/NwRMwGLNHl8LD41sh5VRmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30134.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 21 + 0 + + + + 380.p.30191 + 30191 + + Tim Williams + Tim + Williams + Tim + Williams + + nfl.p.30191 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/G_cgpxyPOf2JYvighYlMrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30191.png + small + + https://s.yimg.com/iu/api/res/1.2/G_cgpxyPOf2JYvighYlMrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30191.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27287 + 27287 + + Ray-Ray Armstrong + Ray-Ray + Armstrong + Ray-Ray + Armstrong + + nfl.p.27287 + nfl.t.19 + New York Giants + NYG + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/EDeh4NQoKwEfAQyvcYfCwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27287.png + small + + https://s.yimg.com/iu/api/res/1.2/EDeh4NQoKwEfAQyvcYfCwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27287.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29822 + 29822 + + James Burgess Jr. + James + Burgess Jr. + James + Burgess Jr. + + Q + Questionable + nfl.p.29822 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/q9u0SlGERefS8qjPf5PIOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29822.1.png + small + + https://s.yimg.com/iu/api/res/1.2/q9u0SlGERefS8qjPf5PIOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29822.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30276 + 30276 + + Matt Milano + Matt + Milano + Matt + Milano + + nfl.p.30276 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28999 + 28999 + + Cameron Lynch + Cameron + Lynch + Cameron + Lynch + + nfl.p.28999 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/t7T63QqLUyM7bEjDlIcrew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28999.png + small + + https://s.yimg.com/iu/api/res/1.2/t7T63QqLUyM7bEjDlIcrew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28999.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29275 + 29275 + + Reggie Ragland + Reggie + Ragland + Reggie + Ragland + + nfl.p.29275 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/8UwAyLo1r9ZgVObtbiW.kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29275.png + small + + https://s.yimg.com/iu/api/res/1.2/8UwAyLo1r9ZgVObtbiW.kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29275.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30462 + 30462 + + Chris Odom + Chris + Odom + Chris + Odom + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30462 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 98 + LB + + https://s.yimg.com/iu/api/res/1.2/X8S0UtiH8d.zT3et7RYs9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30462.png + small + + https://s.yimg.com/iu/api/res/1.2/X8S0UtiH8d.zT3et7RYs9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30462.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30736 + 30736 + + Calvin Munson + Calvin + Munson + Calvin + Munson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30736 + nfl.t.19 + New York Giants + NYG + + 9 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/yDJg.OdMV.FI4_XoBMnmSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30736.png + small + + https://s.yimg.com/iu/api/res/1.2/yDJg.OdMV.FI4_XoBMnmSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30736.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30261 + 30261 + + Blair Brown + Blair + Brown + Blair + Brown + + nfl.p.30261 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28679 + 28679 + + Nick Dzubnar + Nick + Dzubnar + Nick + Dzubnar + + nfl.p.28679 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/.fseFXin2N2AvoYHKDAdww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28679.png + small + + https://s.yimg.com/iu/api/res/1.2/.fseFXin2N2AvoYHKDAdww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28679.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29485 + 29485 + + Joe Walker + Joe + Walker + Joe + Walker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29485 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/TpWQMbIRgJODaCeGp0j_Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29485.png + small + + https://s.yimg.com/iu/api/res/1.2/TpWQMbIRgJODaCeGp0j_Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29485.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30144 + 30144 + + Reuben Foster + Reuben + Foster + Reuben + Foster + + SUSP + Suspended + nfl.p.30144 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/pWavUbTc52oDKhuuKn7DNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30144.png + small + + https://s.yimg.com/iu/api/res/1.2/pWavUbTc52oDKhuuKn7DNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30144.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.30297 + 30297 + + Nathan Gerry + Nathan + Gerry + Nathan + Gerry + + nfl.p.30297 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/yAVa5Cvg13JhMoMn.4latQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30297.png + small + + https://s.yimg.com/iu/api/res/1.2/yAVa5Cvg13JhMoMn.4latQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30297.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27682 + 27682 + + Jeremiah George + Jeremiah + George + Jeremiah + George + + IR + Injured Reserve + undisclosed + nfl.p.27682 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/PwAsKdMcEXcWQuKjR8mK3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27682.png + small + + https://s.yimg.com/iu/api/res/1.2/PwAsKdMcEXcWQuKjR8mK3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27682.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29111 + 29111 + + Tyrell Adams + Tyrell + Adams + Tyrell + Adams + + IR + Injured Reserve + nfl.p.29111 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/_YOQlXnF5cl_aZN3FW4LLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29111.1.png + small + + https://s.yimg.com/iu/api/res/1.2/_YOQlXnF5cl_aZN3FW4LLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29111.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25593 + 25593 + + Ben Jacobs + Ben + Jacobs + Ben + Jacobs + + nfl.p.25593 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/wbTEbmC75m3pEBlVwjjSWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25593.png + small + + https://s.yimg.com/iu/api/res/1.2/wbTEbmC75m3pEBlVwjjSWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25593.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30308 + 30308 + + Tanner Vallejo + Tanner + Vallejo + Tanner + Vallejo + + nfl.p.30308 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30126 + 30126 + + Haason Reddick + Haason + Reddick + Haason + Reddick + + nfl.p.30126 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/UQDv..vXfvlFCaE0tE1WMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30126.png + small + + https://s.yimg.com/iu/api/res/1.2/UQDv..vXfvlFCaE0tE1WMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30126.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.26661 + 26661 + + Manti Te'o + Manti + Te'o + Manti + Te'o + + nfl.p.26661 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/.FPcegcrXVmqi661F0Um1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26661.png + small + + https://s.yimg.com/iu/api/res/1.2/.FPcegcrXVmqi661F0Um1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26661.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30189 + 30189 + + Alex Anzalone + Alex + Anzalone + Alex + Anzalone + + nfl.p.30189 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30799 + 30799 + + Dylan Cole + Dylan + Cole + Dylan + Cole + + nfl.p.30799 + nfl.t.34 + Houston Texans + Hou + + 10 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30343 + 30343 + + Josh Harvey-Clemons + Josh + Harvey-Clemons + Josh + Harvey-Clemons + + nfl.p.30343 + nfl.t.28 + Washington Redskins + Was + + 4 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30539 + 30539 + + B.J. Bello + B.J. + Bello + B.J. + Bello + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30539 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24019 + 24019 + + Lamarr Houston + Lamarr + Houston + Lamarr + Houston + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24019 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/8oEI03NgGEL4L3R2QGa.RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/24019.png + small + + https://s.yimg.com/iu/api/res/1.2/8oEI03NgGEL4L3R2QGa.RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/24019.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30622 + 30622 + + Donald Payne + Donald + Payne + Donald + Payne + + nfl.p.30622 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/d8FuXpdS9zBuaND20UZyRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30622.png + small + + https://s.yimg.com/iu/api/res/1.2/d8FuXpdS9zBuaND20UZyRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30622.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29484 + 29484 + + Scooby Wright III + Scooby + Wright III + Scooby + Wright III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29484 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/8uBWvH.uFSELrCMB.LUQKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29484.png + small + + https://s.yimg.com/iu/api/res/1.2/8uBWvH.uFSELrCMB.LUQKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29484.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27761 + 27761 + + Trevor Reilly + Trevor + Reilly + Trevor + Reilly + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27761 + nfl.t.17 + New England Patriots + NE + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/RqwttVx3vqntNqWZfPrGsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27761.1.png + small + + https://s.yimg.com/iu/api/res/1.2/RqwttVx3vqntNqWZfPrGsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27761.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30170 + 30170 + + Zach Cunningham + Zach + Cunningham + Zach + Cunningham + + nfl.p.30170 + nfl.t.34 + Houston Texans + Hou + + 10 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/UC24y5REQH_36uU7Rvub8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30170.png + small + + https://s.yimg.com/iu/api/res/1.2/UC24y5REQH_36uU7Rvub8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30170.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.30160 + 30160 + + Tyus Bowser + Tyus + Bowser + Tyus + Bowser + + nfl.p.30160 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/mscmbCxHElQxZKnG1H1oYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30160.png + small + + https://s.yimg.com/iu/api/res/1.2/mscmbCxHElQxZKnG1H1oYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30160.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30274 + 30274 + + Anthony Walker Jr. + Anthony + Walker Jr. + Anthony + Walker Jr. + + Q + Questionable + nfl.p.30274 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26673 + 26673 + + Jon Bostic + Jon + Bostic + Jon + Bostic + + nfl.p.26673 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/moZ4vtjnV8s.IvZ7Q39E9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26673.png + small + + https://s.yimg.com/iu/api/res/1.2/moZ4vtjnV8s.IvZ7Q39E9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26673.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29267 + 29267 + + Kevin Dodd + Kevin + Dodd + Kevin + Dodd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29267 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/1ty1m0pOWy3Bay36iiUYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29267.png + small + + https://s.yimg.com/iu/api/res/1.2/1ty1m0pOWy3Bay36iiUYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29267.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30640 + 30640 + + Chase Allen + Chase + Allen + Chase + Allen + + nfl.p.30640 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30188 + 30188 + + Duke Riley + Duke + Riley + Duke + Riley + + nfl.p.30188 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/7fSBYEJzwQte79d6sbC7CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30188.png + small + + https://s.yimg.com/iu/api/res/1.2/7fSBYEJzwQte79d6sbC7CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30188.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29885 + 29885 + + Terrance Smith + Terrance + Smith + Terrance + Smith + + nfl.p.29885 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/STXMqumoOq1XuMbrlJnJKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29885.1.png + small + + https://s.yimg.com/iu/api/res/1.2/STXMqumoOq1XuMbrlJnJKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29885.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30268 + 30268 + + Jayon Brown + Jayon + Brown + Jayon + Brown + + nfl.p.30268 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30448 + 30448 + + Eric Wilson + Eric + Wilson + Eric + Wilson + + nfl.p.30448 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29818 + 29818 + + Steve Longa + Steve + Longa + Steve + Longa + + IR + Injured Reserve + torn ACL + nfl.p.29818 + nfl.t.8 + Detroit Lions + Det + + 6 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/2xDJ6yeFPoX2Y57BhkvBag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29818.png + small + + https://s.yimg.com/iu/api/res/1.2/2xDJ6yeFPoX2Y57BhkvBag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29818.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30143 + 30143 + + T.J. Watt + T.J. + Watt + T.J. + Watt + + nfl.p.30143 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 90 + LB + + https://s.yimg.com/iu/api/res/1.2/tA3nSCqOm.9DTFNfzLJ7BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30143.png + small + + https://s.yimg.com/iu/api/res/1.2/tA3nSCqOm.9DTFNfzLJ7BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30143.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 23 + 0 + + + + 380.p.30633 + 30633 + + Nicholas Morrow + Nicholas + Morrow + Nicholas + Morrow + + nfl.p.30633 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29716 + 29716 + + Nicholas Grigsby + Nicholas + Grigsby + Nicholas + Grigsby + + nfl.p.29716 + nfl.t.17 + New England Patriots + NE + + 11 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/7qvqCae3WNSydUQLUxEtFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29716.png + small + + https://s.yimg.com/iu/api/res/1.2/7qvqCae3WNSydUQLUxEtFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29716.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30221 + 30221 + + Vince Biegel + Vince + Biegel + Vince + Biegel + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30221 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/Y.oN2cVfbdbZF25Hj3k.Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30221.png + small + + https://s.yimg.com/iu/api/res/1.2/Y.oN2cVfbdbZF25Hj3k.Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30221.png + 0 + DP + + LB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30281 + 30281 + + Marquel Lee + Marquel + Lee + Marquel + Lee + + nfl.p.30281 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30638 + 30638 + + Xavier Woodson-Luster + Xavier + Woodson-Luster + Xavier + Woodson-Luster + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30638 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28788 + 28788 + + Josh Keyes + Josh + Keyes + Josh + Keyes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28788 + nfl.t.34 + Houston Texans + Hou + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/_y1xzVAJrsyI1yt7QLRUZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28788.png + small + + https://s.yimg.com/iu/api/res/1.2/_y1xzVAJrsyI1yt7QLRUZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28788.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24405 + 24405 + + Junior Galette + Junior + Galette + Junior + Galette + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24405 + nfl.t.28 + Washington Redskins + Was + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/0H4U1iuEmYpSEyoJ330jlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24405.png + small + + https://s.yimg.com/iu/api/res/1.2/0H4U1iuEmYpSEyoJ330jlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24405.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28916 + 28916 + + Zach Vigil + Zach + Vigil + Zach + Vigil + + nfl.p.28916 + nfl.t.28 + Washington Redskins + Was + + 4 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/QCnA7fJ9L6IZamS4kSfLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28916.1.png + small + + https://s.yimg.com/iu/api/res/1.2/QCnA7fJ9L6IZamS4kSfLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28916.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31134 + 31134 + + Natrell Jamerson + Natrell + Jamerson + Natrell + Jamerson + + nfl.p.31134 + nfl.t.34 + Houston Texans + Hou + + 10 + + 31 + DB,S,CB + + https://s.yimg.com/iu/api/res/1.2/eOfEzx40QENXfy4V2ltapA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31134.png + small + + https://s.yimg.com/iu/api/res/1.2/eOfEzx40QENXfy4V2ltapA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31134.png + 0 + DP + + DB + S + CB + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.27575 + 27575 + + Trent Murphy + Trent + Murphy + Trent + Murphy + + Q + Questionable + nfl.p.27575 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 93 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/dfFmB4EXqhMdgKPoonanYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27575.png + small + + https://s.yimg.com/iu/api/res/1.2/dfFmB4EXqhMdgKPoonanYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27575.png + 0 + DP + + LB + DE + + 1 + + - + - + - + - + + + week + 1 + 14 + 0 + + + + 380.p.29415 + 29415 + + Tyrone Holmes + Tyrone + Holmes + Tyrone + Holmes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29415 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 54 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/WRlV1R.cMKCAeGbHitkCJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29415.1.png + small + + https://s.yimg.com/iu/api/res/1.2/WRlV1R.cMKCAeGbHitkCJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29415.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.31016 + 31016 + + Breeland Speaks + Breeland + Speaks + Breeland + Speaks + + nfl.p.31016 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 57 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/oSdcHH7RN4y5wjsoD6uCKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31016.png + small + + https://s.yimg.com/iu/api/res/1.2/oSdcHH7RN4y5wjsoD6uCKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31016.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.30856 + 30856 + + Darnell Leslie + Darnell + Leslie + Darnell + Leslie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30856 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/ctYhjaTn8ZitNx.YkiBrvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30856.png + small + + https://s.yimg.com/iu/api/res/1.2/ctYhjaTn8ZitNx.YkiBrvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30856.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.29474 + 29474 + + Alex McCalister + Alex + McCalister + Alex + McCalister + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29474 + nfl.t.28 + Washington Redskins + Was + + 4 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/8GDdHDxagA6VWWGzu9Tjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29474.png + small + + https://s.yimg.com/iu/api/res/1.2/8GDdHDxagA6VWWGzu9Tjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29474.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.31156 + 31156 + + Jacob Martin + Jacob + Martin + Jacob + Martin + + nfl.p.31156 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.31288 + 31288 + + James Hearns + James + Hearns + James + Hearns + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31288 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29437 + 29437 + + Dadi Nicolas + Dadi + Nicolas + Dadi + Nicolas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29437 + nfl.t.28 + Washington Redskins + Was + + 4 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/I._Ow018FHiwSHQ1UjqbRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29437.1.png + small + + https://s.yimg.com/iu/api/res/1.2/I._Ow018FHiwSHQ1UjqbRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29437.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.26776 + 26776 + + Stansly Maponga + Stansly + Maponga + Stansly + Maponga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26776 + nfl.t.7 + Denver Broncos + Den + + 10 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/t8P7RR64vuoiuR9D4CO4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/26776.png + small + + https://s.yimg.com/iu/api/res/1.2/t8P7RR64vuoiuR9D4CO4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/26776.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31146 + 31146 + + Duke Ejiofor + Duke + Ejiofor + Duke + Ejiofor + + nfl.p.31146 + nfl.t.34 + Houston Texans + Hou + + 10 + + 53 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.29546 + 29546 + + Bryson Albright + Bryson + Albright + Bryson + Albright + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29546 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 54 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/S9Oyzi0dtLGIxhC4BmS.uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29546.1.png + small + + https://s.yimg.com/iu/api/res/1.2/S9Oyzi0dtLGIxhC4BmS.uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29546.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31130 + 31130 + + Ogbonnia Okoronkwo + Ogbonnia + Okoronkwo + Ogbonnia + Okoronkwo + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.31130 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 45 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/gUzNifHHdFMgDalcalbz7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31130.png + small + + https://s.yimg.com/iu/api/res/1.2/gUzNifHHdFMgDalcalbz7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31130.png + 0 + DP + + LB + DE + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31057 + 31057 + + Arden Key + Arden + Key + Arden + Key + + nfl.p.31057 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 99 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/Sr0kK78SXvpBAQgf_DRUTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31057.png + small + + https://s.yimg.com/iu/api/res/1.2/Sr0kK78SXvpBAQgf_DRUTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31057.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30975 + 30975 + + Bradley Chubb + Bradley + Chubb + Bradley + Chubb + + nfl.p.30975 + nfl.t.7 + Denver Broncos + Den + + 10 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/SHDPwPh_cPa4KZrgsDIMTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30975.png + small + + https://s.yimg.com/iu/api/res/1.2/SHDPwPh_cPa4KZrgsDIMTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30975.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 17 + 0 + + + + 380.p.31523 + 31523 + + Robert McCray III + Robert + McCray III + Robert + McCray III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31523 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 65 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31011 + 31011 + + Harold Landry + Harold + Landry + Harold + Landry + + Q + Questionable + nfl.p.31011 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 58 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/9mL_1c9epb1qg7hfD0ZqZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31011.png + small + + https://s.yimg.com/iu/api/res/1.2/9mL_1c9epb1qg7hfD0ZqZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31011.png + 0 + DP + + LB + DE + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31151 + 31151 + + Kylie Fitts + Kylie + Fitts + Kylie + Fitts + + nfl.p.31151 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28943 + 28943 + + Jordan Williams + Jordan + Williams + Jordan + Williams + + IR + Injured Reserve + undisclosed + nfl.p.28943 + nfl.t.19 + New York Giants + NYG + + 9 + + 79 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/tN4MPbDrmP8VOzx5xUFj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28943.png + small + + https://s.yimg.com/iu/api/res/1.2/tN4MPbDrmP8VOzx5xUFj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28943.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29617 + 29617 + + Vontarrius Dora + Vontarrius + Dora + Vontarrius + Dora + + undisclosed + nfl.p.29617 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/08QzTJfxbuqJCx7yX17VTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29617.1.png + small + + https://s.yimg.com/iu/api/res/1.2/08QzTJfxbuqJCx7yX17VTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29617.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31266 + 31266 + + Darius Jackson + Darius + Jackson + Darius + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31266 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 66 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31709 + 31709 + + Tobenna Okeke + Tobenna + Okeke + Tobenna + Okeke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31709 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31668 + 31668 + + Andrew Trumbetti + Andrew + Trumbetti + Andrew + Trumbetti + + IR + Injured Reserve + undisclosed + nfl.p.31668 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 48 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31663 + 31663 + + Elijah Norris + Elijah + Norris + Elijah + Norris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31663 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 50 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30672 + 30672 + + Jason Thompson + Jason + Thompson + Jason + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30672 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 32 + LB,S,CB + + https://s.yimg.com/iu/api/res/1.2/6dqHxHawqfXMHzyEIalvPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30672.png + small + + https://s.yimg.com/iu/api/res/1.2/6dqHxHawqfXMHzyEIalvPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30672.png + 0 + DP + + LB + S + CB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30586 + 30586 + + Josh Tupou + Josh + Tupou + Josh + Tupou + + O + Out + nfl.p.30586 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31791 + 31791 + + Simeyon Robinson + Simeyon + Robinson + Simeyon + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31791 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.30718 + 30718 + + Rashaad Coward + Rashaad + Coward + Rashaad + Coward + + nfl.p.30718 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30615 + 30615 + + Izaah Lunsford + Izaah + Lunsford + Izaah + Lunsford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30615 + nfl.t.19 + New York Giants + NYG + + 9 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/DSgXetgVmg1jRUHVrzs7RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30615.png + small + + https://s.yimg.com/iu/api/res/1.2/DSgXetgVmg1jRUHVrzs7RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30615.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28568 + 28568 + + Michael Bennett + Michael + Bennett + Michael + Bennett + + nfl.p.28568 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/99XZUpAcxmM85FwokRlQiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28568.png + small + + https://s.yimg.com/iu/api/res/1.2/99XZUpAcxmM85FwokRlQiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28568.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30336 + 30336 + + Stevie Tu'ikolovatu + Stevie + Tu'ikolovatu + Stevie + Tu'ikolovatu + + IR + Injured Reserve + undisclosed + nfl.p.30336 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/v04ef7LvEYM05SRIe.zb_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30336.png + small + + https://s.yimg.com/iu/api/res/1.2/v04ef7LvEYM05SRIe.zb_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30336.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28771 + 28771 + + Justin Hamilton + Justin + Hamilton + Justin + Hamilton + + nfl.p.28771 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/8nNY1OzYazvCPR3mBIfWqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28771.png + small + + https://s.yimg.com/iu/api/res/1.2/8nNY1OzYazvCPR3mBIfWqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28771.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31193 + 31193 + + Jullian Taylor + Jullian + Taylor + Jullian + Taylor + + nfl.p.31193 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 77 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31436 + 31436 + + Tyler Lancaster + Tyler + Lancaster + Tyler + Lancaster + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31436 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29873 + 29873 + + Woodrow Hamilton + Woodrow + Hamilton + Woodrow + Hamilton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29873 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/S68S0U.nEh4Ajh55j0RK1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29873.png + small + + https://s.yimg.com/iu/api/res/1.2/S68S0U.nEh4Ajh55j0RK1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29873.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31229 + 31229 + + Curtis Cothran + Curtis + Cothran + Curtis + Cothran + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31229 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31633 + 31633 + + Josh Fatu + Josh + Fatu + Josh + Fatu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31633 + nfl.t.8 + Detroit Lions + Det + + 6 + + 62 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31648 + 31648 + + Trent Harris + Trent + Harris + Trent + Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31648 + nfl.t.17 + New England Patriots + NE + + 11 + + 45 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30327 + 30327 + + Elijah Qualls + Elijah + Qualls + Elijah + Qualls + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30327 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31109 + 31109 + + RJ McIntosh + RJ + McIntosh + RJ + McIntosh + + O + Out + nfl.p.31109 + nfl.t.19 + New York Giants + NYG + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/c1Dxmx5C6KssL5pPlFUqlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31109.png + small + + https://s.yimg.com/iu/api/res/1.2/c1Dxmx5C6KssL5pPlFUqlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31109.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30497 + 30497 + + Pasoni Tasini + Pasoni + Tasini + Pasoni + Tasini + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30497 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/EA2550edwlYab8ty5Ai.ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30497.png + small + + https://s.yimg.com/iu/api/res/1.2/EA2550edwlYab8ty5Ai.ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30497.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31392 + 31392 + + McKay Murphy + McKay + Murphy + McKay + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31392 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 61 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30504 + 30504 + + Brandon Banks + Brandon + Banks + Brandon + Banks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30504 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 54 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29050 + 29050 + + Toby Johnson + Toby + Johnson + Toby + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29050 + nfl.t.8 + Detroit Lions + Det + + 6 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/C4DR6x2FU7nbcwpMSBcQbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29050.png + small + + https://s.yimg.com/iu/api/res/1.2/C4DR6x2FU7nbcwpMSBcQbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29050.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31263 + 31263 + + Mike Hughes Jr. + Mike + Hughes Jr. + Mike + Hughes Jr. + + IR + Injured Reserve + undisclosed + nfl.p.31263 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31774 + 31774 + + Zaycoven Henderson + Zaycoven + Henderson + Zaycoven + Henderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31774 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31449 + 31449 + + Mychealon Thomas + Mychealon + Thomas + Mychealon + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31449 + nfl.t.20 + New York Jets + NYJ + + 11 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31380 + 31380 + + Lowell Lotulelei + Lowell + Lotulelei + Lowell + Lotulelei + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31380 + nfl.t.7 + Denver Broncos + Den + + 10 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31613 + 31613 + + Mike Ramsay + Mike + Ramsay + Mike + Ramsay + + O + Out + nfl.p.31613 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 70 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31133 + 31133 + + Tim Settle + Tim + Settle + Tim + Settle + + nfl.p.31133 + nfl.t.28 + Washington Redskins + Was + + 4 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/mBz4ftCjtZ9pphpuIGnl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31133.png + small + + https://s.yimg.com/iu/api/res/1.2/mBz4ftCjtZ9pphpuIGnl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31133.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31362 + 31362 + + Jon Cunningham + Jon + Cunningham + Jon + Cunningham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31362 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31312 + 31312 + + Tracy Sprinkle + Tracy + Sprinkle + Tracy + Sprinkle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31312 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 68 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31248 + 31248 + + Du'Vonta Lampkin + Du'Vonta + Lampkin + Du'Vonta + Lampkin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31248 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31066 + 31066 + + Harrison Phillips + Harrison + Phillips + Harrison + Phillips + + nfl.p.31066 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/kqkF_4.7tIz678OgdzHinA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31066.png + small + + https://s.yimg.com/iu/api/res/1.2/kqkF_4.7tIz678OgdzHinA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31066.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31115 + 31115 + + Bilal Nichols + Bilal + Nichols + Bilal + Nichols + + nfl.p.31115 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/czUIl_fCb5SRd3wwKvRqdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31115.png + small + + https://s.yimg.com/iu/api/res/1.2/czUIl_fCb5SRd3wwKvRqdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31115.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30905 + 30905 + + Chunky Clements + Chunky + Clements + Chunky + Clements + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30905 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31334 + 31334 + + Niles Scott + Niles + Scott + Niles + Scott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31334 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31694 + 31694 + + Chris Okoye + Chris + Okoye + Chris + Okoye + + IR + Injured Reserve + undisclosed + nfl.p.31694 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31572 + 31572 + + Bruce Hector + Bruce + Hector + Bruce + Hector + + nfl.p.31572 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31527 + 31527 + + Parker Cothren + Parker + Cothren + Parker + Cothren + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31527 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 61 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30206 + 30206 + + Montravius Adams + Montravius + Adams + Montravius + Adams + + nfl.p.30206 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/pkFWhQYqnJc8OId9QDbbVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30206.png + small + + https://s.yimg.com/iu/api/res/1.2/pkFWhQYqnJc8OId9QDbbVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30206.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30654 + 30654 + + Josh Augusta + Josh + Augusta + Josh + Augusta + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30654 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 72 + DT + + https://s.yimg.com/iu/api/res/1.2/GhGxw.8BnAzoU1dcrD2svA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30654.png + small + + https://s.yimg.com/iu/api/res/1.2/GhGxw.8BnAzoU1dcrD2svA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30654.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31526 + 31526 + + Taylor Stallworth + Taylor + Stallworth + Taylor + Stallworth + + nfl.p.31526 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29959 + 29959 + + Drew Iddings + Drew + Iddings + Drew + Iddings + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29959 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/m2IvNIlH4HKqT8gNvZLjBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29959.png + small + + https://s.yimg.com/iu/api/res/1.2/m2IvNIlH4HKqT8gNvZLjBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29959.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30917 + 30917 + + Peli Anau + Peli + Anau + Peli + Anau + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30917 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31586 + 31586 + + Kingsley Opara + Kingsley + Opara + Kingsley + Opara + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31586 + nfl.t.34 + Houston Texans + Hou + + 10 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31150 + 31150 + + Folorunso Fatukasi + Folorunso + Fatukasi + Folorunso + Fatukasi + + nfl.p.31150 + nfl.t.20 + New York Jets + NYJ + + 11 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26823 + 26823 + + Kapron Lewis-Moore + Kapron + Lewis-Moore + Kapron + Lewis-Moore + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.26823 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/4fB5nKKJptEXltSaMr9awA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26823.1.png + small + + https://s.yimg.com/iu/api/res/1.2/4fB5nKKJptEXltSaMr9awA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26823.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30148 + 30148 + + Malik McDowell + Malik + McDowell + Malik + McDowell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30148 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/my847bIDc5.U4jqCUOaD7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30148.png + small + + https://s.yimg.com/iu/api/res/1.2/my847bIDc5.U4jqCUOaD7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30148.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31518 + 31518 + + Henry Mondeaux + Henry + Mondeaux + Henry + Mondeaux + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31518 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 62 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30999 + 30999 + + Taven Bryan + Taven + Bryan + Taven + Bryan + + nfl.p.30999 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/pSGZV_xn12jYlshXxfZIpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30999.png + small + + https://s.yimg.com/iu/api/res/1.2/pSGZV_xn12jYlshXxfZIpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30999.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31212 + 31212 + + Kendrick Norton + Kendrick + Norton + Kendrick + Norton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31212 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31736 + 31736 + + Dalton Keene + Dalton + Keene + Dalton + Keene + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31736 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31489 + 31489 + + Dee Liner + Dee + Liner + Dee + Liner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31489 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30515 + 30515 + + Omarius Bryant + Omarius + Bryant + Omarius + Bryant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30515 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31045 + 31045 + + Derrick Nnadi + Derrick + Nnadi + Derrick + Nnadi + + nfl.p.31045 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/oLIkVFZPUxinHGHBAh6R0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31045.png + small + + https://s.yimg.com/iu/api/res/1.2/oLIkVFZPUxinHGHBAh6R0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31045.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31446 + 31446 + + Lord Hyeamang + Lord + Hyeamang + Lord + Hyeamang + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31446 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31165 + 31165 + + Sebastian Joseph-Day + Sebastian + Joseph-Day + Sebastian + Joseph-Day + + nfl.p.31165 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31289 + 31289 + + DeQuinton Osborne + DeQuinton + Osborne + DeQuinton + Osborne + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31289 + nfl.t.7 + Denver Broncos + Den + + 10 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28826 + 28826 + + Joey Mbu + Joey + Mbu + Joey + Mbu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28826 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 73 + DT + + https://s.yimg.com/iu/api/res/1.2/6wjW6IJIh_p2axIAuI2pFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28826.png + small + + https://s.yimg.com/iu/api/res/1.2/6wjW6IJIh_p2axIAuI2pFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28826.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24808 + 24808 + + Phil Taylor Sr. + Phil + Taylor Sr. + Phil + Taylor Sr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24808 + nfl.t.28 + Washington Redskins + Was + + 4 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/TlGjpRVNKWkiEEQ1EW_oRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24808.png + small + + https://s.yimg.com/iu/api/res/1.2/TlGjpRVNKWkiEEQ1EW_oRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24808.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31542 + 31542 + + Jamiyus Pittman + Jamiyus + Pittman + Jamiyus + Pittman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31542 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29683 + 29683 + + Aziz Shittu + Aziz + Shittu + Aziz + Shittu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29683 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/bGedZNEPpWnEVcAa6NdBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29683.png + small + + https://s.yimg.com/iu/api/res/1.2/bGedZNEPpWnEVcAa6NdBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29683.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31645 + 31645 + + Jojo Wicker + Jojo + Wicker + Jojo + Wicker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31645 + nfl.t.28 + Washington Redskins + Was + + 4 + + 64 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29950 + 29950 + + Antwaun Woods + Antwaun + Woods + Antwaun + Woods + + nfl.p.29950 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/qsUgFONKSXCZZqMJuRFbLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29950.png + small + + https://s.yimg.com/iu/api/res/1.2/qsUgFONKSXCZZqMJuRFbLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29950.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31541 + 31541 + + Anthony Moten + Anthony + Moten + Anthony + Moten + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31541 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 43 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29939 + 29939 + + Tani Tupou + Tani + Tupou + Tani + Tupou + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29939 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/wRF4C9alBthyfbTocFLsBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29939.png + small + + https://s.yimg.com/iu/api/res/1.2/wRF4C9alBthyfbTocFLsBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29939.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26710 + 26710 + + Jordan Hill + Jordan + Hill + Jordan + Hill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26710 + nfl.t.8 + Detroit Lions + Det + + 6 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/QYHiajajsZY0sof4InXpTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26710.png + small + + https://s.yimg.com/iu/api/res/1.2/QYHiajajsZY0sof4InXpTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26710.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31439 + 31439 + + Filipo Mokofisi + Filipo + Mokofisi + Filipo + Mokofisi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31439 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31042 + 31042 + + Nathan Shepherd + Nathan + Shepherd + Nathan + Shepherd + + nfl.p.31042 + nfl.t.20 + New York Jets + NYJ + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/hTGAKOKJVlVmSOYyiqf27w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31042.png + small + + https://s.yimg.com/iu/api/res/1.2/hTGAKOKJVlVmSOYyiqf27w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31042.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31776 + 31776 + + Adam Reth + Adam + Reth + Adam + Reth + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31776 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31315 + 31315 + + Owen Obasuyi + Owen + Obasuyi + Owen + Obasuyi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31315 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28755 + 28755 + + Kaleb Eulls + Kaleb + Eulls + Kaleb + Eulls + + IR + Injured Reserve + undisclosed + nfl.p.28755 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/ALOoQSwfF1tHaTfv1hNcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28755.png + small + + https://s.yimg.com/iu/api/res/1.2/ALOoQSwfF1tHaTfv1hNcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28755.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31217 + 31217 + + Joshua Frazier + Joshua + Frazier + Joshua + Frazier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31217 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30222 + 30222 + + Jaleel Johnson + Jaleel + Johnson + Jaleel + Johnson + + nfl.p.30222 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31027 + 31027 + + P.J. Hall Jr. + P.J. + Hall Jr. + P.J. + Hall Jr. + + nfl.p.31027 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/Gny.gUmTTBkVwHzkYD3lmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31027.png + small + + https://s.yimg.com/iu/api/res/1.2/Gny.gUmTTBkVwHzkYD3lmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31027.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30708 + 30708 + + Winston Craig + Winston + Craig + Winston + Craig + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30708 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31352 + 31352 + + Jacob Tuioti-Mariner + Jacob + Tuioti-Mariner + Jacob + Tuioti-Mariner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31352 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30983 + 30983 + + Da'Ron Payne + Da'Ron + Payne + Da'Ron + Payne + + nfl.p.30983 + nfl.t.28 + Washington Redskins + Was + + 4 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/X5gWn0_S0ToeozHdJoDlgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30983.png + small + + https://s.yimg.com/iu/api/res/1.2/X5gWn0_S0ToeozHdJoDlgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30983.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30605 + 30605 + + Nigel Williams + Nigel + Williams + Nigel + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30605 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30341 + 30341 + + Joey Ivie + Joey + Ivie + Joey + Ivie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30341 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/9atzEzQ5ovfZ_NM4s6HSTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30341.png + small + + https://s.yimg.com/iu/api/res/1.2/9atzEzQ5ovfZ_NM4s6HSTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30341.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31461 + 31461 + + Trenton Thompson + Trenton + Thompson + Trenton + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31461 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 77 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31371 + 31371 + + Tomasi Laulile + Tomasi + Laulile + Tomasi + Laulile + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31371 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30982 + 30982 + + Vita Vea + Vita + Vea + Vita + Vea + + Q + Questionable + nfl.p.30982 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 50 + DT + + https://s.yimg.com/iu/api/res/1.2/pB9MGZcjKIau7hntDcnLjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30982.png + small + + https://s.yimg.com/iu/api/res/1.2/pB9MGZcjKIau7hntDcnLjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30982.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28761 + 28761 + + Ashaad Mabry + Ashaad + Mabry + Ashaad + Mabry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28761 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 72 + DT + + https://s.yimg.com/iu/api/res/1.2/_8JcPVZozf4QY3gcCT9J2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28761.png + small + + https://s.yimg.com/iu/api/res/1.2/_8JcPVZozf4QY3gcCT9J2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28761.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31060 + 31060 + + Deadrin Senat + Deadrin + Senat + Deadrin + Senat + + nfl.p.31060 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/397OM5TKPVr1X07KALsTyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31060.png + small + + https://s.yimg.com/iu/api/res/1.2/397OM5TKPVr1X07KALsTyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31060.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31669 + 31669 + + Cavon Walker + Cavon + Walker + Cavon + Walker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31669 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30624 + 30624 + + Paul Boyette Jr. + Paul + Boyette Jr. + Paul + Boyette Jr. + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30624 + nfl.t.7 + Denver Broncos + Den + + 10 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30730 + 30730 + + Josh Banks + Josh + Banks + Josh + Banks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30730 + nfl.t.19 + New York Giants + NYG + + 9 + + 64 + DT + + https://s.yimg.com/iu/api/res/1.2/E1pkTNrUPi63nf.oImNi8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30730.png + small + + https://s.yimg.com/iu/api/res/1.2/E1pkTNrUPi63nf.oImNi8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30730.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31054 + 31054 + + Justin Jones + Justin + Jones + Justin + Jones + + nfl.p.31054 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/3nNDjDeIBKHuYj2bcYChnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31054.png + small + + https://s.yimg.com/iu/api/res/1.2/3nNDjDeIBKHuYj2bcYChnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31054.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31474 + 31474 + + Eddy Wilson + Eddy + Wilson + Eddy + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31474 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29559 + 29559 + + Justin Zimmer + Justin + Zimmer + Justin + Zimmer + + nfl.p.29559 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/xeivm_wFlnmbDib8VYM.Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29559.1.png + small + + https://s.yimg.com/iu/api/res/1.2/xeivm_wFlnmbDib8VYM.Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29559.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31110 + 31110 + + Maurice Hurst + Maurice + Hurst + Maurice + Hurst + + nfl.p.31110 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 73 + DT + + https://s.yimg.com/iu/api/res/1.2/KIThGOzOuq.Avm154uhfWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31110.png + small + + https://s.yimg.com/iu/api/res/1.2/KIThGOzOuq.Avm154uhfWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31110.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31647 + 31647 + + John Atkins + John + Atkins + John + Atkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31647 + nfl.t.8 + Detroit Lions + Det + + 6 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30810 + 30810 + + Rickey Hatley + Rickey + Hatley + Rickey + Hatley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30810 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31686 + 31686 + + Steven Richardson + Steven + Richardson + Steven + Richardson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31686 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 70 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28602 + 28602 + + Kristjan Sokoli + Kristjan + Sokoli + Kristjan + Sokoli + + IR + Injured Reserve + torn ACL + nfl.p.28602 + nfl.t.19 + New York Giants + NYG + + 9 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/x9qpjAAIsrXEyFejZitcCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28602.png + small + + https://s.yimg.com/iu/api/res/1.2/x9qpjAAIsrXEyFejZitcCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28602.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31657 + 31657 + + Abdullah Anderson Jr. + Abdullah + Anderson Jr. + Abdullah + Anderson Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31657 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31788 + 31788 + + Nathan Bazata + Nathan + Bazata + Nathan + Bazata + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31788 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 73 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31681 + 31681 + + Bijhon Jackson + Bijhon + Jackson + Bijhon + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31681 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30429 + 30429 + + Dylan Bradley + Dylan + Bradley + Dylan + Bradley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30429 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30507 + 30507 + + Ondre Pipkins + Ondre + Pipkins + Ondre + Pipkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30507 + nfl.t.28 + Washington Redskins + Was + + 4 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30412 + 30412 + + Devaroe Lawrence + Devaroe + Lawrence + Devaroe + Lawrence + + nfl.p.30412 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31454 + 31454 + + Daniel Ekuale + Daniel + Ekuale + Daniel + Ekuale + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31454 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31039 + 31039 + + B.J. Hill + B.J. + Hill + B.J. + Hill + + nfl.p.31039 + nfl.t.19 + New York Giants + NYG + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/C5Cozj6KTfujV598Nyblog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31039.png + small + + https://s.yimg.com/iu/api/res/1.2/C5Cozj6KTfujV598Nyblog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31039.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28523 + 28523 + + Marcus Hardison + Marcus + Hardison + Marcus + Hardison + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28523 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/uFscEau8Khp2xHwp.gEaXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28523.1.png + small + + https://s.yimg.com/iu/api/res/1.2/uFscEau8Khp2xHwp.gEaXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28523.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31477 + 31477 + + Poona Ford + Poona + Ford + Poona + Ford + + nfl.p.31477 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31549 + 31549 + + Tyrell Chavis + Tyrell + Chavis + Tyrell + Chavis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31549 + nfl.t.19 + New York Giants + NYG + + 9 + + 62 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26762 + 26762 + + Montori Hughes + Montori + Hughes + Montori + Hughes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26762 + nfl.t.28 + Washington Redskins + Was + + 4 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/Jr2ID8y0avwWFI.rc.CipQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26762.png + small + + https://s.yimg.com/iu/api/res/1.2/Jr2ID8y0avwWFI.rc.CipQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26762.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30376 + 30376 + + Casey Sayles + Casey + Sayles + Casey + Sayles + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30376 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31415 + 31415 + + Linden Stephens + Linden + Stephens + Linden + Stephens + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31415 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 40 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31521 + 31521 + + Step Durham + Step + Durham + Step + Durham + + IR + Injured Reserve + undisclosed + nfl.p.31521 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 47 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31411 + 31411 + + J.T. Gray + J.T. + Gray + J.T. + Gray + + nfl.p.31411 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 48 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31158 + 31158 + + Simeon Thomas + Simeon + Thomas + Simeon + Thomas + + nfl.p.31158 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 34 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31213 + 31213 + + Keion Crossen + Keion + Crossen + Keion + Crossen + + Q + Questionable + nfl.p.31213 + nfl.t.17 + New England Patriots + NE + + 11 + + 35 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31499 + 31499 + + D'Montre Wade + D'Montre + Wade + D'Montre + Wade + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31499 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 40 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31159 + 31159 + + Kamrin Moore + Kamrin + Moore + Kamrin + Moore + + nfl.p.31159 + nfl.t.19 + New York Giants + NYG + + 9 + + 29 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31116 + 31116 + + Tre Flowers + Tre + Flowers + Tre + Flowers + + nfl.p.31116 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 37 + S,CB + + https://s.yimg.com/iu/api/res/1.2/J5bFuF7iJ0GhdfvmYdDXQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31116.png + small + + https://s.yimg.com/iu/api/res/1.2/J5bFuF7iJ0GhdfvmYdDXQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31116.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31124 + 31124 + + Siran Neal + Siran + Neal + Siran + Neal + + nfl.p.31124 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 29 + S,CB + + https://s.yimg.com/iu/api/res/1.2/uYJc_TruW8agS8I0o0cuLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31124.png + small + + https://s.yimg.com/iu/api/res/1.2/uYJc_TruW8agS8I0o0cuLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31124.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27715 + 27715 + + Bennett Jackson + Bennett + Jackson + Bennett + Jackson + + IR + Injured Reserve + undisclosed + nfl.p.27715 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 39 + S,CB + + https://s.yimg.com/iu/api/res/1.2/aeZBSA7P6E1bv0gXkjNqmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27715.png + small + + https://s.yimg.com/iu/api/res/1.2/aeZBSA7P6E1bv0gXkjNqmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27715.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31707 + 31707 + + Joseph Este + Joseph + Este + Joseph + Este + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31707 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 38 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31609 + 31609 + + Joshua Kalu + Joshua + Kalu + Joshua + Kalu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31609 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 47 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30300 + 30300 + + Mike Tyson + Mike + Tyson + Mike + Tyson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30300 + nfl.t.34 + Houston Texans + Hou + + 10 + + 40 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31530 + 31530 + + Jamar Summers + Jamar + Summers + Jamar + Summers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31530 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 30 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28570 + 28570 + + Tevin Mitchel + Tevin + Mitchel + Tevin + Mitchel + + IR + Injured Reserve + undisclosed + nfl.p.28570 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 37 + S,CB + + https://s.yimg.com/iu/api/res/1.2/KjKilRMI6S3YkCHNbpWyFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28570.1.png + small + + https://s.yimg.com/iu/api/res/1.2/KjKilRMI6S3YkCHNbpWyFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28570.1.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30560 + 30560 + + Lorenzo Jerome + Lorenzo + Jerome + Lorenzo + Jerome + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30560 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 40 + S,CB + + https://s.yimg.com/iu/api/res/1.2/bLh9uHrevkPJCRIf3FkyBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30560.png + small + + https://s.yimg.com/iu/api/res/1.2/bLh9uHrevkPJCRIf3FkyBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30560.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31448 + 31448 + + Ramon Richards + Ramon + Richards + Ramon + Richards + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31448 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 47 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31055 + 31055 + + Rashaan Gaulden + Rashaan + Gaulden + Rashaan + Gaulden + + nfl.p.31055 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 28 + S,CB + + https://s.yimg.com/iu/api/res/1.2/RPQr1GRRDVzxnoYo_AQa3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31055.png + small + + https://s.yimg.com/iu/api/res/1.2/RPQr1GRRDVzxnoYo_AQa3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31055.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31236 + 31236 + + Trevon Mathis + Trevon + Mathis + Trevon + Mathis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31236 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 46 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26939 + 26939 + + Demontre Hurst + Demontre + Hurst + Demontre + Hurst + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26939 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 20 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/uIbVp_WBN9y1CHixSyFH.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26939.png + small + + https://s.yimg.com/iu/api/res/1.2/uIbVp_WBN9y1CHixSyFH.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26939.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30596 + 30596 + + Marquavius Lewis + Marquavius + Lewis + Marquavius + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + ankle + nfl.p.30596 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 97 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30802 + 30802 + + Daniel Ross + Daniel + Ross + Daniel + Ross + + nfl.p.30802 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 68 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31208 + 31208 + + Zach Sieler + Zach + Sieler + Zach + Sieler + + nfl.p.31208 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 95 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31202 + 31202 + + James Looney + James + Looney + James + Looney + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31202 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 99 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31649 + 31649 + + Frank Herron + Frank + Herron + Frank + Herron + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31649 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 67 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31128 + 31128 + + Andrew Brown + Andrew + Brown + Andrew + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31128 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 93 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/pDzy8uYDCIYd6yyh2UHKSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31128.png + small + + https://s.yimg.com/iu/api/res/1.2/pDzy8uYDCIYd6yyh2UHKSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31128.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31072 + 31072 + + Jalyn Holmes + Jalyn + Holmes + Jalyn + Holmes + + nfl.p.31072 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/YWEYJYfosT7n1gusELjPVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31072.png + small + + https://s.yimg.com/iu/api/res/1.2/YWEYJYfosT7n1gusELjPVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31072.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31034 + 31034 + + Tyquan Lewis + Tyquan + Lewis + Tyquan + Lewis + + IR + Injured Reserve + toe + nfl.p.31034 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 94 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/kU_nJ3eW3vZq4Sz7Yv2NzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31034.png + small + + https://s.yimg.com/iu/api/res/1.2/kU_nJ3eW3vZq4Sz7Yv2NzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31034.png + 0 + DP + + DT + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31417 + 31417 + + Greg Gilmore + Greg + Gilmore + Greg + Gilmore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31417 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 62 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28789 + 28789 + + Caushaud Lyons + Caushaud + Lyons + Caushaud + Lyons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28789 + nfl.t.28 + Washington Redskins + Was + + 4 + + 63 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/XtVVvDygNAjPRNKG.fqsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28789.png + small + + https://s.yimg.com/iu/api/res/1.2/XtVVvDygNAjPRNKG.fqsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28789.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31420 + 31420 + + Kendal Vickers + Kendal + Vickers + Kendal + Vickers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31420 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 64 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30546 + 30546 + + Karter Schult + Karter + Schult + Karter + Schult + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30546 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 76 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31612 + 31612 + + Matt Dickerson + Matt + Dickerson + Matt + Dickerson + + nfl.p.31612 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24800 + 24800 + + Nick Fairley + Nick + Fairley + Nick + Fairley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24800 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/f5tBTybd9G92raix3kZ6jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24800.png + small + + https://s.yimg.com/iu/api/res/1.2/f5tBTybd9G92raix3kZ6jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24800.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26821 + 26821 + + Chris Jones + Chris + Jones + Chris + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26821 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/tOr0FaNwgLKveBZelknCeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26821.png + small + + https://s.yimg.com/iu/api/res/1.2/tOr0FaNwgLKveBZelknCeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26821.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29114 + 29114 + + T.Y. McGill + T.Y. + McGill + T.Y. + McGill + + nfl.p.29114 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/ZiGrmbWAI.hLNF00g2_MCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29114.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ZiGrmbWAI.hLNF00g2_MCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29114.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28501 + 28501 + + Gabe Wright + Gabe + Wright + Gabe + Wright + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28501 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/5FvImyTeJyXOJDJS.gzpQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28501.png + small + + https://s.yimg.com/iu/api/res/1.2/5FvImyTeJyXOJDJS.gzpQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28501.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27688 + 27688 + + Ed Stinson + Ed + Stinson + Ed + Stinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27688 + nfl.t.20 + New York Jets + NYJ + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/VOSWnJjhdKSMbCDbRObQeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27688.png + small + + https://s.yimg.com/iu/api/res/1.2/VOSWnJjhdKSMbCDbRObQeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27688.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28982 + 28982 + + DeShawn Williams + DeShawn + Williams + DeShawn + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28982 + nfl.t.7 + Denver Broncos + Den + + 10 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/f2RDTO7OigzM5a0yXUx6Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28982.1.png + small + + https://s.yimg.com/iu/api/res/1.2/f2RDTO7OigzM5a0yXUx6Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28982.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27743 + 27743 + + Daniel McCullers + Daniel + McCullers + Daniel + McCullers + + nfl.p.27743 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/nejd_dc9L_oLAv.HDLpIQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27743.png + small + + https://s.yimg.com/iu/api/res/1.2/nejd_dc9L_oLAv.HDLpIQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27743.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27610 + 27610 + + Will Sutton + Will + Sutton + Will + Sutton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27610 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/ZsCFCFv.kivZClrLHI7KBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/27610.png + small + + https://s.yimg.com/iu/api/res/1.2/ZsCFCFv.kivZClrLHI7KBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/27610.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28591 + 28591 + + Darius Kilgo + Darius + Kilgo + Darius + Kilgo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28591 + nfl.t.34 + Houston Texans + Hou + + 10 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/5bx6UA0IDnBj4dvQKkOfCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28591.png + small + + https://s.yimg.com/iu/api/res/1.2/5bx6UA0IDnBj4dvQKkOfCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28591.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27298 + 27298 + + Stefan Charles + Stefan + Charles + Stefan + Charles + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27298 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/RhAx9x1rrlODMxDiN.zPdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27298.png + small + + https://s.yimg.com/iu/api/res/1.2/RhAx9x1rrlODMxDiN.zPdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27298.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27557 + 27557 + + Dominique Easley + Dominique + Easley + Dominique + Easley + + nfl.p.27557 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/DMZUopOuGxinIAmrB8ahVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27557.png + small + + https://s.yimg.com/iu/api/res/1.2/DMZUopOuGxinIAmrB8ahVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27557.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29330 + 29330 + + Vincent Valentine + Vincent + Valentine + Vincent + Valentine + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29330 + nfl.t.17 + New England Patriots + NE + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/ZjH_VI7cAJmQTgpiZcDoRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29330.png + small + + https://s.yimg.com/iu/api/res/1.2/ZjH_VI7cAJmQTgpiZcDoRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29330.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28539 + 28539 + + David Parry + David + Parry + David + Parry + + nfl.p.28539 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/q8aj7YZ26EV1iF74eQA47g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28539.1.png + small + + https://s.yimg.com/iu/api/res/1.2/q8aj7YZ26EV1iF74eQA47g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28539.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27217 + 27217 + + Mike Purcell + Mike + Purcell + Mike + Purcell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27217 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/w9U0fPXtF_Oe.fmii799Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27217.png + small + + https://s.yimg.com/iu/api/res/1.2/w9U0fPXtF_Oe.fmii799Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27217.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29581 + 29581 + + DaVonte Lambert + DaVonte + Lambert + DaVonte + Lambert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29581 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/X1rXXdAS3_vZcAUvAH2L8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29581.png + small + + https://s.yimg.com/iu/api/res/1.2/X1rXXdAS3_vZcAUvAH2L8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29581.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28611 + 28611 + + Deon Simon + Deon + Simon + Deon + Simon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28611 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/chEpaMw6XHLV.GDEIus.6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28611.1.png + small + + https://s.yimg.com/iu/api/res/1.2/chEpaMw6XHLV.GDEIus.6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28611.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24133 + 24133 + + Arthur Jones + Arthur + Jones + Arthur + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24133 + nfl.t.28 + Washington Redskins + Was + + 4 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/3w785Z4BcyvIXBEmWDfD4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24133.1.png + small + + https://s.yimg.com/iu/api/res/1.2/3w785Z4BcyvIXBEmWDfD4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24133.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27686 + 27686 + + Caraun Reid + Caraun + Reid + Caraun + Reid + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27686 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/Eib_tqLWOGEBpq.Zoj_3nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27686.png + small + + https://s.yimg.com/iu/api/res/1.2/Eib_tqLWOGEBpq.Zoj_3nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27686.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29960 + 29960 + + Darius Latham + Darius + Latham + Darius + Latham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29960 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/4..uCLELok6KTEonMYeQaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29960.png + small + + https://s.yimg.com/iu/api/res/1.2/4..uCLELok6KTEonMYeQaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29960.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28097 + 28097 + + Anthony Johnson + Anthony + Johnson + Anthony + Johnson + + IR + Injured Reserve + undisclosed + nfl.p.28097 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 96 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/9cp87VDfQbxr.6o2VzOA_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28097.1.png + small + + https://s.yimg.com/iu/api/res/1.2/9cp87VDfQbxr.6o2VzOA_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28097.1.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29278 + 29278 + + Jihad Ward + Jihad + Ward + Jihad + Ward + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29278 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 51 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/pIvpYLI_kRDruTvRo5AbRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29278.png + small + + https://s.yimg.com/iu/api/res/1.2/pIvpYLI_kRDruTvRo5AbRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29278.png + 0 + DP + + DT + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31784 + 31784 + + Dante Sawyer + Dante + Sawyer + Dante + Sawyer + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31784 + nfl.t.28 + Washington Redskins + Was + + 4 + + 63 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29767 + 29767 + + Lenny Jones + Lenny + Jones + Lenny + Jones + + IR + Injured Reserve + undisclosed + nfl.p.29767 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/tsrZYjGqy6Mi1Q8IqAME2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29767.png + small + + https://s.yimg.com/iu/api/res/1.2/tsrZYjGqy6Mi1Q8IqAME2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29767.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31274 + 31274 + + Evan Perroni + Evan + Perroni + Evan + Perroni + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31274 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29488 + 29488 + + Johnny Maxey + Johnny + Maxey + Johnny + Maxey + + IR + Injured Reserve + undisclosed + nfl.p.29488 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/_GY78Te0CZMZPZqlL8SPJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29488.png + small + + https://s.yimg.com/iu/api/res/1.2/_GY78Te0CZMZPZqlL8SPJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29488.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31049 + 31049 + + Rasheem Green + Rasheem + Green + Rasheem + Green + + nfl.p.31049 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/2PqrQvQv3EXv8FqsPj7CeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31049.png + small + + https://s.yimg.com/iu/api/res/1.2/2PqrQvQv3EXv8FqsPj7CeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31049.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31578 + 31578 + + Joe Ostman + Joe + Ostman + Joe + Ostman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31578 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29593 + 29593 + + Channing Ward + Channing + Ward + Channing + Ward + + O + Out + nfl.p.29593 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/4LDUxzINnMIQbJfEfiPHiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29593.png + small + + https://s.yimg.com/iu/api/res/1.2/4LDUxzINnMIQbJfEfiPHiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29593.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25761 + 25761 + + Jerel Worthy + Jerel + Worthy + Jerel + Worthy + + nfl.p.25761 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/bcgDHNcFShMzXLRsNOW84w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25761.1.png + small + + https://s.yimg.com/iu/api/res/1.2/bcgDHNcFShMzXLRsNOW84w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25761.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31581 + 31581 + + Mason Gentry + Mason + Gentry + Mason + Gentry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31581 + nfl.t.34 + Houston Texans + Hou + + 10 + + 79 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29460 + 29460 + + Jonathan Woodard + Jonathan + Woodard + Jonathan + Woodard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29460 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 76 + DE + + https://s.yimg.com/iu/api/res/1.2/a5MkUfQ9YpfjNrXRgXaQ7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29460.1.png + small + + https://s.yimg.com/iu/api/res/1.2/a5MkUfQ9YpfjNrXRgXaQ7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29460.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30536 + 30536 + + Jhaustin Thomas + Jhaustin + Thomas + Jhaustin + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30536 + nfl.t.7 + Denver Broncos + Den + + 10 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29622 + 29622 + + Shaneil Jenkins + Shaneil + Jenkins + Shaneil + Jenkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29622 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/kenzJLW_ZZTvhsSV96nk5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29622.1.png + small + + https://s.yimg.com/iu/api/res/1.2/kenzJLW_ZZTvhsSV96nk5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29622.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31602 + 31602 + + Mat Boesen + Mat + Boesen + Mat + Boesen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31602 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 43 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31267 + 31267 + + Lyndon Johnson + Lyndon + Johnson + Lyndon + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31267 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31098 + 31098 + + Kentavius Street + Kentavius + Street + Kentavius + Street + + O + Out + nfl.p.31098 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/ntQePxM9Kr2.tz0PZ_IWPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31098.png + small + + https://s.yimg.com/iu/api/res/1.2/ntQePxM9Kr2.tz0PZ_IWPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31098.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31702 + 31702 + + Pat Afriyie + Pat + Afriyie + Pat + Afriyie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31702 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31765 + 31765 + + Kiante Anderson + Kiante + Anderson + Kiante + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31765 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 76 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30363 + 30363 + + Pat O'Connor + Pat + O'Connor + Pat + O'Connor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30363 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 79 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30190 + 30190 + + Daeshon Hall + Daeshon + Hall + Daeshon + Hall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30190 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30386 + 30386 + + Francis Kallon + Francis + Kallon + Francis + Kallon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30386 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/VeUFFhfXow9yHrqD0Qwayw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30386.png + small + + https://s.yimg.com/iu/api/res/1.2/VeUFFhfXow9yHrqD0Qwayw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30386.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25915 + 25915 + + Billy Winn + Billy + Winn + Billy + Winn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25915 + nfl.t.7 + Denver Broncos + Den + + 10 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/a6lZ3vQKWvaxJboHjR7M3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/25915.png + small + + https://s.yimg.com/iu/api/res/1.2/a6lZ3vQKWvaxJboHjR7M3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/25915.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31632 + 31632 + + Quincy Redmon + Quincy + Redmon + Quincy + Redmon + + undisclosed + nfl.p.31632 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 66 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28448 + 28448 + + Randy Gregory + Randy + Gregory + Randy + Gregory + + nfl.p.28448 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/AXK6nZ43Xpdi8TycP5pcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28448.png + small + + https://s.yimg.com/iu/api/res/1.2/AXK6nZ43Xpdi8TycP5pcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28448.png + 0 + DP + + DE + + 1 + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31594 + 31594 + + Jalen Wilkerson + Jalen + Wilkerson + Jalen + Wilkerson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31594 + nfl.t.28 + Washington Redskins + Was + + 4 + + 64 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30701 + 30701 + + Ricky Ali'ifua + Ricky + Ali'ifua + Ricky + Ali'ifua + + IR + Injured Reserve + undisclosed + nfl.p.30701 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27662 + 27662 + + Brent Urban + Brent + Urban + Brent + Urban + + nfl.p.27662 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/YGygQP9TfCLu.ES2EZls9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27662.png + small + + https://s.yimg.com/iu/api/res/1.2/YGygQP9TfCLu.ES2EZls9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27662.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27862 + 27862 + + Kerry Hyder Jr. + Kerry + Hyder Jr. + Kerry + Hyder Jr. + + nfl.p.27862 + nfl.t.8 + Detroit Lions + Det + + 6 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/5xXCvRr.AF4KaKIeM2AsJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27862.png + small + + https://s.yimg.com/iu/api/res/1.2/5xXCvRr.AF4KaKIeM2AsJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27862.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31428 + 31428 + + Christian LaCouture + Christian + LaCouture + Christian + LaCouture + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31428 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29802 + 29802 + + Claude Pelon + Claude + Pelon + Claude + Pelon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29802 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/kzGBFxTyQwr3Wc969SZfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29802.1.png + small + + https://s.yimg.com/iu/api/res/1.2/kzGBFxTyQwr3Wc969SZfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29802.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31710 + 31710 + + Connor Flagel + Connor + Flagel + Connor + Flagel + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31710 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29856 + 29856 + + Mitchell Loewen + Mitchell + Loewen + Mitchell + Loewen + + nfl.p.29856 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 70 + DE + + https://s.yimg.com/iu/api/res/1.2/ccDBlpKTTEuT35Ybun1SVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29856.png + small + + https://s.yimg.com/iu/api/res/1.2/ccDBlpKTTEuT35Ybun1SVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29856.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30823 + 30823 + + Shakir Soto + Shakir + Soto + Shakir + Soto + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30823 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 64 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30934 + 30934 + + Keionta Davis + Keionta + Davis + Keionta + Davis + + nfl.p.30934 + nfl.t.17 + New England Patriots + NE + + 11 + + 58 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28754 + 28754 + + Tavaris Barnes + Tavaris + Barnes + Tavaris + Barnes + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28754 + nfl.t.28 + Washington Redskins + Was + + 4 + + 63 + DE + + https://s.yimg.com/iu/api/res/1.2/npg_5ggXfijR6mBeBVZuAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28754.png + small + + https://s.yimg.com/iu/api/res/1.2/npg_5ggXfijR6mBeBVZuAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28754.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31086 + 31086 + + Dorance Armstrong Jr. + Dorance + Armstrong Jr. + Dorance + Armstrong Jr. + + nfl.p.31086 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 58 + DE + + https://s.yimg.com/iu/api/res/1.2/_L0sQSo.dw3hB2.ApTUUdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31086.png + small + + https://s.yimg.com/iu/api/res/1.2/_L0sQSo.dw3hB2.ApTUUdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31086.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30649 + 30649 + + Joby Saint Fleur + Joby + Saint Fleur + Joby + Saint Fleur + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30649 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 67 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30880 + 30880 + + Alex Jenkins + Alex + Jenkins + Alex + Jenkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30880 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29335 + 29335 + + Charles Tapper + Charles + Tapper + Charles + Tapper + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29335 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/ob2ftylAMBpgiSYv_XMmcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29335.png + small + + https://s.yimg.com/iu/api/res/1.2/ob2ftylAMBpgiSYv_XMmcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29335.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30626 + 30626 + + Fadol Brown + Fadol + Brown + Fadol + Brown + + nfl.p.30626 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7467 + 7467 + + John Denney + John + Denney + John + Denney + + nfl.p.7467 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/ClS5GHqAUdevgPZZfFHiKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7467.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ClS5GHqAUdevgPZZfFHiKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7467.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30984 + 30984 + + Marcus Davenport + Marcus + Davenport + Marcus + Davenport + + nfl.p.30984 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/5MZynzjRtqccJWd5IbCb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30984.png + small + + https://s.yimg.com/iu/api/res/1.2/5MZynzjRtqccJWd5IbCb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30984.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30455 + 30455 + + JT Jones + JT + Jones + JT + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30455 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/pAkYieMWVW7njJKmS8hAUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30455.png + small + + https://s.yimg.com/iu/api/res/1.2/pAkYieMWVW7njJKmS8hAUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30455.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26862 + 26862 + + David King + David + King + David + King + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26862 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/rSdBqtYOwlZNem30as1Qpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26862.1.png + small + + https://s.yimg.com/iu/api/res/1.2/rSdBqtYOwlZNem30as1Qpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26862.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30333 + 30333 + + Ifeadi Odenigbo + Ifeadi + Odenigbo + Ifeadi + Odenigbo + + nfl.p.30333 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/WpBV3dnFRL9ZELyaWirEDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/30333.png + small + + https://s.yimg.com/iu/api/res/1.2/WpBV3dnFRL9ZELyaWirEDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/30333.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31307 + 31307 + + Alec James + Alec + James + Alec + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31307 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25947 + 25947 + + Cam Johnson + Cam + Johnson + Cam + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25947 + nfl.t.8 + Detroit Lions + Det + + 6 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/AkP0LM_KZ.hxc4zZxNxOMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25947.1.png + small + + https://s.yimg.com/iu/api/res/1.2/AkP0LM_KZ.hxc4zZxNxOMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25947.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31037 + 31037 + + Chad Thomas + Chad + Thomas + Chad + Thomas + + nfl.p.31037 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/pMeJ5dCcdgpTfv201.Lsiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31037.png + small + + https://s.yimg.com/iu/api/res/1.2/pMeJ5dCcdgpTfv201.Lsiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31037.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31678 + 31678 + + Albert Havili + Albert + Havili + Albert + Havili + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31678 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31726 + 31726 + + Nick Thurman + Nick + Thurman + Nick + Thurman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31726 + nfl.t.34 + Houston Texans + Hou + + 10 + + 68 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31188 + 31188 + + Ade Aruna + Ade + Aruna + Ade + Aruna + + IR + Injured Reserve + right knee + nfl.p.31188 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31243 + 31243 + + Jonathan Wynn + Jonathan + Wynn + Jonathan + Wynn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31243 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 78 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31666 + 31666 + + Bunmi Rotimi + Bunmi + Rotimi + Bunmi + Rotimi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31666 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 74 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30427 + 30427 + + Tashawn Bower + Tashawn + Bower + Tashawn + Bower + + nfl.p.30427 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31084 + 31084 + + Da'Shawn Hand + Da'Shawn + Hand + Da'Shawn + Hand + + nfl.p.31084 + nfl.t.8 + Detroit Lions + Det + + 6 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/AMw_Lg5OOyFB8bW9zYai9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31084.png + small + + https://s.yimg.com/iu/api/res/1.2/AMw_Lg5OOyFB8bW9zYai9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31084.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31605 + 31605 + + Mike Love + Mike + Love + Mike + Love + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31605 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25510 + 25510 + + Justin Trattou + Justin + Trattou + Justin + Trattou + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25510 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/xy8BJ3OI2nrbnX0Wri2uyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25510.png + small + + https://s.yimg.com/iu/api/res/1.2/xy8BJ3OI2nrbnX0Wri2uyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25510.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31101 + 31101 + + Josh Sweat + Josh + Sweat + Josh + Sweat + + nfl.p.31101 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/bQUC6MBT5A.U2SwpiW7Dng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31101.png + small + + https://s.yimg.com/iu/api/res/1.2/bQUC6MBT5A.U2SwpiW7Dng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31101.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31353 + 31353 + + Mackendy Cheridor + Mackendy + Cheridor + Mackendy + Cheridor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31353 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26846 + 26846 + + Nick Williams + Nick + Williams + Nick + Williams + + nfl.p.26846 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/.fZeGVGk3AALV82b8wzy.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26846.1.png + small + + https://s.yimg.com/iu/api/res/1.2/.fZeGVGk3AALV82b8wzy.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26846.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31507 + 31507 + + Myles Humphrey + Myles + Humphrey + Myles + Humphrey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31507 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30766 + 30766 + + Alex Barrett + Alex + Barrett + Alex + Barrett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30766 + nfl.t.8 + Detroit Lions + Det + + 6 + + 58 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26300 + 26300 + + Jacquies Smith + Jacquies + Smith + Jacquies + Smith + + nfl.p.26300 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/FmO9YZP0RN3wmHLY2i0pUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26300.png + small + + https://s.yimg.com/iu/api/res/1.2/FmO9YZP0RN3wmHLY2i0pUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26300.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31442 + 31442 + + Conor Sheehy + Conor + Sheehy + Conor + Sheehy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31442 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 67 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31735 + 31735 + + Brian Womac + Brian + Womac + Brian + Womac + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31735 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 62 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31022 + 31022 + + Kemoko Turay + Kemoko + Turay + Kemoko + Turay + + nfl.p.31022 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/ZEydLvcv3ScqwANd7ypFOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31022.png + small + + https://s.yimg.com/iu/api/res/1.2/ZEydLvcv3ScqwANd7ypFOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31022.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31286 + 31286 + + Austin Larkin + Austin + Larkin + Austin + Larkin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31286 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 65 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28233 + 28233 + + Julius Warmsley + Julius + Warmsley + Julius + Warmsley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28233 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/gOuLJCSC.CAD_.fv._Wpvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28233.1.png + small + + https://s.yimg.com/iu/api/res/1.2/gOuLJCSC.CAD_.fv._Wpvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28233.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28462 + 28462 + + Owamagbe Odighizuwa + Owamagbe + Odighizuwa + Owamagbe + Odighizuwa + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28462 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/GZ03d5QgTyGCVR6mizDuVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28462.png + small + + https://s.yimg.com/iu/api/res/1.2/GZ03d5QgTyGCVR6mizDuVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28462.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30969 + 30969 + + Moubarak Djeri + Moubarak + Djeri + Moubarak + Djeri + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30969 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31565 + 31565 + + Ja'Von Rolland-Jones + Ja'Von + Rolland-Jones + Ja'Von + Rolland-Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31565 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28784 + 28784 + + Ryan Delaire + Ryan + Delaire + Ryan + Delaire + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28784 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/_UAPGETPxrBfOWJPo5Fweg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28784.png + small + + https://s.yimg.com/iu/api/res/1.2/_UAPGETPxrBfOWJPo5Fweg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28784.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28928 + 28928 + + Lavon Hooks + Lavon + Hooks + Lavon + Hooks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28928 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/wyEivmjjVj32vkoZge7eGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28928.png + small + + https://s.yimg.com/iu/api/res/1.2/wyEivmjjVj32vkoZge7eGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28928.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29304 + 29304 + + Bronson Kaufusi + Bronson + Kaufusi + Bronson + Kaufusi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29304 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/r4az7Q0HtSA5z00GPTp52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29304.png + small + + https://s.yimg.com/iu/api/res/1.2/r4az7Q0HtSA5z00GPTp52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29304.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28386 + 28386 + + Efe Obada + Efe + Obada + Efe + Obada + + nfl.p.28386 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31473 + 31473 + + Marcell Frazier + Marcell + Frazier + Marcell + Frazier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31473 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28485 + 28485 + + Geneo Grissom + Geneo + Grissom + Geneo + Grissom + + nfl.p.28485 + nfl.t.17 + New England Patriots + NE + + 11 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/9ooVaGs6PyNHOnTKgzdtJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28485.png + small + + https://s.yimg.com/iu/api/res/1.2/9ooVaGs6PyNHOnTKgzdtJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28485.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30948 + 30948 + + Whitney Richardson + Whitney + Richardson + Whitney + Richardson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30948 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30645 + 30645 + + Praise Martin-Oguike + Praise + Martin-Oguike + Praise + Martin-Oguike + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30645 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 51 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30405 + 30405 + + Carroll Phillips + Carroll + Phillips + Carroll + Phillips + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30405 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27578 + 27578 + + Jeremiah Attaochu + Jeremiah + Attaochu + Jeremiah + Attaochu + + nfl.p.27578 + nfl.t.20 + New York Jets + NYJ + + 11 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/4iAw5xiHrzd.WPhlBoCd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27578.png + small + + https://s.yimg.com/iu/api/res/1.2/4iAw5xiHrzd.WPhlBoCd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27578.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27726 + 27726 + + Zach Moore + Zach + Moore + Zach + Moore + + nfl.p.27726 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/wsHO9w.m26Xyr32hQXq.Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27726.png + small + + https://s.yimg.com/iu/api/res/1.2/wsHO9w.m26Xyr32hQXq.Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27726.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31256 + 31256 + + Demone Harris + Demone + Harris + Demone + Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31256 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30921 + 30921 + + Jeremy Faulk + Jeremy + Faulk + Jeremy + Faulk + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30921 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8869 + 8869 + + Cliff Avril + Cliff + Avril + Cliff + Avril + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8869 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/kekljEgSH6_6AQlUZcjm_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8869.png + small + + https://s.yimg.com/iu/api/res/1.2/kekljEgSH6_6AQlUZcjm_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8869.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31570 + 31570 + + Danny Ezechukwu + Danny + Ezechukwu + Danny + Ezechukwu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31570 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 63 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30804 + 30804 + + Matthew Godin + Matthew + Godin + Matthew + Godin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30804 + nfl.t.34 + Houston Texans + Hou + + 10 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26770 + 26770 + + Steven Means + Steven + Means + Steven + Means + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26770 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 51 + DE + + https://s.yimg.com/iu/api/res/1.2/qB.7i4wR5quGt8Y9bYxXPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26770.png + small + + https://s.yimg.com/iu/api/res/1.2/qB.7i4wR5quGt8Y9bYxXPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26770.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26840 + 26840 + + Armonty Bryant + Armonty + Bryant + Armonty + Bryant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26840 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/F5ft5Sn_Qix5QKS.fCx3cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26840.1.png + small + + https://s.yimg.com/iu/api/res/1.2/F5ft5Sn_Qix5QKS.fCx3cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26840.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25759 + 25759 + + Kendall Reyes + Kendall + Reyes + Kendall + Reyes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25759 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/rLiJTP.iQjD_9x5wo5Ad7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25759.png + small + + https://s.yimg.com/iu/api/res/1.2/rLiJTP.iQjD_9x5wo5Ad7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25759.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31106 + 31106 + + Marquis Haynes + Marquis + Haynes + Marquis + Haynes + + nfl.p.31106 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/A1SZj0MZWLnZJ.Y0iTKAgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31106.png + small + + https://s.yimg.com/iu/api/res/1.2/A1SZj0MZWLnZJ.Y0iTKAgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31106.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30393 + 30393 + + Hunter Dimick + Hunter + Dimick + Hunter + Dimick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30393 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 79 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30338 + 30338 + + Isaac Rochell + Isaac + Rochell + Isaac + Rochell + + nfl.p.30338 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30196 + 30196 + + Derek Rivers + Derek + Rivers + Derek + Rivers + + nfl.p.30196 + nfl.t.17 + New England Patriots + NE + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/BqEx.s5zlFeUog_jGLDJuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30196.png + small + + https://s.yimg.com/iu/api/res/1.2/BqEx.s5zlFeUog_jGLDJuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30196.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31738 + 31738 + + Blaine Woodson + Blaine + Woodson + Blaine + Woodson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31738 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 68 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30565 + 30565 + + Noble Nwachukwu + Noble + Nwachukwu + Noble + Nwachukwu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30565 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 67 + DE + + https://s.yimg.com/iu/api/res/1.2/yASQuWG6p44AeIvGBtRA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30565.png + small + + https://s.yimg.com/iu/api/res/1.2/yASQuWG6p44AeIvGBtRA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30565.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30644 + 30644 + + Cameron Malveaux + Cameron + Malveaux + Cameron + Malveaux + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30644 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31047 + 31047 + + Sam Hubbard + Sam + Hubbard + Sam + Hubbard + + nfl.p.31047 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/Hy6Gn_x_RK88Ql8d7PXBOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31047.png + small + + https://s.yimg.com/iu/api/res/1.2/Hy6Gn_x_RK88Ql8d7PXBOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31047.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30309 + 30309 + + Al-Quadin Muhammad + Al-Quadin + Muhammad + Al-Quadin + Muhammad + + nfl.p.30309 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31277 + 31277 + + Antonio Simmons + Antonio + Simmons + Antonio + Simmons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31277 + nfl.t.7 + Denver Broncos + Den + + 10 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26765 + 26765 + + Lavar Edwards + Lavar + Edwards + Lavar + Edwards + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26765 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/TJUfq1Bp61jUWJKJluEqWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26765.1.png + small + + https://s.yimg.com/iu/api/res/1.2/TJUfq1Bp61jUWJKJluEqWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26765.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30015 + 30015 + + Zach Wood + Zach + Wood + Zach + Wood + + nfl.p.30015 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 49 + DE + + https://s.yimg.com/iu/api/res/1.2/sSbxdERiB3ELMK7q6HNNkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30015.png + small + + https://s.yimg.com/iu/api/res/1.2/sSbxdERiB3ELMK7q6HNNkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30015.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31520 + 31520 + + Evan Perrizo + Evan + Perrizo + Evan + Perrizo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31520 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 78 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31728 + 31728 + + Da'Sean Downey + Da'Sean + Downey + Da'Sean + Downey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31728 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 49 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29522 + 29522 + + Chris Landrum + Chris + Landrum + Chris + Landrum + + Q + Questionable + nfl.p.29522 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 46 + DE + + https://s.yimg.com/iu/api/res/1.2/nbYnLs4_1YBZH0y1VUuMOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29522.png + small + + https://s.yimg.com/iu/api/res/1.2/nbYnLs4_1YBZH0y1VUuMOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29522.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.5897 + 5897 + + Dwight Freeney + Dwight + Freeney + Dwight + Freeney + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.5897 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/cRSH6EYAogHlaG57R.0Aiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130923/5897.png + small + + https://s.yimg.com/iu/api/res/1.2/cRSH6EYAogHlaG57R.0Aiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130923/5897.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25836 + 25836 + + Jared Crick + Jared + Crick + Jared + Crick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25836 + nfl.t.7 + Denver Broncos + Den + + 10 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/TZXzjPSU26DMzW1FE80LMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25836.1.png + small + + https://s.yimg.com/iu/api/res/1.2/TZXzjPSU26DMzW1FE80LMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25836.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31558 + 31558 + + Gaelin Elmore + Gaelin + Elmore + Gaelin + Elmore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31558 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31539 + 31539 + + Claudy Mathieu + Claudy + Mathieu + Claudy + Mathieu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31539 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 60 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29566 + 29566 + + Kameron Canaday + Kameron + Canaday + Kameron + Canaday + + nfl.p.29566 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/gSBdks8z.jDK3.faUCRnNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29566.png + small + + https://s.yimg.com/iu/api/res/1.2/gSBdks8z.jDK3.faUCRnNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29566.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29596 + 29596 + + Sterling Bailey + Sterling + Bailey + Sterling + Bailey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29596 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 79 + DE + + https://s.yimg.com/iu/api/res/1.2/3l3g6xONG97rKfZma0WRkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29596.1.png + small + + https://s.yimg.com/iu/api/res/1.2/3l3g6xONG97rKfZma0WRkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29596.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31105 + 31105 + + John Franklin-Myers + John + Franklin-Myers + John + Franklin-Myers + + nfl.p.31105 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/xKaP7KFbInfEVXMOTKpL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31105.png + small + + https://s.yimg.com/iu/api/res/1.2/xKaP7KFbInfEVXMOTKpL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31105.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31214 + 31214 + + Justin Lawler + Justin + Lawler + Justin + Lawler + + nfl.p.31214 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 53 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8843 + 8843 + + Kendall Langford + Kendall + Langford + Kendall + Langford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8843 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/4dKq9OlAWP2Lhim0S7.ASg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/8843.png + small + + https://s.yimg.com/iu/api/res/1.2/4dKq9OlAWP2Lhim0S7.ASg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/8843.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29751 + 29751 + + Trevon Coley + Trevon + Coley + Trevon + Coley + + nfl.p.29751 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/M3Nq31l4LbyGpLkUsOlPdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29751.1.png + small + + https://s.yimg.com/iu/api/res/1.2/M3Nq31l4LbyGpLkUsOlPdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29751.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30201 + 30201 + + Eddie Vanderdoes + Eddie + Vanderdoes + Eddie + Vanderdoes + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30201 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/3M4NMAq7pkgvwZvEjqxtbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30201.png + small + + https://s.yimg.com/iu/api/res/1.2/3M4NMAq7pkgvwZvEjqxtbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30201.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30168 + 30168 + + Dalvin Tomlinson + Dalvin + Tomlinson + Dalvin + Tomlinson + + nfl.p.30168 + nfl.t.19 + New York Giants + NYG + + 9 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/mLZgtD_YeoLiiLuDDXjwxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30168.png + small + + https://s.yimg.com/iu/api/res/1.2/mLZgtD_YeoLiiLuDDXjwxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30168.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29630 + 29630 + + Kyle Peko + Kyle + Peko + Kyle + Peko + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29630 + nfl.t.7 + Denver Broncos + Den + + 10 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/L.yaEec.Qd9MjsfI0UCFeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/29630.png + small + + https://s.yimg.com/iu/api/res/1.2/L.yaEec.Qd9MjsfI0UCFeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/29630.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28694 + 28694 + + Olsen Pierre + Olsen + Pierre + Olsen + Pierre + + Q + Questionable + nfl.p.28694 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 72 + DT + + https://s.yimg.com/iu/api/res/1.2/EVzFjsnTpa3EzfMWmNEnMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28694.png + small + + https://s.yimg.com/iu/api/res/1.2/EVzFjsnTpa3EzfMWmNEnMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28694.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28109 + 28109 + + Garrison Smith + Garrison + Smith + Garrison + Smith + + nfl.p.28109 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/P4P3eLwZ.kMMd8x6AVQrDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28109.png + small + + https://s.yimg.com/iu/api/res/1.2/P4P3eLwZ.kMMd8x6AVQrDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28109.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30655 + 30655 + + Adam Butler + Adam + Butler + Adam + Butler + + nfl.p.30655 + nfl.t.17 + New England Patriots + NE + + 11 + + 70 + DT + + https://s.yimg.com/iu/api/res/1.2/TZ7__pFyEGJzMGHeKaVepg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30655.png + small + + https://s.yimg.com/iu/api/res/1.2/TZ7__pFyEGJzMGHeKaVepg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30655.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29356 + 29356 + + Andrew Billings + Andrew + Billings + Andrew + Billings + + nfl.p.29356 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/D5bqr3KKVYThsVm5BFTOQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29356.1.png + small + + https://s.yimg.com/iu/api/res/1.2/D5bqr3KKVYThsVm5BFTOQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29356.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30792 + 30792 + + Eli Ankou + Eli + Ankou + Eli + Ankou + + nfl.p.30792 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 54 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29366 + 29366 + + Willie Henry + Willie + Henry + Willie + Henry + + O + Out + nfl.p.29366 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/5_0NcLp1QXpX3kAOfLZseA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29366.png + small + + https://s.yimg.com/iu/api/res/1.2/5_0NcLp1QXpX3kAOfLZseA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29366.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30307 + 30307 + + Vincent Taylor + Vincent + Taylor + Vincent + Taylor + + nfl.p.30307 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30251 + 30251 + + Ryan Glasgow + Ryan + Glasgow + Ryan + Glasgow + + nfl.p.30251 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30291 + 30291 + + Davon Godchaux + Davon + Godchaux + Davon + Godchaux + + nfl.p.30291 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 56 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30298 + 30298 + + Caleb Brantley + Caleb + Brantley + Caleb + Brantley + + nfl.p.30298 + nfl.t.28 + Washington Redskins + Was + + 4 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30130 + 30130 + + Jonathan Allen + Jonathan + Allen + Jonathan + Allen + + nfl.p.30130 + nfl.t.28 + Washington Redskins + Was + + 4 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/nz7NbCwmDYbt8mPXt8N4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30130.png + small + + https://s.yimg.com/iu/api/res/1.2/nz7NbCwmDYbt8mPXt8N4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30130.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30178 + 30178 + + Larry Ogunjobi + Larry + Ogunjobi + Larry + Ogunjobi + + nfl.p.30178 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/F5WvuWc7j9FkdpfTsnueWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30178.png + small + + https://s.yimg.com/iu/api/res/1.2/F5WvuWc7j9FkdpfTsnueWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30178.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30215 + 30215 + + Nazair Jones + Nazair + Jones + Nazair + Jones + + nfl.p.30215 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/k8UEfKPQDHCpAcLITQpNAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30215.png + small + + https://s.yimg.com/iu/api/res/1.2/k8UEfKPQDHCpAcLITQpNAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30215.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28478 + 28478 + + Carl Davis + Carl + Davis + Carl + Davis + + nfl.p.28478 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/WkkJ1gcJ4f9ocW2oBUmWTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28478.png + small + + https://s.yimg.com/iu/api/res/1.2/WkkJ1gcJ4f9ocW2oBUmWTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28478.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29263 + 29263 + + Robert Nkemdiche + Robert + Nkemdiche + Robert + Nkemdiche + + Q + Questionable + nfl.p.29263 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/fTaT2jMDcoBaqZw3Go2d5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29263.png + small + + https://s.yimg.com/iu/api/res/1.2/fTaT2jMDcoBaqZw3Go2d5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29263.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30310 + 30310 + + D.J. Jones + D.J. + Jones + D.J. + Jones + + nfl.p.30310 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/CjsH6gG_R2IkyBGmphYnhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30310.png + small + + https://s.yimg.com/iu/api/res/1.2/CjsH6gG_R2IkyBGmphYnhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30310.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30317 + 30317 + + Jeremiah Ledbetter + Jeremiah + Ledbetter + Jeremiah + Ledbetter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30317 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28598 + 28598 + + Christian Ringo + Christian + Ringo + Christian + Ringo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28598 + nfl.t.8 + Detroit Lions + Det + + 6 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/GmeQtospogR5c4A9A_8sWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28598.png + small + + https://s.yimg.com/iu/api/res/1.2/GmeQtospogR5c4A9A_8sWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28598.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29747 + 29747 + + Brian Price + Brian + Price + Brian + Price + + nfl.p.29747 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/yV6qbmwSHRM0WX3spH_OzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29747.png + small + + https://s.yimg.com/iu/api/res/1.2/yV6qbmwSHRM0WX3spH_OzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29747.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27245 + 27245 + + A.J. Francis + A.J. + Francis + A.J. + Francis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27245 + nfl.t.19 + New York Giants + NYG + + 9 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/YxCcucTN6BHGm.O1fDWqUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27245.png + small + + https://s.yimg.com/iu/api/res/1.2/YxCcucTN6BHGm.O1fDWqUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27245.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30257 + 30257 + + Grover Stewart + Grover + Stewart + Grover + Stewart + + nfl.p.30257 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30302 + 30302 + + Tanzel Smart + Tanzel + Smart + Tanzel + Smart + + nfl.p.30302 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30357 + 30357 + + Treyvon Hester + Treyvon + Hester + Treyvon + Hester + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30357 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24824 + 24824 + + Jabaal Sheard + Jabaal + Sheard + Jabaal + Sheard + + nfl.p.24824 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 93 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/OTVMGv1Z2YHF4VvsuvYkfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24824.1.png + small + + https://s.yimg.com/iu/api/res/1.2/OTVMGv1Z2YHF4VvsuvYkfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24824.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.25782 + 25782 + + Olivier Vernon + Olivier + Vernon + Olivier + Vernon + + Q + Questionable + nfl.p.25782 + nfl.t.19 + New York Giants + NYG + + 9 + + 54 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/7x7VjZSO8eOQOQKS4pBSZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25782.png + small + + https://s.yimg.com/iu/api/res/1.2/7x7VjZSO8eOQOQKS4pBSZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25782.png + 0 + DP + + LB + DE + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.25731 + 25731 + + Chandler Jones + Chandler + Jones + Chandler + Jones + + nfl.p.25731 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/f9LV9tPCsQma7KCDQpAIJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25731.png + small + + https://s.yimg.com/iu/api/res/1.2/f9LV9tPCsQma7KCDQpAIJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25731.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 41 + 0 + + + + 380.p.26752 + 26752 + + John Simon + John + Simon + John + Simon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26752 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 51 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/Xc2GZbADNYm4QahPXPb9Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26752.1.png + small + + https://s.yimg.com/iu/api/res/1.2/Xc2GZbADNYm4QahPXPb9Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26752.1.png + 0 + DP + + LB + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28446 + 28446 + + Markus Golden + Markus + Golden + Markus + Golden + + Q + Questionable + nfl.p.28446 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 44 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/BzRcl6ry673Mi5EGk6SzXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28446.png + small + + https://s.yimg.com/iu/api/res/1.2/BzRcl6ry673Mi5EGk6SzXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28446.png + 0 + DP + + LB + DE + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25725 + 25725 + + Bruce Irvin + Bruce + Irvin + Bruce + Irvin + + nfl.p.25725 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 51 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/9GSB3SYL6aW1Eg1nMYsZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25725.png + small + + https://s.yimg.com/iu/api/res/1.2/9GSB3SYL6aW1Eg1nMYsZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25725.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.29867 + 29867 + + Romeo Okwara + Romeo + Okwara + Romeo + Okwara + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29867 + nfl.t.19 + New York Giants + NYG + + 9 + + 78 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/jIpMb1S7soCfI4bTydGt2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29867.png + small + + https://s.yimg.com/iu/api/res/1.2/jIpMb1S7soCfI4bTydGt2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29867.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24154 + 24154 + + Arthur Moats + Arthur + Moats + Arthur + Moats + + IR + Injured Reserve + knee + nfl.p.24154 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 93 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/IXkV8zH1JIlQ29NUtHKaTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24154.png + small + + https://s.yimg.com/iu/api/res/1.2/IXkV8zH1JIlQ29NUtHKaTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24154.png + 0 + DP + + LB + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24801 + 24801 + + Robert Quinn + Robert + Quinn + Robert + Quinn + + nfl.p.24801 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 94 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/SEdcDFl99GrZysDPALTJrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24801.png + small + + https://s.yimg.com/iu/api/res/1.2/SEdcDFl99GrZysDPALTJrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24801.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27554 + 27554 + + Marcus Smith II + Marcus + Smith II + Marcus + Smith II + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27554 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 44 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/rmR5VhDHh7tdEosMXrIiFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27554.png + small + + https://s.yimg.com/iu/api/res/1.2/rmR5VhDHh7tdEosMXrIiFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27554.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29797 + 29797 + + Ufomba Kamalu + Ufomba + Kamalu + Ufomba + Kamalu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29797 + nfl.t.34 + Houston Texans + Hou + + 10 + + 94 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/fZ3pSF9nbDvF0O17w8LRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29797.1.png + small + + https://s.yimg.com/iu/api/res/1.2/fZ3pSF9nbDvF0O17w8LRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29797.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30229 + 30229 + + Carl Lawson + Carl + Lawson + Carl + Lawson + + nfl.p.30229 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 58 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/cXNpX75U.NU_o9A2OvWA9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30229.png + small + + https://s.yimg.com/iu/api/res/1.2/cXNpX75U.NU_o9A2OvWA9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30229.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30280 + 30280 + + Avery Moss + Avery + Moss + Avery + Moss + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30280 + nfl.t.19 + New York Giants + NYG + + 9 + + 91 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/TRjbN7LcRGhb5WmkDAKUqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30280.png + small + + https://s.yimg.com/iu/api/res/1.2/TRjbN7LcRGhb5WmkDAKUqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30280.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30193 + 30193 + + Tarell Basham + Tarell + Basham + Tarell + Basham + + Q + Questionable + nfl.p.30193 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 58 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7872 + 7872 + + Domata Peko + Domata + Peko + Domata + Peko + + nfl.p.7872 + nfl.t.7 + Denver Broncos + Den + + 10 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/kbK1Ol4pgw3BkUAgAadOxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/7872.png + small + + https://s.yimg.com/iu/api/res/1.2/kbK1Ol4pgw3BkUAgAadOxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/7872.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29759 + 29759 + + Michael Pierce + Michael + Pierce + Michael + Pierce + + nfl.p.29759 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/snT3B__kofYHdNjQfPqiYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29759.png + small + + https://s.yimg.com/iu/api/res/1.2/snT3B__kofYHdNjQfPqiYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29759.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29246 + 29246 + + Sheldon Rankins + Sheldon + Rankins + Sheldon + Rankins + + nfl.p.29246 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/OmPeYGyUD6tscMTyCtRzrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29246.png + small + + https://s.yimg.com/iu/api/res/1.2/OmPeYGyUD6tscMTyCtRzrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29246.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29687 + 29687 + + Destiny Vaeao + Destiny + Vaeao + Destiny + Vaeao + + nfl.p.29687 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/RJmN1GEr4.UlYDfhaDE7LQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29687.png + small + + https://s.yimg.com/iu/api/res/1.2/RJmN1GEr4.UlYDfhaDE7LQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29687.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24294 + 24294 + + Kyle Love + Kyle + Love + Kyle + Love + + nfl.p.24294 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/RM_c3Fx7NhuyH_BTD95nDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24294.png + small + + https://s.yimg.com/iu/api/res/1.2/RM_c3Fx7NhuyH_BTD95nDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24294.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25847 + 25847 + + Malik Jackson + Malik + Jackson + Malik + Jackson + + nfl.p.25847 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/CUytEvv.c.eoNGp7BpzqLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25847.png + small + + https://s.yimg.com/iu/api/res/1.2/CUytEvv.c.eoNGp7BpzqLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25847.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.24929 + 24929 + + Karl Klug + Karl + Klug + Karl + Klug + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24929 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/_GbQWFur2NNuetlqQvtkoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24929.png + small + + https://s.yimg.com/iu/api/res/1.2/_GbQWFur2NNuetlqQvtkoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24929.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26636 + 26636 + + Sheldon Richardson + Sheldon + Richardson + Sheldon + Richardson + + nfl.p.26636 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/JpBODsvu7mmXt4eu2QEoXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26636.png + small + + https://s.yimg.com/iu/api/res/1.2/JpBODsvu7mmXt4eu2QEoXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26636.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.28504 + 28504 + + Rodney Gunter + Rodney + Gunter + Rodney + Gunter + + nfl.p.28504 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/0hR1JRZioLTPopRhGpGdxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28504.png + small + + https://s.yimg.com/iu/api/res/1.2/0hR1JRZioLTPopRhGpGdxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28504.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29314 + 29314 + + Adolphus Washington + Adolphus + Washington + Adolphus + Washington + + nfl.p.29314 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/VWo0vgSlf3AJmEc8ORNbhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29314.1.png + small + + https://s.yimg.com/iu/api/res/1.2/VWo0vgSlf3AJmEc8ORNbhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29314.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24864 + 24864 + + Jurrell Casey + Jurrell + Casey + Jurrell + Casey + + nfl.p.24864 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/iDMGTp0FYl0qzx78DR2DeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24864.png + small + + https://s.yimg.com/iu/api/res/1.2/iDMGTp0FYl0qzx78DR2DeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24864.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.24805 + 24805 + + Corey Liuget + Corey + Liuget + Corey + Liuget + + SUSP + Suspended + nfl.p.24805 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/nARbous_HhOgr8vvPoMwdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24805.png + small + + https://s.yimg.com/iu/api/res/1.2/nARbous_HhOgr8vvPoMwdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24805.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25791 + 25791 + + Tyrone Crawford + Tyrone + Crawford + Tyrone + Crawford + + nfl.p.25791 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/.HswnPSrwEZkgBdEYqc7GQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25791.png + small + + https://s.yimg.com/iu/api/res/1.2/.HswnPSrwEZkgBdEYqc7GQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25791.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29096 + 29096 + + David Irving + David + Irving + David + Irving + + SUSP + Suspended + nfl.p.29096 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/JZX3.GZDxAAt6PY4M6RUkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29096.png + small + + https://s.yimg.com/iu/api/res/1.2/JZX3.GZDxAAt6PY4M6RUkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29096.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27752 + 27752 + + Beau Allen + Beau + Allen + Beau + Allen + + nfl.p.27752 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/ewYuHMd03ZIMorRo2961OQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27752.png + small + + https://s.yimg.com/iu/api/res/1.2/ewYuHMd03ZIMorRo2961OQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27752.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.23978 + 23978 + + Gerald McCoy + Gerald + McCoy + Gerald + McCoy + + nfl.p.23978 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/hbfAO42AEfqC79ykTvlm9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23978.png + small + + https://s.yimg.com/iu/api/res/1.2/hbfAO42AEfqC79ykTvlm9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23978.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.24778 + 24778 + + Tom Johnson + Tom + Johnson + Tom + Johnson + + nfl.p.24778 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/eLAsErotIA0ExQN4qcfWTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24778.png + small + + https://s.yimg.com/iu/api/res/1.2/eLAsErotIA0ExQN4qcfWTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24778.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7840 + 7840 + + Frostee Rucker + Frostee + Rucker + Frostee + Rucker + + nfl.p.7840 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/fSOq804b4Oc18r3azKjZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7840.png + small + + https://s.yimg.com/iu/api/res/1.2/fSOq804b4Oc18r3azKjZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7840.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27748 + 27748 + + Shamar Stephen + Shamar + Stephen + Shamar + Stephen + + nfl.p.27748 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/rYDRyeIc_Er0p45yTl1qYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27748.png + small + + https://s.yimg.com/iu/api/res/1.2/rYDRyeIc_Er0p45yTl1qYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27748.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24056 + 24056 + + Earl Mitchell + Earl + Mitchell + Earl + Mitchell + + nfl.p.24056 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/JLmCqL8L.wh.IZI1I6gx7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24056.png + small + + https://s.yimg.com/iu/api/res/1.2/JLmCqL8L.wh.IZI1I6gx7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24056.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.23977 + 23977 + + Ndamukong Suh + Ndamukong + Suh + Ndamukong + Suh + + nfl.p.23977 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/u6LOxcN8wBjUsGZww2CFVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/23977.png + small + + https://s.yimg.com/iu/api/res/1.2/u6LOxcN8wBjUsGZww2CFVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/23977.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 12 + 0 + + + + 380.p.29261 + 29261 + + Kenny Clark + Kenny + Clark + Kenny + Clark + + nfl.p.29261 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/41HrAiHK3B_.0GhqvJimMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29261.png + small + + https://s.yimg.com/iu/api/res/1.2/41HrAiHK3B_.0GhqvJimMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29261.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27983 + 27983 + + Jamie Meder + Jamie + Meder + Jamie + Meder + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27983 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/a1opajqINyvWbTmyigfC3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27983.1.png + small + + https://s.yimg.com/iu/api/res/1.2/a1opajqINyvWbTmyigfC3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27983.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8854 + 8854 + + Pat Sims + Pat + Sims + Pat + Sims + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8854 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/XCqXL2rCTR4.Ac6_FVMSDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8854.1.png + small + + https://s.yimg.com/iu/api/res/1.2/XCqXL2rCTR4.Ac6_FVMSDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8854.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9513 + 9513 + + Clinton McDonald + Clinton + McDonald + Clinton + McDonald + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9513 + nfl.t.7 + Denver Broncos + Den + + 10 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/6l4jiu09i2.xXKCS1C3rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9513.png + small + + https://s.yimg.com/iu/api/res/1.2/6l4jiu09i2.xXKCS1C3rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9513.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7761 + 7761 + + Haloti Ngata + Haloti + Ngata + Haloti + Ngata + + nfl.p.7761 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/OHKs4zOU6nwRem_51iQWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7761.png + small + + https://s.yimg.com/iu/api/res/1.2/OHKs4zOU6nwRem_51iQWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7761.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25797 + 25797 + + John Hughes III + John + Hughes III + John + Hughes III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25797 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/HoJ0NLHFN2d5_5jM3mE7Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25797.1.png + small + + https://s.yimg.com/iu/api/res/1.2/HoJ0NLHFN2d5_5jM3mE7Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25797.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28525 + 28525 + + Grady Jarrett + Grady + Jarrett + Grady + Jarrett + + nfl.p.28525 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/lS5Q8CARJ6kJWMMqxY_g5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28525.png + small + + https://s.yimg.com/iu/api/res/1.2/lS5Q8CARJ6kJWMMqxY_g5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28525.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27853 + 27853 + + Tenny Palepoi + Tenny + Palepoi + Tenny + Palepoi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27853 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/U1ARWAQjLTdouzXWYEIM6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27853.png + small + + https://s.yimg.com/iu/api/res/1.2/U1ARWAQjLTdouzXWYEIM6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27853.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25842 + 25842 + + Mike Daniels + Mike + Daniels + Mike + Daniels + + nfl.p.25842 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/nWG_.YqWo.t7wY_IijqKnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25842.png + small + + https://s.yimg.com/iu/api/res/1.2/nWG_.YqWo.t7wY_IijqKnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25842.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24021 + 24021 + + Linval Joseph + Linval + Joseph + Linval + Joseph + + nfl.p.24021 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/USiP1R1LihP0_D9wwufKmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24021.png + small + + https://s.yimg.com/iu/api/res/1.2/USiP1R1LihP0_D9wwufKmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24021.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.27056 + 27056 + + Damion Square + Damion + Square + Damion + Square + + nfl.p.27056 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/hRRd8qaS8xmC6UZZ1jWkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27056.png + small + + https://s.yimg.com/iu/api/res/1.2/hRRd8qaS8xmC6UZZ1jWkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27056.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26672 + 26672 + + Johnathan Hankins + Johnathan + Hankins + Johnathan + Hankins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26672 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/7yiN0AjQ6Utog5TMDS9J5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/26672.png + small + + https://s.yimg.com/iu/api/res/1.2/7yiN0AjQ6Utog5TMDS9J5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/26672.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29241 + 29241 + + DeForest Buckner + DeForest + Buckner + DeForest + Buckner + + nfl.p.29241 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/NNjyP5lrjEQXqI0Hj1Ufow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29241.png + small + + https://s.yimg.com/iu/api/res/1.2/NNjyP5lrjEQXqI0Hj1Ufow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29241.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 12 + 0 + + + + 380.p.24790 + 24790 + + Marcell Dareus + Marcell + Dareus + Marcell + Dareus + + Q + Questionable + nfl.p.24790 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/4CMu1Ed8a9Iuje_sBADe_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24790.png + small + + https://s.yimg.com/iu/api/res/1.2/4CMu1Ed8a9Iuje_sBADe_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24790.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28427 + 28427 + + Eddie Goldman + Eddie + Goldman + Eddie + Goldman + + nfl.p.28427 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/CcLjIdatvbqbWdJZGjUBcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28427.png + small + + https://s.yimg.com/iu/api/res/1.2/CcLjIdatvbqbWdJZGjUBcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28427.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8967 + 8967 + + Ahtyba Rubin + Ahtyba + Rubin + Ahtyba + Rubin + + IR + Injured Reserve + undisclosed + nfl.p.8967 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/d65PXsXeOEU.76uKYe35hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8967.png + small + + https://s.yimg.com/iu/api/res/1.2/d65PXsXeOEU.76uKYe35hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8967.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28400 + 28400 + + Danny Shelton + Danny + Shelton + Danny + Shelton + + nfl.p.28400 + nfl.t.17 + New England Patriots + NE + + 11 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/TjOG1RyUGi0LT3DCo4JC1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28400.png + small + + https://s.yimg.com/iu/api/res/1.2/TjOG1RyUGi0LT3DCo4JC1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28400.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25225 + 25225 + + Sealver Siliga + Sealver + Siliga + Sealver + Siliga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25225 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/6lD4DUCzjIsUd.kDoRNR0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25225.png + small + + https://s.yimg.com/iu/api/res/1.2/6lD4DUCzjIsUd.kDoRNR0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25225.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28420 + 28420 + + Malcom Brown + Malcom + Brown + Malcom + Brown + + nfl.p.28420 + nfl.t.17 + New England Patriots + NE + + 11 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/Tyjo51l0CduBXizfhcvKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28420.png + small + + https://s.yimg.com/iu/api/res/1.2/Tyjo51l0CduBXizfhcvKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28420.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26054 + 26054 + + Tyrunn Walker + Tyrunn + Walker + Tyrunn + Walker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26054 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/hV8GTLohn7p6kOGoEMKn7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26054.png + small + + https://s.yimg.com/iu/api/res/1.2/hV8GTLohn7p6kOGoEMKn7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26054.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26828 + 26828 + + Stacy McGee + Stacy + McGee + Stacy + McGee + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.26828 + nfl.t.28 + Washington Redskins + Was + + 4 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/AsaFPmzceS4hWWsj1vWrEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26828.png + small + + https://s.yimg.com/iu/api/res/1.2/AsaFPmzceS4hWWsj1vWrEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26828.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28178 + 28178 + + Robert Thomas + Robert + Thomas + Robert + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28178 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/nRxoh7UxOlNBl9hiQBNxgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28178.png + small + + https://s.yimg.com/iu/api/res/1.2/nRxoh7UxOlNBl9hiQBNxgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28178.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25724 + 25724 + + Michael Brockers + Michael + Brockers + Michael + Brockers + + nfl.p.25724 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/T9ofOW3TFcjnbbwmjwwAbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25724.png + small + + https://s.yimg.com/iu/api/res/1.2/T9ofOW3TFcjnbbwmjwwAbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25724.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.26717 + 26717 + + Brandon Williams + Brandon + Williams + Brandon + Williams + + nfl.p.26717 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/Tj7Q.88KhARJkPO9n4V6jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26717.png + small + + https://s.yimg.com/iu/api/res/1.2/Tj7Q.88KhARJkPO9n4V6jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26717.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26705 + 26705 + + John Jenkins + John + Jenkins + John + Jenkins + + nfl.p.26705 + nfl.t.19 + New York Giants + NYG + + 9 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/zxNRGM48MpjCWIKjat4mWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26705.png + small + + https://s.yimg.com/iu/api/res/1.2/zxNRGM48MpjCWIKjat4mWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26705.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28481 + 28481 + + Henry Anderson + Henry + Anderson + Henry + Anderson + + nfl.p.28481 + nfl.t.20 + New York Jets + NYJ + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/d2t._jRR6a7KYsqKIt8WMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28481.png + small + + https://s.yimg.com/iu/api/res/1.2/d2t._jRR6a7KYsqKIt8WMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28481.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26690 + 26690 + + Bennie Logan + Bennie + Logan + Bennie + Logan + + nfl.p.26690 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/9MfkVqbSwlP8bWlnpmtuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26690.png + small + + https://s.yimg.com/iu/api/res/1.2/9MfkVqbSwlP8bWlnpmtuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26690.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28542 + 28542 + + Tyeler Davison + Tyeler + Davison + Tyeler + Davison + + nfl.p.28542 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/pPodZpMQs4b20xPWdceJOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28542.png + small + + https://s.yimg.com/iu/api/res/1.2/pPodZpMQs4b20xPWdceJOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28542.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24098 + 24098 + + Al Woods + Al + Woods + Al + Woods + + nfl.p.24098 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/q7A6oI59e__zFZgKG9OuSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24098.png + small + + https://s.yimg.com/iu/api/res/1.2/q7A6oI59e__zFZgKG9OuSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24098.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29323 + 29323 + + Javon Hargrave + Javon + Hargrave + Javon + Hargrave + + nfl.p.29323 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/zY8VM00Cy2aa5UAjXM8huw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29323.png + small + + https://s.yimg.com/iu/api/res/1.2/zY8VM00Cy2aa5UAjXM8huw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29323.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27104 + 27104 + + Abry Jones + Abry + Jones + Abry + Jones + + nfl.p.27104 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/RAjur6aRiNpN.gCYFCNbpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27104.1.png + small + + https://s.yimg.com/iu/api/res/1.2/RAjur6aRiNpN.gCYFCNbpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27104.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26723 + 26723 + + Akeem Spence + Akeem + Spence + Akeem + Spence + + nfl.p.26723 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/S4GhGg_P5ZRMXDvwpv3Kcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26723.png + small + + https://s.yimg.com/iu/api/res/1.2/S4GhGg_P5ZRMXDvwpv3Kcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26723.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29354 + 29354 + + David Onyemata + David + Onyemata + David + Onyemata + + nfl.p.29354 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/qlE42pq6QegboipIxlOmbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29354.png + small + + https://s.yimg.com/iu/api/res/1.2/qlE42pq6QegboipIxlOmbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29354.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27602 + 27602 + + Jay Bromley + Jay + Bromley + Jay + Bromley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27602 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/duVBWtnl_xOxJixdKY5rkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27602.png + small + + https://s.yimg.com/iu/api/res/1.2/duVBWtnl_xOxJixdKY5rkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27602.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27635 + 27635 + + Justin Ellis + Justin + Ellis + Justin + Ellis + + nfl.p.27635 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/Qs2RPjN.EQrqr6G2.GUjuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27635.png + small + + https://s.yimg.com/iu/api/res/1.2/Qs2RPjN.EQrqr6G2.GUjuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27635.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27541 + 27541 + + Aaron Donald + Aaron + Donald + Aaron + Donald + + nfl.p.27541 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/waFe8fR0GYR3jwROgA3FUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27541.png + small + + https://s.yimg.com/iu/api/res/1.2/waFe8fR0GYR3jwROgA3FUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27541.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 40 + 0 + + + + 380.p.25745 + 25745 + + Courtney Upshaw + Courtney + Upshaw + Courtney + Upshaw + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25745 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/wd2XfolLCMh4DbDFoI4Jzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25745.png + small + + https://s.yimg.com/iu/api/res/1.2/wd2XfolLCMh4DbDFoI4Jzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25745.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24095 + 24095 + + Geno Atkins + Geno + Atkins + Geno + Atkins + + nfl.p.24095 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/HMJ_kiH7_07_ainQglsR0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24095.png + small + + https://s.yimg.com/iu/api/res/1.2/HMJ_kiH7_07_ainQglsR0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24095.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.26153 + 26153 + + Damon Harrison + Damon + Harrison + Damon + Harrison + + nfl.p.26153 + nfl.t.19 + New York Giants + NYG + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/hv0.JzZNVbbLpzlVh85W_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26153.png + small + + https://s.yimg.com/iu/api/res/1.2/hv0.JzZNVbbLpzlVh85W_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26153.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.9508 + 9508 + + Ricky Jean Francois + Ricky + Jean Francois + Ricky + Jean Francois + + nfl.p.9508 + nfl.t.8 + Detroit Lions + Det + + 6 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/fGpiVRa4M.LS2iBKLDKFHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/9508.png + small + + https://s.yimg.com/iu/api/res/1.2/fGpiVRa4M.LS2iBKLDKFHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/9508.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29400 + 29400 + + D.J. Reader + D.J. + Reader + D.J. + Reader + + nfl.p.29400 + nfl.t.34 + Houston Texans + Hou + + 10 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/ewD2COIhtTz1UCGY954gcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29400.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ewD2COIhtTz1UCGY954gcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29400.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25722 + 25722 + + Fletcher Cox + Fletcher + Cox + Fletcher + Cox + + nfl.p.25722 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/mD8ekbBRI10ZUM6dsV.LeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25722.png + small + + https://s.yimg.com/iu/api/res/1.2/mD8ekbBRI10ZUM6dsV.LeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25722.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.26667 + 26667 + + Kawann Short + Kawann + Short + Kawann + Short + + nfl.p.26667 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/DBQwkc6ELURIPf6e7hOzPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26667.png + small + + https://s.yimg.com/iu/api/res/1.2/DBQwkc6ELURIPf6e7hOzPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26667.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.29289 + 29289 + + Jarran Reed + Jarran + Reed + Jarran + Reed + + nfl.p.29289 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/XyLvBrMbblwR8_FoRtLewg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29289.png + small + + https://s.yimg.com/iu/api/res/1.2/XyLvBrMbblwR8_FoRtLewg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29289.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8339 + 8339 + + Brandon Mebane + Brandon + Mebane + Brandon + Mebane + + nfl.p.8339 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/VRNEHexvbXha_JefoPdRAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/8339.png + small + + https://s.yimg.com/iu/api/res/1.2/VRNEHexvbXha_JefoPdRAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/8339.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29376 + 29376 + + Ronald Blair III + Ronald + Blair III + Ronald + Blair III + + nfl.p.29376 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/TPjl1T.3B7FeZH6lwdt3Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29376.png + small + + https://s.yimg.com/iu/api/res/1.2/TPjl1T.3B7FeZH6lwdt3Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29376.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29337 + 29337 + + Sheldon Day + Sheldon + Day + Sheldon + Day + + nfl.p.29337 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/05pSbGoxIr3S_iZ7hs9KRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29337.1.png + small + + https://s.yimg.com/iu/api/res/1.2/05pSbGoxIr3S_iZ7hs9KRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29337.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29264 + 29264 + + Vernon Butler + Vernon + Butler + Vernon + Butler + + nfl.p.29264 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/0liL8EAYUZIT1a3i3fTUAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29264.png + small + + https://s.yimg.com/iu/api/res/1.2/0liL8EAYUZIT1a3i3fTUAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29264.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28405 + 28405 + + Arik Armstead + Arik + Armstead + Arik + Armstead + + nfl.p.28405 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/9dDNlvfToUfzEecslFGtcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28405.png + small + + https://s.yimg.com/iu/api/res/1.2/9dDNlvfToUfzEecslFGtcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28405.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.8287 + 8287 + + Alan Branch + Alan + Branch + Alan + Branch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8287 + nfl.t.17 + New England Patriots + NE + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/1N.wmPgSQUye5tmfn8a98g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/8287.png + small + + https://s.yimg.com/iu/api/res/1.2/1N.wmPgSQUye5tmfn8a98g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/8287.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9535 + 9535 + + Chris Baker + Chris + Baker + Chris + Baker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9535 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/ee0uG9r0XVmLl03OfhKFrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9535.png + small + + https://s.yimg.com/iu/api/res/1.2/ee0uG9r0XVmLl03OfhKFrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9535.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24852 + 24852 + + Terrell McClain + Terrell + McClain + Terrell + McClain + + nfl.p.24852 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/61QEf2weVPZLh6U._7GTow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24852.png + small + + https://s.yimg.com/iu/api/res/1.2/61QEf2weVPZLh6U._7GTow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24852.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9673 + 9673 + + Steve McLendon + Steve + McLendon + Steve + McLendon + + Q + Questionable + nfl.p.9673 + nfl.t.20 + New York Jets + NYJ + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/LgyKuiEcz5L5OwH8MLSG8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9673.1.png + small + + https://s.yimg.com/iu/api/res/1.2/LgyKuiEcz5L5OwH8MLSG8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9673.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25048 + 25048 + + Cedric Thornton + Cedric + Thornton + Cedric + Thornton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25048 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/_lrv5s3F85xhSj0l1GCYcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25048.png + small + + https://s.yimg.com/iu/api/res/1.2/_lrv5s3F85xhSj0l1GCYcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25048.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29280 + 29280 + + A'Shawn Robinson + A'Shawn + Robinson + A'Shawn + Robinson + + nfl.p.29280 + nfl.t.8 + Detroit Lions + Det + + 6 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/XU3oLJfHWK2PB.yZuW8KCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29280.png + small + + https://s.yimg.com/iu/api/res/1.2/XU3oLJfHWK2PB.yZuW8KCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29280.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26637 + 26637 + + Star Lotulelei + Star + Lotulelei + Star + Lotulelei + + nfl.p.26637 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/6xSlx0kcQ8SCqrLoq8CzLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26637.png + small + + https://s.yimg.com/iu/api/res/1.2/6xSlx0kcQ8SCqrLoq8CzLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26637.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26651 + 26651 + + Sylvester Williams + Sylvester + Williams + Sylvester + Williams + + nfl.p.26651 + nfl.t.8 + Detroit Lions + Det + + 6 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/oI8J5tbnt2EpJkaxH5hSoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26651.png + small + + https://s.yimg.com/iu/api/res/1.2/oI8J5tbnt2EpJkaxH5hSoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26651.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29301 + 29301 + + Maliek Collins + Maliek + Collins + Maliek + Collins + + nfl.p.29301 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/4r.hw3QaF2TRLNspZzL0cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29301.png + small + + https://s.yimg.com/iu/api/res/1.2/4r.hw3QaF2TRLNspZzL0cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29301.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28440 + 28440 + + Jordan Phillips + Jordan + Phillips + Jordan + Phillips + + nfl.p.28440 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/rhs.lYE3HGnSUThWfQEnDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28440.1.png + small + + https://s.yimg.com/iu/api/res/1.2/rhs.lYE3HGnSUThWfQEnDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28440.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28085 + 28085 + + Mike Pennel + Mike + Pennel + Mike + Pennel + + nfl.p.28085 + nfl.t.20 + New York Jets + NYJ + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/dFuXFYOwqyAwlh4TsuYisA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28085.png + small + + https://s.yimg.com/iu/api/res/1.2/dFuXFYOwqyAwlh4TsuYisA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28085.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28815 + 28815 + + Xavier Williams + Xavier + Williams + Xavier + Williams + + nfl.p.28815 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/lPshOL1tK88URp_BVs7DIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28815.png + small + + https://s.yimg.com/iu/api/res/1.2/lPshOL1tK88URp_BVs7DIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28815.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24058 + 24058 + + Corey Peters + Corey + Peters + Corey + Peters + + Q + Questionable + nfl.p.24058 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/tc3BlxH2mfbdMxZyzaIFvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24058.png + small + + https://s.yimg.com/iu/api/res/1.2/tc3BlxH2mfbdMxZyzaIFvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24058.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26780 + 26780 + + Quinton Dial + Quinton + Dial + Quinton + Dial + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26780 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/Dso9bH4Z5kqFt9duP3IjCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26780.png + small + + https://s.yimg.com/iu/api/res/1.2/Dso9bH4Z5kqFt9duP3IjCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26780.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29277 + 29277 + + Austin Johnson + Austin + Johnson + Austin + Johnson + + nfl.p.29277 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/hqIVyxmvhRXZeQdK.mgTXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29277.png + small + + https://s.yimg.com/iu/api/res/1.2/hqIVyxmvhRXZeQdK.mgTXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29277.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8039 + 8039 + + Tony McDaniel + Tony + McDaniel + Tony + McDaniel + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8039 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/EDhECjhqoCP9N3tCIQkOYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/8039.png + small + + https://s.yimg.com/iu/api/res/1.2/EDhECjhqoCP9N3tCIQkOYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/8039.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29350 + 29350 + + Hassan Ridgeway + Hassan + Ridgeway + Hassan + Ridgeway + + nfl.p.29350 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/66QF6n8xtPCP9cx2o5elgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29350.1.png + small + + https://s.yimg.com/iu/api/res/1.2/66QF6n8xtPCP9cx2o5elgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29350.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30316 + 30316 + + Derrick Jones + Derrick + Jones + Derrick + Jones + + nfl.p.30316 + nfl.t.20 + New York Jets + NYJ + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31636 + 31636 + + Chris Jones + Chris + Jones + Chris + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31636 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30744 + 30744 + + Jeremy Boykins + Jeremy + Boykins + Jeremy + Boykins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30744 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 1 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31179 + 31179 + + Cornell Armstrong + Cornell + Armstrong + Cornell + Armstrong + + nfl.p.31179 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27685 + 27685 + + Shaq Richardson + Shaq + Richardson + Shaq + Richardson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27685 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/fkSkXJWUz.YelrH9DORrwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27685.png + small + + https://s.yimg.com/iu/api/res/1.2/fkSkXJWUz.YelrH9DORrwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27685.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31095 + 31095 + + Avonte Maddox + Avonte + Maddox + Avonte + Maddox + + nfl.p.31095 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/Mis3tUzLnw2FswA11VvmUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31095.png + small + + https://s.yimg.com/iu/api/res/1.2/Mis3tUzLnw2FswA11VvmUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31095.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31422 + 31422 + + Darious Williams + Darious + Williams + Darious + Williams + + nfl.p.31422 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30479 + 30479 + + Jonathan Moxey + Jonathan + Moxey + Jonathan + Moxey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30479 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31140 + 31140 + + Darius Phillips + Darius + Phillips + Darius + Phillips + + nfl.p.31140 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/PNBCY692anxrxTD5siIGMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31140.png + small + + https://s.yimg.com/iu/api/res/1.2/PNBCY692anxrxTD5siIGMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31140.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31667 + 31667 + + Kevin Toliver II + Kevin + Toliver II + Kevin + Toliver II + + nfl.p.31667 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29684 + 29684 + + C.J. Smith + C.J. + Smith + C.J. + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29684 + nfl.t.7 + Denver Broncos + Den + + 10 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/cKm_w.Ohf8ZAuyGz1cfpYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29684.png + small + + https://s.yimg.com/iu/api/res/1.2/cKm_w.Ohf8ZAuyGz1cfpYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29684.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28552 + 28552 + + Lorenzo Doss + Lorenzo + Doss + Lorenzo + Doss + + nfl.p.28552 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/JvV03R6Z4_L84gm2queKkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28552.png + small + + https://s.yimg.com/iu/api/res/1.2/JvV03R6Z4_L84gm2queKkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28552.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31295 + 31295 + + Donovan Olumba + Donovan + Olumba + Donovan + Olumba + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31295 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28444 + 28444 + + Senquez Golson + Senquez + Golson + Senquez + Golson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28444 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/nq0lzCsDHTFxJBmNDJeQ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28444.png + small + + https://s.yimg.com/iu/api/res/1.2/nq0lzCsDHTFxJBmNDJeQ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28444.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31091 + 31091 + + Taron Johnson + Taron + Johnson + Taron + Johnson + + nfl.p.31091 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/pLD4bFH_MFqs9DvR58alVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31091.png + small + + https://s.yimg.com/iu/api/res/1.2/pLD4bFH_MFqs9DvR58alVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31091.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31573 + 31573 + + Andre Chachere + Andre + Chachere + Andre + Chachere + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31573 + nfl.t.34 + Houston Texans + Hou + + 10 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28270 + 28270 + + Tyler Patmon + Tyler + Patmon + Tyler + Patmon + + nfl.p.28270 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/nKBGt9WOgou8XRYlwbW6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28270.1.png + small + + https://s.yimg.com/iu/api/res/1.2/nKBGt9WOgou8XRYlwbW6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28270.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30607 + 30607 + + Donatello Brown + Donatello + Brown + Donatello + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30607 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 44 + CB + + https://s.yimg.com/iu/api/res/1.2/_B7l3WHdbVaqXkgHkpYSFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30607.png + small + + https://s.yimg.com/iu/api/res/1.2/_B7l3WHdbVaqXkgHkpYSFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30607.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31603 + 31603 + + Levi Wallace + Levi + Wallace + Levi + Wallace + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31603 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 47 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25879 + 25879 + + Asa Jackson + Asa + Jackson + Asa + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25879 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/kGbUpBmFplj.wv77E8GMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25879.png + small + + https://s.yimg.com/iu/api/res/1.2/kGbUpBmFplj.wv77E8GMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25879.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25833 + 25833 + + Brandon Boykin + Brandon + Boykin + Brandon + Boykin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25833 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/ESTVhhUSsV0UxselOIBreA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/25833.png + small + + https://s.yimg.com/iu/api/res/1.2/ESTVhhUSsV0UxselOIBreA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/25833.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31025 + 31025 + + Donte Jackson + Donte + Jackson + Donte + Jackson + + nfl.p.31025 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/KBZDiHGSsdXuM.Zu5U4DxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31025.png + small + + https://s.yimg.com/iu/api/res/1.2/KBZDiHGSsdXuM.Zu5U4DxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31025.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31270 + 31270 + + Quenton Meeks + Quenton + Meeks + Quenton + Meeks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31270 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31660 + 31660 + + Michael Joseph + Michael + Joseph + Michael + Joseph + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31660 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30415 + 30415 + + Arthur Maulet + Arthur + Maulet + Arthur + Maulet + + nfl.p.30415 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31550 + 31550 + + Aaron Davis + Aaron + Davis + Aaron + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31550 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31555 + 31555 + + Grant Haley + Grant + Haley + Grant + Haley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31555 + nfl.t.19 + New York Giants + NYG + + 9 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24508 + 24508 + + Sam Shields + Sam + Shields + Sam + Shields + + SUSP + Suspended + nfl.p.24508 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/mdg0XnJ1CIHWbNJAtGeApw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24508.png + small + + https://s.yimg.com/iu/api/res/1.2/mdg0XnJ1CIHWbNJAtGeApw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24508.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31211 + 31211 + + Greg Stroman + Greg + Stroman + Greg + Stroman + + nfl.p.31211 + nfl.t.28 + Washington Redskins + Was + + 4 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30335 + 30335 + + Jalen Myrick + Jalen + Myrick + Jalen + Myrick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30335 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30156 + 30156 + + Sidney Jones + Sidney + Jones + Sidney + Jones + + nfl.p.30156 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31166 + 31166 + + Tremon Smith + Tremon + Smith + Tremon + Smith + + nfl.p.31166 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30093 + 30093 + + Jeff Richards + Jeff + Richards + Jeff + Richards + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30093 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31368 + 31368 + + Lashard Durr + Lashard + Durr + Lashard + Durr + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31368 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31607 + 31607 + + Rico Gafford + Rico + Gafford + Rico + Gafford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31607 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27833 + 27833 + + Lou Young III + Lou + Young III + Lou + Young III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27833 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/6iKrqI.Asm1wITLKm3g6rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27833.png + small + + https://s.yimg.com/iu/api/res/1.2/6iKrqI.Asm1wITLKm3g6rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27833.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29896 + 29896 + + Jeremiah McKinnon + Jeremiah + McKinnon + Jeremiah + McKinnon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29896 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 47 + CB + + https://s.yimg.com/iu/api/res/1.2/TWhDz5OkniExcmiqrvdwTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29896.png + small + + https://s.yimg.com/iu/api/res/1.2/TWhDz5OkniExcmiqrvdwTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29896.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26571 + 26571 + + Chris Lewis-Harris + Chris + Lewis-Harris + Chris + Lewis-Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26571 + nfl.t.19 + New York Giants + NYG + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/jsc.M5Ied_Uu4HA87nBiCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26571.1.png + small + + https://s.yimg.com/iu/api/res/1.2/jsc.M5Ied_Uu4HA87nBiCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26571.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29564 + 29564 + + Elie Bouka + Elie + Bouka + Elie + Bouka + + IR + Injured Reserve + undisclosed + nfl.p.29564 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/zvCD0Iy9jDirrAR_74EptA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29564.png + small + + https://s.yimg.com/iu/api/res/1.2/zvCD0Iy9jDirrAR_74EptA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29564.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29027 + 29027 + + Jonathon Mincy + Jonathon + Mincy + Jonathon + Mincy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29027 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31445 + 31445 + + Reggie Hall + Reggie + Hall + Reggie + Hall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31445 + nfl.t.20 + New York Jets + NYJ + + 11 + + + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31459 + 31459 + + Montrel Meander + Montrel + Meander + Montrel + Meander + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31459 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31706 + 31706 + + Josh Okonye + Josh + Okonye + Josh + Okonye + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31706 + nfl.t.8 + Detroit Lions + Det + + 6 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30265 + 30265 + + Corn Elder + Corn + Elder + Corn + Elder + + nfl.p.30265 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31756 + 31756 + + Juante Baldwin + Juante + Baldwin + Juante + Baldwin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31756 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24746 + 24746 + + Teddy Williams + Teddy + Williams + Teddy + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24746 + nfl.t.19 + New York Giants + NYG + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/7jGBBKkeo8Js1WrYAtTMNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24746.png + small + + https://s.yimg.com/iu/api/res/1.2/7jGBBKkeo8Js1WrYAtTMNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24746.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31630 + 31630 + + Amari Coleman + Amari + Coleman + Amari + Coleman + + IR + Injured Reserve + undisclosed + nfl.p.31630 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 44 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27254 + 27254 + + Terrell Sinkfield Jr. + Terrell + Sinkfield Jr. + Terrell + Sinkfield Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27254 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/L1BCWTfrEoVGfUu6jF0XaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27254.png + small + + https://s.yimg.com/iu/api/res/1.2/L1BCWTfrEoVGfUu6jF0XaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27254.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31671 + 31671 + + Tony Brown + Tony + Brown + Tony + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31671 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31634 + 31634 + + Mike Ford + Mike + Ford + Mike + Ford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31634 + nfl.t.8 + Detroit Lions + Det + + 6 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31764 + 31764 + + Sam Beal + Sam + Beal + Sam + Beal + + IR + Injured Reserve + shoulder + nfl.p.31764 + nfl.t.19 + New York Giants + NYG + + 9 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31703 + 31703 + + Mike Jones + Mike + Jones + Mike + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31703 + nfl.t.19 + New York Giants + NYG + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30646 + 30646 + + Torry McTyer + Torry + McTyer + Torry + McTyer + + nfl.p.30646 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29302 + 29302 + + Will Redmond + Will + Redmond + Will + Redmond + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29302 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/Sx_iVzuIs5gi1oTwOKFCYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29302.png + small + + https://s.yimg.com/iu/api/res/1.2/Sx_iVzuIs5gi1oTwOKFCYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29302.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30913 + 30913 + + Jarell Carter + Jarell + Carter + Jarell + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30913 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31712 + 31712 + + John Franklin III + John + Franklin III + John + Franklin III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31712 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30286 + 30286 + + Brian Allen + Brian + Allen + Brian + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30286 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/.PTrrwYky6kmaMKAjh2LzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30286.png + small + + https://s.yimg.com/iu/api/res/1.2/.PTrrwYky6kmaMKAjh2LzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30286.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30491 + 30491 + + Ryan Lewis + Ryan + Lewis + Ryan + Lewis + + nfl.p.30491 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/QGPcHayoJ3eK2ZP17gCXMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30491.png + small + + https://s.yimg.com/iu/api/res/1.2/QGPcHayoJ3eK2ZP17gCXMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30491.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29749 + 29749 + + Herb Waters + Herb + Waters + Herb + Waters + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29749 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/H1QXT3kujAG74.IooEQUfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29749.png + small + + https://s.yimg.com/iu/api/res/1.2/H1QXT3kujAG74.IooEQUfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29749.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31690 + 31690 + + Marko Myers + Marko + Myers + Marko + Myers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31690 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30549 + 30549 + + Channing Stribling + Channing + Stribling + Channing + Stribling + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30549 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28637 + 28637 + + Akeem King + Akeem + King + Akeem + King + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28637 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/yg2x2tsPqZEeKdJjEM9JWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28637.png + small + + https://s.yimg.com/iu/api/res/1.2/yg2x2tsPqZEeKdJjEM9JWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28637.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31121 + 31121 + + Davontae Harris + Davontae + Harris + Davontae + Harris + + IR + Injured Reserve + knee + nfl.p.31121 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/fgGW..K9liUAFwVDo7N4IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31121.png + small + + https://s.yimg.com/iu/api/res/1.2/fgGW..K9liUAFwVDo7N4IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31121.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31375 + 31375 + + Henre' Toliver + Henre' + Toliver + Henre' + Toliver + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31375 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 42 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29407 + 29407 + + Trey Caldwell + Trey + Caldwell + Trey + Caldwell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29407 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/CmljHXnkXQkUFfb0FqfhEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29407.1.png + small + + https://s.yimg.com/iu/api/res/1.2/CmljHXnkXQkUFfb0FqfhEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29407.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29483 + 29483 + + Prince Charles Iworah + Prince Charles + Iworah + Prince Charles + Iworah + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29483 + nfl.t.28 + Washington Redskins + Was + + 4 + + 47 + CB + + https://s.yimg.com/iu/api/res/1.2/5FsQWAqdpg3qvYJB8hzsUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29483.png + small + + https://s.yimg.com/iu/api/res/1.2/5FsQWAqdpg3qvYJB8hzsUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29483.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31080 + 31080 + + Nick Nelson + Nick + Nelson + Nick + Nelson + + Q + Questionable + nfl.p.31080 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/CKyV8.4MigcGMPGpx.9tWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31080.png + small + + https://s.yimg.com/iu/api/res/1.2/CKyV8.4MigcGMPGpx.9tWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31080.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28959 + 28959 + + Robertson Daniel + Robertson + Daniel + Robertson + Daniel + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28959 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/Tqd1uQnJFfCm3iI.bMiRYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28959.png + small + + https://s.yimg.com/iu/api/res/1.2/Tqd1uQnJFfCm3iI.bMiRYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28959.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31386 + 31386 + + Emmanuel Moseley + Emmanuel + Moseley + Emmanuel + Moseley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31386 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30311 + 30311 + + Jeremy Clark + Jeremy + Clark + Jeremy + Clark + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30311 + nfl.t.20 + New York Jets + NYJ + + 11 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31028 + 31028 + + Isaiah Oliver + Isaiah + Oliver + Isaiah + Oliver + + Q + Questionable + nfl.p.31028 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/wqxxV5V44denS.jj6RMJrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31028.png + small + + https://s.yimg.com/iu/api/res/1.2/wqxxV5V44denS.jj6RMJrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31028.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31261 + 31261 + + Dee Delaney + Dee + Delaney + Dee + Delaney + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31261 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31786 + 31786 + + Mike Basile + Mike + Basile + Mike + Basile + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31786 + nfl.t.19 + New York Giants + NYG + + 9 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30664 + 30664 + + D.J. Killings + D.J. + Killings + D.J. + Killings + + IR + Injured Reserve + undisclosed + nfl.p.30664 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/_QNo6LBg0bgFN1_O2K909g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30664.png + small + + https://s.yimg.com/iu/api/res/1.2/_QNo6LBg0bgFN1_O2K909g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30664.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31402 + 31402 + + Danny Johnson + Danny + Johnson + Danny + Johnson + + nfl.p.31402 + nfl.t.28 + Washington Redskins + Was + + 4 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29308 + 29308 + + KeiVarae Russell + KeiVarae + Russell + KeiVarae + Russell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29308 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/N.0Yoqp5UfeN0AU.1iiVMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29308.1.png + small + + https://s.yimg.com/iu/api/res/1.2/N.0Yoqp5UfeN0AU.1iiVMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29308.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29808 + 29808 + + Duke Thomas + Duke + Thomas + Duke + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29808 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/ChXaLH_PgKJxdffG9sSRlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29808.png + small + + https://s.yimg.com/iu/api/res/1.2/ChXaLH_PgKJxdffG9sSRlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29808.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31293 + 31293 + + Charvarius Ward + Charvarius + Ward + Charvarius + Ward + + nfl.p.31293 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31358 + 31358 + + Joseph Putu + Joseph + Putu + Joseph + Putu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31358 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31023 + 31023 + + M.J. Stewart + M.J. + Stewart + M.J. + Stewart + + Q + Questionable + nfl.p.31023 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/4dtYV9tTkiLLxhAMMI6kwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31023.png + small + + https://s.yimg.com/iu/api/res/1.2/4dtYV9tTkiLLxhAMMI6kwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31023.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31755 + 31755 + + Jackson Porter + Jackson + Porter + Jackson + Porter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31755 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31069 + 31069 + + Isaac Yiadom + Isaac + Yiadom + Isaac + Yiadom + + nfl.p.31069 + nfl.t.7 + Denver Broncos + Den + + 10 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/NpFWqpRLIX9TEU2EmUnMLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31069.png + small + + https://s.yimg.com/iu/api/res/1.2/NpFWqpRLIX9TEU2EmUnMLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31069.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31262 + 31262 + + Tre Herndon III + Tre + Herndon III + Tre + Herndon III + + nfl.p.31262 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30716 + 30716 + + Jomal Wiltz + Jomal + Wiltz + Jomal + Wiltz + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30716 + nfl.t.17 + New England Patriots + NE + + 11 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30710 + 30710 + + Randall Goforth + Randall + Goforth + Randall + Goforth + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30710 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29916 + 29916 + + Taveze Calhoun + Taveze + Calhoun + Taveze + Calhoun + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29916 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/MuxKFk.1ssKtwVPOXLAGNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29916.png + small + + https://s.yimg.com/iu/api/res/1.2/MuxKFk.1ssKtwVPOXLAGNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29916.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31524 + 31524 + + Malik Reaves + Malik + Reaves + Malik + Reaves + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31524 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30495 + 30495 + + Sojourn Shelton + Sojourn + Shelton + Sojourn + Shelton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30495 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/BZu19C5dTxlez67aark.Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30495.png + small + + https://s.yimg.com/iu/api/res/1.2/BZu19C5dTxlez67aark.Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30495.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31650 + 31650 + + J.C. Jackson + J.C. + Jackson + J.C. + Jackson + + nfl.p.31650 + nfl.t.17 + New England Patriots + NE + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30137 + 30137 + + Gareon Conley + Gareon + Conley + Gareon + Conley + + nfl.p.30137 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/uhBL1R1O9.Q0fMhIb8C3pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30137.png + small + + https://s.yimg.com/iu/api/res/1.2/uhBL1R1O9.Q0fMhIb8C3pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30137.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30569 + 30569 + + Xavier Coleman + Xavier + Coleman + Xavier + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30569 + nfl.t.20 + New York Jets + NYJ + + 11 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27676 + 27676 + + Bene Benwikere + Bene + Benwikere + Bene + Benwikere + + nfl.p.27676 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/U.X2OqGZvLmsPgbw_i2I6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27676.png + small + + https://s.yimg.com/iu/api/res/1.2/U.X2OqGZvLmsPgbw_i2I6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27676.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31672 + 31672 + + B.J. Clay + B.J. + Clay + B.J. + Clay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31672 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31789 + 31789 + + Bryce Canady + Bryce + Canady + Bryce + Canady + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31789 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31370 + 31370 + + Robert Jackson + Robert + Jackson + Robert + Jackson + + IR + Injured Reserve + undisclosed + nfl.p.31370 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28656 + 28656 + + Denzel Rice + Denzel + Rice + Denzel + Rice + + nfl.p.28656 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/sJWOuEQueSWuBNbQR0Miww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28656.png + small + + https://s.yimg.com/iu/api/res/1.2/sJWOuEQueSWuBNbQR0Miww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28656.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30108 + 30108 + + Bradley Sylve + Bradley + Sylve + Bradley + Sylve + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30108 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31321 + 31321 + + Tavierre Thomas + Tavierre + Thomas + Tavierre + Thomas + + nfl.p.31321 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31498 + 31498 + + Arrion Springs + Arrion + Springs + Arrion + Springs + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31498 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31658 + 31658 + + Rashard Fant + Rashard + Fant + Rashard + Fant + + undisclosed + nfl.p.31658 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31600 + 31600 + + Ryan Carter + Ryan + Carter + Ryan + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31600 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 46 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27123 + 27123 + + Sheldon Price + Sheldon + Price + Sheldon + Price + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27123 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/DvKCwOphIuL8KtiG0QzX2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27123.png + small + + https://s.yimg.com/iu/api/res/1.2/DvKCwOphIuL8KtiG0QzX2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27123.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30207 + 30207 + + Cameron Sutton + Cameron + Sutton + Cameron + Sutton + + nfl.p.30207 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/TTzuFHlC5pWNwqzcbfx67Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30207.png + small + + https://s.yimg.com/iu/api/res/1.2/TTzuFHlC5pWNwqzcbfx67Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30207.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30695 + 30695 + + Raysean Pringle + Raysean + Pringle + Raysean + Pringle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30695 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/_gbAesz77aBvww7ps.uzwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30695.png + small + + https://s.yimg.com/iu/api/res/1.2/_gbAesz77aBvww7ps.uzwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30695.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31406 + 31406 + + Ranthony Texada + Ranthony + Texada + Ranthony + Texada + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31406 + nfl.t.28 + Washington Redskins + Was + + 4 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31451 + 31451 + + Elijah Campbell + Elijah + Campbell + Elijah + Campbell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31451 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30974 + 30974 + + Denzel Ward + Denzel + Ward + Denzel + Ward + + Q + Questionable + nfl.p.30974 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/x_9vj3Tk.xNrRUri2wF.gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30974.png + small + + https://s.yimg.com/iu/api/res/1.2/x_9vj3Tk.xNrRUri2wF.gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30974.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.29723 + 29723 + + Makinton Dorleant + Makinton + Dorleant + Makinton + Dorleant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29723 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/OJYkYzBhG1YL5x_E4s1jvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29723.png + small + + https://s.yimg.com/iu/api/res/1.2/OJYkYzBhG1YL5x_E4s1jvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29723.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29956 + 29956 + + Kenneth Durden + Kenneth + Durden + Kenneth + Durden + + nfl.p.29956 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/fflKz3HllkC7MABfKFA26Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29956.png + small + + https://s.yimg.com/iu/api/res/1.2/fflKz3HllkC7MABfKFA26Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29956.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30329 + 30329 + + Marquez White + Marquez + White + Marquez + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30329 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/uXAuSVLBl0F6t.XMIbSPZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30329.png + small + + https://s.yimg.com/iu/api/res/1.2/uXAuSVLBl0F6t.XMIbSPZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30329.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29924 + 29924 + + Kevin Peterson + Kevin + Peterson + Kevin + Peterson + + IR + Injured Reserve + torn ACL + nfl.p.29924 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/EN1SMviVhLAq_izw1vDIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29924.png + small + + https://s.yimg.com/iu/api/res/1.2/EN1SMviVhLAq_izw1vDIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29924.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31610 + 31610 + + Ryan McKinley + Ryan + McKinley + Ryan + McKinley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31610 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30846 + 30846 + + Jaylen Hill + Jaylen + Hill + Jaylen + Hill + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30846 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/ontw412.rmGSYyUGT3.V0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30846.png + small + + https://s.yimg.com/iu/api/res/1.2/ontw412.rmGSYyUGT3.V0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30846.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31294 + 31294 + + Kam Kelly + Kam + Kelly + Kam + Kelly + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31294 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30623 + 30623 + + Breon Borders + Breon + Borders + Breon + Borders + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30623 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30683 + 30683 + + Ashton Lampkin + Ashton + Lampkin + Ashton + Lampkin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30683 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 6 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31112 + 31112 + + D.J. Reed Jr. + D.J. + Reed Jr. + D.J. + Reed Jr. + + nfl.p.31112 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/e1.ldYe6XVBvXKUP0Y5NaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31112.png + small + + https://s.yimg.com/iu/api/res/1.2/e1.ldYe6XVBvXKUP0Y5NaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31112.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30472 + 30472 + + Maurice Fleming + Maurice + Fleming + Maurice + Fleming + + IR + Injured Reserve + undisclosed + nfl.p.30472 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27989 + 27989 + + Sammy Seamster + Sammy + Seamster + Sammy + Seamster + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27989 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/B3A2zXG3msxSR0wQ3WW5Tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27989.png + small + + https://s.yimg.com/iu/api/res/1.2/B3A2zXG3msxSR0wQ3WW5Tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27989.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31000 + 31000 + + Mike Hughes + Mike + Hughes + Mike + Hughes + + nfl.p.31000 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/JsJbpjMca5yR5RDE6drZRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31000.png + small + + https://s.yimg.com/iu/api/res/1.2/JsJbpjMca5yR5RDE6drZRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31000.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28136 + 28136 + + Dashaun Phillips + Dashaun + Phillips + Dashaun + Phillips + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28136 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/jTzHRN90gyAURDxnXNPgJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28136.png + small + + https://s.yimg.com/iu/api/res/1.2/jTzHRN90gyAURDxnXNPgJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28136.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29706 + 29706 + + Darius Hillary + Darius + Hillary + Darius + Hillary + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29706 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/.Bvjuj9twLJg9OhdWpSB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29706.1.png + small + + https://s.yimg.com/iu/api/res/1.2/.Bvjuj9twLJg9OhdWpSB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29706.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30443 + 30443 + + Horace Richardson + Horace + Richardson + Horace + Richardson + + IR + Injured Reserve + nfl.p.30443 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28715 + 28715 + + Trovon Reed + Trovon + Reed + Trovon + Reed + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28715 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/uxeOMIPh6zAk_dIjBSyW3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28715.png + small + + https://s.yimg.com/iu/api/res/1.2/uxeOMIPh6zAk_dIjBSyW3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28715.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30477 + 30477 + + Greg Mabin + Greg + Mabin + Greg + Mabin + + nfl.p.30477 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31033 + 31033 + + Carlton Davis + Carlton + Davis + Carlton + Davis + + nfl.p.31033 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/u3oV3aYuxgpbkWDfno13ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31033.png + small + + https://s.yimg.com/iu/api/res/1.2/u3oV3aYuxgpbkWDfno13ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31033.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31418 + 31418 + + Trey Johnson + Trey + Johnson + Trey + Johnson + + IR + Injured Reserve + shoulder + nfl.p.31418 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30348 + 30348 + + Joshua Holsey + Joshua + Holsey + Joshua + Holsey + + O + Out + nfl.p.30348 + nfl.t.28 + Washington Redskins + Was + + 4 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31589 + 31589 + + Chandon Sullivan + Chandon + Sullivan + Chandon + Sullivan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31589 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30794 + 30794 + + Dee Virgin + Dee + Virgin + Dee + Virgin + + nfl.p.30794 + nfl.t.8 + Detroit Lions + Det + + 6 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30859 + 30859 + + Bryce Jones + Bryce + Jones + Bryce + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30859 + nfl.t.34 + Houston Texans + Hou + + 10 + + 44 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30776 + 30776 + + Josh Thornton + Josh + Thornton + Josh + Thornton + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30776 + nfl.t.34 + Houston Texans + Hou + + 10 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31509 + 31509 + + Craig James + Craig + James + Craig + James + + IR + Injured Reserve + undisclosed + nfl.p.31509 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28639 + 28639 + + Taurean Nixon + Taurean + Nixon + Taurean + Nixon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28639 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/jsdDmsChgaI7BWfflW8AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28639.png + small + + https://s.yimg.com/iu/api/res/1.2/jsdDmsChgaI7BWfflW8AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28639.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31385 + 31385 + + Tarvarus McFadden + Tarvarus + McFadden + Tarvarus + McFadden + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31385 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31152 + 31152 + + Christian Campbell + Christian + Campbell + Christian + Campbell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31152 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30988 + 30988 + + Jaire Alexander + Jaire + Alexander + Jaire + Alexander + + nfl.p.30988 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/dnz5twArrd25VA7n31_UmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30988.png + small + + https://s.yimg.com/iu/api/res/1.2/dnz5twArrd25VA7n31_UmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30988.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31676 + 31676 + + Brandon Facyson + Brandon + Facyson + Brandon + Facyson + + nfl.p.31676 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31779 + 31779 + + Christian Boutte + Christian + Boutte + Christian + Boutte + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31779 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30239 + 30239 + + Howard Wilson + Howard + Wilson + Howard + Wilson + + IR + Injured Reserve + torn left patellar tendon + nfl.p.30239 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29487 + 29487 + + Kalan Reed + Kalan + Reed + Kalan + Reed + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29487 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/CbWXa9uLJ75Yu1BkWU5bww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29487.png + small + + https://s.yimg.com/iu/api/res/1.2/CbWXa9uLJ75Yu1BkWU5bww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29487.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30821 + 30821 + + Marcus Rios + Marcus + Rios + Marcus + Rios + + IR + Injured Reserve + undisclosed + nfl.p.30821 + nfl.t.7 + Denver Broncos + Den + + 10 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31553 + 31553 + + Bryon Fields Jr. + Bryon + Fields Jr. + Bryon + Fields Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31553 + nfl.t.19 + New York Giants + NYG + + 9 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29021 + 29021 + + Tim Scott + Tim + Scott + Tim + Scott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29021 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 45 + CB + + https://s.yimg.com/iu/api/res/1.2/RrB_08MapM6_dr64IKV0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29021.1.png + small + + https://s.yimg.com/iu/api/res/1.2/RrB_08MapM6_dr64IKV0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29021.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28509 + 28509 + + Doran Grant + Doran + Grant + Doran + Grant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28509 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/hib_.oWKokPeUhNlZy8Edw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28509.png + small + + https://s.yimg.com/iu/api/res/1.2/hib_.oWKokPeUhNlZy8Edw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28509.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31534 + 31534 + + Jalen Davis + Jalen + Davis + Jalen + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31534 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 1 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31088 + 31088 + + Anthony Averett + Anthony + Averett + Anthony + Averett + + nfl.p.31088 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/xRIyRsUISqYZmq3HPDlyZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31088.png + small + + https://s.yimg.com/iu/api/res/1.2/xRIyRsUISqYZmq3HPDlyZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31088.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31545 + 31545 + + Johnathan Alston + Johnathan + Alston + Johnathan + Alston + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31545 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31314 + 31314 + + Deatrick Nichols + Deatrick + Nichols + Deatrick + Nichols + + nfl.p.31314 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31675 + 31675 + + Marcus Edmond + Marcus + Edmond + Marcus + Edmond + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31675 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31192 + 31192 + + Jermaine Kelly Jr. + Jermaine + Kelly Jr. + Jermaine + Kelly Jr. + + IR + Injured Reserve + undisclosed + nfl.p.31192 + nfl.t.34 + Houston Texans + Hou + + 10 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31026 + 31026 + + Duke Dawson + Duke + Dawson + Duke + Dawson + + Q + Questionable + nfl.p.31026 + nfl.t.17 + New England Patriots + NE + + 11 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/ncojEzn3HjRLJCAFfxn4bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31026.png + small + + https://s.yimg.com/iu/api/res/1.2/ncojEzn3HjRLJCAFfxn4bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31026.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31149 + 31149 + + Parry Nickerson + Parry + Nickerson + Parry + Nickerson + + Q + Questionable + nfl.p.31149 + nfl.t.20 + New York Jets + NYJ + + 11 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31631 + 31631 + + Antwuan Davis + Antwuan + Davis + Antwuan + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31631 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 49 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29936 + 29936 + + Bryson Keeton + Bryson + Keeton + Bryson + Keeton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29936 + nfl.t.20 + New York Jets + NYJ + + 11 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/x1K0hWN.wMY.kZ0v3nAM4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29936.1.png + small + + https://s.yimg.com/iu/api/res/1.2/x1K0hWN.wMY.kZ0v3nAM4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29936.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30532 + 30532 + + Reggie Porter + Reggie + Porter + Reggie + Porter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30532 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26120 + 26120 + + Terrance Parks + Terrance + Parks + Terrance + Parks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26120 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 46 + CB + + https://s.yimg.com/iu/api/res/1.2/oySZo8vrUgdR6bL6sAX6yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/26120.3.png + small + + https://s.yimg.com/iu/api/res/1.2/oySZo8vrUgdR6bL6sAX6yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/26120.3.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29848 + 29848 + + Michael Hunter + Michael + Hunter + Michael + Hunter + + Q + Questionable + nfl.p.29848 + nfl.t.7 + Denver Broncos + Den + + 10 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/arEKFr4m2xR3EQa8JtEqmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29848.png + small + + https://s.yimg.com/iu/api/res/1.2/arEKFr4m2xR3EQa8JtEqmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29848.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31015 + 31015 + + Josh Jackson + Josh + Jackson + Josh + Jackson + + nfl.p.31015 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/xSGC0LjTeVcmE7bhuNBBSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31015.png + small + + https://s.yimg.com/iu/api/res/1.2/xSGC0LjTeVcmE7bhuNBBSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31015.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31762 + 31762 + + Adonis Alexander + Adonis + Alexander + Adonis + Alexander + + nfl.p.31762 + nfl.t.28 + Washington Redskins + Was + + 4 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30381 + 30381 + + Cole Luke + Cole + Luke + Cole + Luke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30381 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26693 + 26693 + + Blidi Wreh-Wilson + Blidi + Wreh-Wilson + Blidi + Wreh-Wilson + + Q + Questionable + nfl.p.26693 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/6Fg8i94Gp0G1WqGOyLQvWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26693.png + small + + https://s.yimg.com/iu/api/res/1.2/6Fg8i94Gp0G1WqGOyLQvWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26693.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31297 + 31297 + + Elijah Battle + Elijah + Battle + Elijah + Battle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31297 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 7 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31409 + 31409 + + Curtis Mikell Jr. + Curtis + Mikell Jr. + Curtis + Mikell Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31409 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29090 + 29090 + + De'Vante Bausby + De'Vante + Bausby + De'Vante + Bausby + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29090 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/k9S_etXNymz6mFVr5PW5yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29090.png + small + + https://s.yimg.com/iu/api/res/1.2/k9S_etXNymz6mFVr5PW5yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29090.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30620 + 30620 + + David Rivers III + David + Rivers III + David + Rivers III + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30620 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27586 + 27586 + + Stanley Jean-Baptiste + Stanley + Jean-Baptiste + Stanley + Jean-Baptiste + + IR + Injured Reserve + undisclosed + nfl.p.27586 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/QOu2deu9hsiGxh.2agegPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27586.png + small + + https://s.yimg.com/iu/api/res/1.2/QOu2deu9hsiGxh.2agegPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27586.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31233 + 31233 + + Holton Hill + Holton + Hill + Holton + Hill + + nfl.p.31233 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31591 + 31591 + + Jordan Thomas + Jordan + Thomas + Jordan + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31591 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 48 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27725 + 27725 + + Demetri Goodson + Demetri + Goodson + Demetri + Goodson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27725 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/4.pRnM3Qz43z6kRN50ChDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27725.png + small + + https://s.yimg.com/iu/api/res/1.2/4.pRnM3Qz43z6kRN50ChDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27725.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25776 + 25776 + + Josh Robinson + Josh + Robinson + Josh + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25776 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/HdTZVQy3FNv5U61Zs3qayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25776.png + small + + https://s.yimg.com/iu/api/res/1.2/HdTZVQy3FNv5U61Zs3qayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25776.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29338 + 29338 + + Tavon Young + Tavon + Young + Tavon + Young + + nfl.p.29338 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/gaRtg4bCleq90TWYgCc9cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29338.png + small + + https://s.yimg.com/iu/api/res/1.2/gaRtg4bCleq90TWYgCc9cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29338.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27698 + 27698 + + Keith Reaser + Keith + Reaser + Keith + Reaser + + IR + Injured Reserve + undisclosed + nfl.p.27698 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/q7mRZXRLdSafkPqecn79Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27698.png + small + + https://s.yimg.com/iu/api/res/1.2/q7mRZXRLdSafkPqecn79Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27698.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25994 + 25994 + + Deshawn Shead + Deshawn + Shead + Deshawn + Shead + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25994 + nfl.t.8 + Detroit Lions + Det + + 6 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/2_xOlKCDGHkCmlKlKNpkRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25994.png + small + + https://s.yimg.com/iu/api/res/1.2/2_xOlKCDGHkCmlKlKNpkRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25994.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29771 + 29771 + + Adairius Barnes + Adairius + Barnes + Adairius + Barnes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29771 + nfl.t.8 + Detroit Lions + Det + + 6 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/3t.TXJfXu_VdEvR2UHiBeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29771.png + small + + https://s.yimg.com/iu/api/res/1.2/3t.TXJfXu_VdEvR2UHiBeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29771.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27553 + 27553 + + Jason Verrett + Jason + Verrett + Jason + Verrett + + IR + Injured Reserve + torn Achilles tendon + nfl.p.27553 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/XBjZTIKBEJ9tgsY43f7rww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/27553.png + small + + https://s.yimg.com/iu/api/res/1.2/XBjZTIKBEJ9tgsY43f7rww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/27553.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26691 + 26691 + + Leon McFadden + Leon + McFadden + Leon + McFadden + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26691 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/L6fYkdgd1fNqUIMawJlifQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26691.png + small + + https://s.yimg.com/iu/api/res/1.2/L6fYkdgd1fNqUIMawJlifQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26691.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28371 + 28371 + + Delvin Breaux Sr. + Delvin + Breaux Sr. + Delvin + Breaux Sr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28371 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/WhNNDUXlmXZbNpEAnb4ijg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28371.png + small + + https://s.yimg.com/iu/api/res/1.2/WhNNDUXlmXZbNpEAnb4ijg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28371.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28544 + 28544 + + Tony Lippett + Tony + Lippett + Tony + Lippett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28544 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/vLXaDoIGVbsSYyZqwRKwGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28544.1.png + small + + https://s.yimg.com/iu/api/res/1.2/vLXaDoIGVbsSYyZqwRKwGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28544.1.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29375 + 29375 + + Zack Sanchez + Zack + Sanchez + Zack + Sanchez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29375 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/vIZHVpU3HBL4Jbah8APMUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29375.png + small + + https://s.yimg.com/iu/api/res/1.2/vIZHVpU3HBL4Jbah8APMUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29375.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25401 + 25401 + + Sterling Moore + Sterling + Moore + Sterling + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25401 + nfl.t.8 + Detroit Lions + Det + + 6 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/_E9mkXP2xWj6NWrR0DE_DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/25401.png + small + + https://s.yimg.com/iu/api/res/1.2/_E9mkXP2xWj6NWrR0DE_DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/25401.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25872 + 25872 + + Corey White + Corey + White + Corey + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25872 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/LvJS1pkvY0BlGRBVpItLJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25872.1.png + small + + https://s.yimg.com/iu/api/res/1.2/LvJS1pkvY0BlGRBVpItLJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25872.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29412 + 29412 + + D.J. White + D.J. + White + D.J. + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29412 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/iPlSkaVdwlOUhMqbz8dKjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29412.png + small + + https://s.yimg.com/iu/api/res/1.2/iPlSkaVdwlOUhMqbz8dKjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29412.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29361 + 29361 + + Deiondre' Hall + Deiondre' + Hall + Deiondre' + Hall + + SUSP + Suspended + nfl.p.29361 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/ZMr0805DkBkd6dP9VyfHpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29361.png + small + + https://s.yimg.com/iu/api/res/1.2/ZMr0805DkBkd6dP9VyfHpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29361.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28925 + 28925 + + LaDarius Gunter + LaDarius + Gunter + LaDarius + Gunter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28925 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/j2m1e9R4zotgtGzIsfo.FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28925.png + small + + https://s.yimg.com/iu/api/res/1.2/j2m1e9R4zotgtGzIsfo.FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28925.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29326 + 29326 + + Brandon Williams + Brandon + Williams + Brandon + Williams + + Q + Questionable + nfl.p.29326 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/FBkxbbVT7lru1lFzYlakNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29326.png + small + + https://s.yimg.com/iu/api/res/1.2/FBkxbbVT7lru1lFzYlakNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29326.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26737 + 26737 + + B.W. Webb + B.W. + Webb + B.W. + Webb + + nfl.p.26737 + nfl.t.19 + New York Giants + NYG + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/CSmVxjqDn8UpBXQ5djIw5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26737.png + small + + https://s.yimg.com/iu/api/res/1.2/CSmVxjqDn8UpBXQ5djIw5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26737.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29814 + 29814 + + DeAndre Elliott + DeAndre + Elliott + DeAndre + Elliott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29814 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/pBt88xilPCQJpccscTUFEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29814.png + small + + https://s.yimg.com/iu/api/res/1.2/pBt88xilPCQJpccscTUFEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29814.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28471 + 28471 + + Craig Mager + Craig + Mager + Craig + Mager + + nfl.p.28471 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/i_0kvCUAUtOOFKa9QJnj3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28471.png + small + + https://s.yimg.com/iu/api/res/1.2/i_0kvCUAUtOOFKa9QJnj3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28471.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28237 + 28237 + + Robert Nelson Jr. + Robert + Nelson Jr. + Robert + Nelson Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28237 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/tTPlRxa95GLZg6sifswL1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28237.1.png + small + + https://s.yimg.com/iu/api/res/1.2/tTPlRxa95GLZg6sifswL1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28237.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29667 + 29667 + + Tracy Howard + Tracy + Howard + Tracy + Howard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29667 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/BLWGeIDdwKrY8jQvREwuLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29667.1.png + small + + https://s.yimg.com/iu/api/res/1.2/BLWGeIDdwKrY8jQvREwuLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29667.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30811 + 30811 + + Justin Hardee + Justin + Hardee + Justin + Hardee + + nfl.p.30811 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 34 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/NDVSGt1aTBAHyLRUn0bSQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30811.png + small + + https://s.yimg.com/iu/api/res/1.2/NDVSGt1aTBAHyLRUn0bSQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30811.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26043 + 26043 + + Leonard Johnson + Leonard + Johnson + Leonard + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26043 + nfl.t.19 + New York Giants + NYG + + 9 + + 28 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/V3sMC_Nl2QU3oqBiB4K3YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20140830/26043.png + small + + https://s.yimg.com/iu/api/res/1.2/V3sMC_Nl2QU3oqBiB4K3YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20140830/26043.png + 0 + DP + + DB + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30787 + 30787 + + Lewis Neal + Lewis + Neal + Lewis + Neal + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30787 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 66 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/sx3VvV2HZ_i0rd2ywxkfFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30787.png + small + + https://s.yimg.com/iu/api/res/1.2/sx3VvV2HZ_i0rd2ywxkfFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30787.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29381 + 29381 + + Quinton Jefferson + Quinton + Jefferson + Quinton + Jefferson + + nfl.p.29381 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 99 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/36mHzjSqKyTmVoaH4L_8Bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29381.png + small + + https://s.yimg.com/iu/api/res/1.2/36mHzjSqKyTmVoaH4L_8Bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29381.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29028 + 29028 + + Richard Ash + Richard + Ash + Richard + Ash + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.29028 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 93 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/CJ.0M76Bk0FGPmzVe0bjWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29028.png + small + + https://s.yimg.com/iu/api/res/1.2/CJ.0M76Bk0FGPmzVe0bjWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29028.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.23995 + 23995 + + Kareem Jackson + Kareem + Jackson + Kareem + Jackson + + nfl.p.23995 + nfl.t.34 + Houston Texans + Hou + + 10 + + 25 + S,CB + + https://s.yimg.com/iu/api/res/1.2/pcY8G4qQrlNaGavKf.OCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23995.png + small + + https://s.yimg.com/iu/api/res/1.2/pcY8G4qQrlNaGavKf.OCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23995.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28415 + 28415 + + Byron Jones + Byron + Jones + Byron + Jones + + nfl.p.28415 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 31 + S,CB + + https://s.yimg.com/iu/api/res/1.2/CzmmrNVOlXN7Og8ae57IFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28415.png + small + + https://s.yimg.com/iu/api/res/1.2/CzmmrNVOlXN7Og8ae57IFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28415.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.26676 + 26676 + + Margus Hunt + Margus + Hunt + Margus + Hunt + + nfl.p.26676 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/qZhqsNz7XNPB8wuxouvYHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26676.png + small + + https://s.yimg.com/iu/api/res/1.2/qZhqsNz7XNPB8wuxouvYHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26676.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28266 + 28266 + + Denico Autry + Denico + Autry + Denico + Autry + + Q + Questionable + nfl.p.28266 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 96 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/LDoZaLxDVB0JnyI5ZQ.R.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28266.png + small + + https://s.yimg.com/iu/api/res/1.2/LDoZaLxDVB0JnyI5ZQ.R.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28266.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28605 + 28605 + + Rakeem Nunez-Roches + Rakeem + Nunez-Roches + Rakeem + Nunez-Roches + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28605 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 55 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/8vKGNKc5BXQYwTCYToq2dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28605.1.png + small + + https://s.yimg.com/iu/api/res/1.2/8vKGNKc5BXQYwTCYToq2dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28605.1.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24818 + 24818 + + Cameron Heyward + Cameron + Heyward + Cameron + Heyward + + nfl.p.24818 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 97 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/S8V1kNkYS2J1lz8IJQzcCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24818.png + small + + https://s.yimg.com/iu/api/res/1.2/S8V1kNkYS2J1lz8IJQzcCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24818.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 1 + 14 + 0 + + + + 380.p.30768 + 30768 + + Tion Green + Tion + Green + Tion + Green + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30768 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/wfSJRwuH8EK.canqK9LuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30768.png + small + + https://s.yimg.com/iu/api/res/1.2/wfSJRwuH8EK.canqK9LuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30768.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28432 + 28432 + + Hau'oli Kikaha + Hau'oli + Kikaha + Hau'oli + Kikaha + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28432 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 44 + DE + + https://s.yimg.com/iu/api/res/1.2/8SVZYp94jXFJT_TIrblyaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28432.png + small + + https://s.yimg.com/iu/api/res/1.2/8SVZYp94jXFJT_TIrblyaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28432.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28439 + 28439 + + Nate Orchard + Nate + Orchard + Nate + Orchard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28439 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 44 + DE + + https://s.yimg.com/iu/api/res/1.2/UhfhWEQbnNAerXFiuQhu2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28439.1.png + small + + https://s.yimg.com/iu/api/res/1.2/UhfhWEQbnNAerXFiuQhu2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28439.1.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9282 + 9282 + + Robert Ayers Jr. + Robert + Ayers Jr. + Robert + Ayers Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9282 + nfl.t.8 + Detroit Lions + Det + + 6 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/lQOOPyMODFDGfGaoyOsekw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9282.png + small + + https://s.yimg.com/iu/api/res/1.2/lQOOPyMODFDGfGaoyOsekw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9282.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30114 + 30114 + + Myles Garrett + Myles + Garrett + Myles + Garrett + + nfl.p.30114 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/tuuvLFaNgrsAUu9Xosv94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30114.png + small + + https://s.yimg.com/iu/api/res/1.2/tuuvLFaNgrsAUu9Xosv94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30114.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 29 + 0 + + + + 380.p.28423 + 28423 + + Mario Edwards Jr. + Mario + Edwards Jr. + Mario + Edwards Jr. + + nfl.p.28423 + nfl.t.19 + New York Giants + NYG + + 9 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/gTjKYBYec.D2c3bxhJUnoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28423.png + small + + https://s.yimg.com/iu/api/res/1.2/gTjKYBYec.D2c3bxhJUnoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28423.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27763 + 27763 + + Shelby Harris + Shelby + Harris + Shelby + Harris + + nfl.p.27763 + nfl.t.7 + Denver Broncos + Den + + 10 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/lYARd6kotuHgCQUCXkpHfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27763.1.png + small + + https://s.yimg.com/iu/api/res/1.2/lYARd6kotuHgCQUCXkpHfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27763.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25147 + 25147 + + Mario Addison + Mario + Addison + Mario + Addison + + nfl.p.25147 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/V.IFyHsRqvluSKfBdKwrnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25147.png + small + + https://s.yimg.com/iu/api/res/1.2/V.IFyHsRqvluSKfBdKwrnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25147.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.27533 + 27533 + + Khalil Mack + Khalil + Mack + Khalil + Mack + + nfl.p.27533 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 52 + DE + + https://s.yimg.com/iu/api/res/1.2/voYflJKxMn_LcxtH4bV2iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27533.png + small + + https://s.yimg.com/iu/api/res/1.2/voYflJKxMn_LcxtH4bV2iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27533.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 66 + 0 + + + + 380.p.24075 + 24075 + + Everson Griffen + Everson + Griffen + Everson + Griffen + + nfl.p.24075 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/YaidwJoss_cHHm.F46Z3pA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24075.png + small + + https://s.yimg.com/iu/api/res/1.2/YaidwJoss_cHHm.F46Z3pA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24075.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.29273 + 29273 + + Noah Spence + Noah + Spence + Noah + Spence + + nfl.p.29273 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/etk4ftfhRqGjpMjLF_JZlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29273.png + small + + https://s.yimg.com/iu/api/res/1.2/etk4ftfhRqGjpMjLF_JZlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29273.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8880 + 8880 + + William Hayes + William + Hayes + William + Hayes + + Q + Questionable + nfl.p.8880 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/MZ6hS89_aqB.y9q38ZVRQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8880.png + small + + https://s.yimg.com/iu/api/res/1.2/MZ6hS89_aqB.y9q38ZVRQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8880.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30139 + 30139 + + Takkarist McKinley + Takkarist + McKinley + Takkarist + McKinley + + nfl.p.30139 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/pEThNI3BELTaHog_udEoCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30139.png + small + + https://s.yimg.com/iu/api/res/1.2/pEThNI3BELTaHog_udEoCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30139.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25020 + 25020 + + Lawrence Guy + Lawrence + Guy + Lawrence + Guy + + nfl.p.25020 + nfl.t.17 + New England Patriots + NE + + 11 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/2bXOej9zW3MF4XVq8Rx6iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/25020.png + small + + https://s.yimg.com/iu/api/res/1.2/2bXOej9zW3MF4XVq8Rx6iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/25020.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24811 + 24811 + + Cameron Jordan + Cameron + Jordan + Cameron + Jordan + + nfl.p.24811 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/CS9Gu_dX2LaqZlZWzvBE8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24811.png + small + + https://s.yimg.com/iu/api/res/1.2/CS9Gu_dX2LaqZlZWzvBE8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24811.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 36 + 0 + + + + 380.p.29436 + 29436 + + Anthony Zettel + Anthony + Zettel + Anthony + Zettel + + nfl.p.29436 + nfl.t.8 + Detroit Lions + Det + + 6 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/OwdNiGXs64uSv5VfCqoL9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29436.png + small + + https://s.yimg.com/iu/api/res/1.2/OwdNiGXs64uSv5VfCqoL9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29436.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8356 + 8356 + + Brian Robison + Brian + Robison + Brian + Robison + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8356 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/LVO.KNdUdmyO37vBUPoQxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8356.png + small + + https://s.yimg.com/iu/api/res/1.2/LVO.KNdUdmyO37vBUPoQxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8356.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30135 + 30135 + + Charles Harris + Charles + Harris + Charles + Harris + + nfl.p.30135 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/4kWcgywBTgi2OG7tCzp8uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30135.png + small + + https://s.yimg.com/iu/api/res/1.2/4kWcgywBTgi2OG7tCzp8uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30135.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27636 + 27636 + + Cassius Marsh + Cassius + Marsh + Cassius + Marsh + + nfl.p.27636 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 54 + DE + + https://s.yimg.com/iu/api/res/1.2/OHodqXHpm5NZ.bmE3Gj6Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27636.png + small + + https://s.yimg.com/iu/api/res/1.2/OHodqXHpm5NZ.bmE3Gj6Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27636.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28587 + 28587 + + L.T. Walton + L.T. + Walton + L.T. + Walton + + nfl.p.28587 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/P2NdOQ3dvIG9O_WR32xlxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28587.png + small + + https://s.yimg.com/iu/api/res/1.2/P2NdOQ3dvIG9O_WR32xlxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28587.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9110 + 9110 + + Leger Douzable + Leger + Douzable + Leger + Douzable + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9110 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/rLlAfLq6FKVqUvyNSxICbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9110.1.png + small + + https://s.yimg.com/iu/api/res/1.2/rLlAfLq6FKVqUvyNSxICbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9110.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29306 + 29306 + + Jonathan Bullard + Jonathan + Bullard + Jonathan + Bullard + + nfl.p.29306 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/iYqFxx_UXYgbEjq7y9_Bdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29306.png + small + + https://s.yimg.com/iu/api/res/1.2/iYqFxx_UXYgbEjq7y9_Bdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29306.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26085 + 26085 + + Ryan Davis + Ryan + Davis + Ryan + Davis + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.26085 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/j62TTENTNFTbZ8iMQ6v41A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26085.1.png + small + + https://s.yimg.com/iu/api/res/1.2/j62TTENTNFTbZ8iMQ6v41A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26085.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28391 + 28391 + + Dante Fowler Jr. + Dante + Fowler Jr. + Dante + Fowler Jr. + + SUSP + Suspended + nfl.p.28391 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/90mDoExKOyl7ZivGwX1jjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28391.png + small + + https://s.yimg.com/iu/api/res/1.2/90mDoExKOyl7ZivGwX1jjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28391.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.8779 + 8779 + + Chris Long + Chris + Long + Chris + Long + + nfl.p.8779 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/1Q1kX8SmwxLlwr2V2Feudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8779.png + small + + https://s.yimg.com/iu/api/res/1.2/1Q1kX8SmwxLlwr2V2Feudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8779.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29714 + 29714 + + Morgan Fox + Morgan + Fox + Morgan + Fox + + IR + Injured Reserve + undisclosed + nfl.p.29714 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/FbFssB5DEY.ahZayM_omZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29714.png + small + + https://s.yimg.com/iu/api/res/1.2/FbFssB5DEY.ahZayM_omZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29714.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25748 + 25748 + + Andre Branch + Andre + Branch + Andre + Branch + + nfl.p.25748 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 50 + DE + + https://s.yimg.com/iu/api/res/1.2/xzLPzYFRMn4KQ6xKNFyDRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25748.png + small + + https://s.yimg.com/iu/api/res/1.2/xzLPzYFRMn4KQ6xKNFyDRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25748.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28051 + 28051 + + Kerry Wynn + Kerry + Wynn + Kerry + Wynn + + nfl.p.28051 + nfl.t.19 + New York Giants + NYG + + 9 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/WUNrNaNM6SaLgsb1HHtXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28051.png + small + + https://s.yimg.com/iu/api/res/1.2/WUNrNaNM6SaLgsb1HHtXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28051.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26626 + 26626 + + Dion Jordan + Dion + Jordan + Dion + Jordan + + Q + Questionable + nfl.p.26626 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/I_6FndWM9VumPkwI1qWuog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26626.png + small + + https://s.yimg.com/iu/api/res/1.2/I_6FndWM9VumPkwI1qWuog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26626.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30216 + 30216 + + Trey Hendrickson + Trey + Hendrickson + Trey + Hendrickson + + nfl.p.30216 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24829 + 24829 + + Brooks Reed + Brooks + Reed + Brooks + Reed + + nfl.p.24829 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 50 + DE + + https://s.yimg.com/iu/api/res/1.2/oVap86jYtcVqXN87g7td.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24829.png + small + + https://s.yimg.com/iu/api/res/1.2/oVap86jYtcVqXN87g7td.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24829.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28488 + 28488 + + Angelo Blackson + Angelo + Blackson + Angelo + Blackson + + nfl.p.28488 + nfl.t.34 + Houston Texans + Hou + + 10 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/GWpJ9rH_L7I136jgzevjrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28488.png + small + + https://s.yimg.com/iu/api/res/1.2/GWpJ9rH_L7I136jgzevjrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28488.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29794 + 29794 + + Joel Heath + Joel + Heath + Joel + Heath + + nfl.p.29794 + nfl.t.34 + Houston Texans + Hou + + 10 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/uo8BaLMMcN_1BaRSFOfdIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29794.1.png + small + + https://s.yimg.com/iu/api/res/1.2/uo8BaLMMcN_1BaRSFOfdIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29794.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27640 + 27640 + + DaQuan Jones + DaQuan + Jones + DaQuan + Jones + + nfl.p.27640 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/T5edoqEujSkGAtcixOkErA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27640.png + small + + https://s.yimg.com/iu/api/res/1.2/T5edoqEujSkGAtcixOkErA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27640.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26811 + 26811 + + Cornelius Washington + Cornelius + Washington + Cornelius + Washington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26811 + nfl.t.8 + Detroit Lions + Det + + 6 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/2c32Cqe3Mkl0OElNko0QtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/26811.png + small + + https://s.yimg.com/iu/api/res/1.2/2c32Cqe3Mkl0OElNko0QtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/26811.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27529 + 27529 + + Jadeveon Clowney + Jadeveon + Clowney + Jadeveon + Clowney + + nfl.p.27529 + nfl.t.34 + Houston Texans + Hou + + 10 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/fd9jivEkaCxLTW3_J6l1.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27529.png + small + + https://s.yimg.com/iu/api/res/1.2/fd9jivEkaCxLTW3_J6l1.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27529.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 40 + 0 + + + + 380.p.8337 + 8337 + + Charles Johnson + Charles + Johnson + Charles + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8337 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/v6qJb0n76oyl5JQNTTDDCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8337.png + small + + https://s.yimg.com/iu/api/res/1.2/v6qJb0n76oyl5JQNTTDDCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8337.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30186 + 30186 + + Jordan Willis + Jordan + Willis + Jordan + Willis + + nfl.p.30186 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24665 + 24665 + + George Johnson + George + Johnson + George + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24665 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/oqCmY87A3vXVpQTqcckp9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24665.png + small + + https://s.yimg.com/iu/api/res/1.2/oqCmY87A3vXVpQTqcckp9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24665.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.23990 + 23990 + + Jason Pierre-Paul + Jason + Pierre-Paul + Jason + Pierre-Paul + + nfl.p.23990 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/pviWPpxxWRGakGdis3q9vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23990.png + small + + https://s.yimg.com/iu/api/res/1.2/pviWPpxxWRGakGdis3q9vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23990.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 14 + 0 + + + + 380.p.27093 + 27093 + + Wes Horton + Wes + Horton + Wes + Horton + + nfl.p.27093 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/xebUs0KJw9f2Vpxbal2e6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27093.png + small + + https://s.yimg.com/iu/api/res/1.2/xebUs0KJw9f2Vpxbal2e6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27093.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29297 + 29297 + + Adam Gotsis + Adam + Gotsis + Adam + Gotsis + + nfl.p.29297 + nfl.t.7 + Denver Broncos + Den + + 10 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/NpIOwfL3SEsxZfByTPUR8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29297.png + small + + https://s.yimg.com/iu/api/res/1.2/NpIOwfL3SEsxZfByTPUR8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29297.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24873 + 24873 + + Allen Bailey + Allen + Bailey + Allen + Bailey + + nfl.p.24873 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/W07V_xIer.vqzXCbqEn0yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24873.1.png + small + + https://s.yimg.com/iu/api/res/1.2/W07V_xIer.vqzXCbqEn0yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24873.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27835 + 27835 + + Brandon Dunn + Brandon + Dunn + Brandon + Dunn + + nfl.p.27835 + nfl.t.34 + Houston Texans + Hou + + 10 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/PBhp9mdRlYbm2XNI1bgBdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27835.1.png + small + + https://s.yimg.com/iu/api/res/1.2/PBhp9mdRlYbm2XNI1bgBdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27835.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25868 + 25868 + + Jack Crawford + Jack + Crawford + Jack + Crawford + + nfl.p.25868 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/iO0ttzOwoam9ofa7qyjwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25868.png + small + + https://s.yimg.com/iu/api/res/1.2/iO0ttzOwoam9ofa7qyjwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25868.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27574 + 27574 + + Stephon Tuitt + Stephon + Tuitt + Stephon + Tuitt + + nfl.p.27574 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/OCJOKRqSYXhHN6sIJIhF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27574.png + small + + https://s.yimg.com/iu/api/res/1.2/OCJOKRqSYXhHN6sIJIhF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27574.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28604 + 28604 + + Christian Covington + Christian + Covington + Christian + Covington + + nfl.p.28604 + nfl.t.34 + Houston Texans + Hou + + 10 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/fMaklGPmC2P7emdidrysSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28604.1.png + small + + https://s.yimg.com/iu/api/res/1.2/fMaklGPmC2P7emdidrysSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28604.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27588 + 27588 + + Kony Ealy + Kony + Ealy + Kony + Ealy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27588 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 76 + DE + + https://s.yimg.com/iu/api/res/1.2/PoLSs2ULsRftLRP6VAxqJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27588.png + small + + https://s.yimg.com/iu/api/res/1.2/PoLSs2ULsRftLRP6VAxqJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27588.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27562 + 27562 + + DeMarcus Lawrence + DeMarcus + Lawrence + DeMarcus + Lawrence + + nfl.p.27562 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/p8R9OEBx16L5mj.GTeYR_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27562.png + small + + https://s.yimg.com/iu/api/res/1.2/p8R9OEBx16L5mj.GTeYR_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27562.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 26 + 0 + + + + 380.p.25746 + 25746 + + Derek Wolfe + Derek + Wolfe + Derek + Wolfe + + nfl.p.25746 + nfl.t.7 + Denver Broncos + Den + + 10 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/rIS8mqD0iSYeqpqt4EYXUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25746.png + small + + https://s.yimg.com/iu/api/res/1.2/rIS8mqD0iSYeqpqt4EYXUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25746.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.9296 + 9296 + + Ziggy Hood + Ziggy + Hood + Ziggy + Hood + + nfl.p.9296 + nfl.t.28 + Washington Redskins + Was + + 4 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/JdEakwEFsfb.N3uadSAtQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9296.png + small + + https://s.yimg.com/iu/api/res/1.2/JdEakwEFsfb.N3uadSAtQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9296.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27762 + 27762 + + Terrence Fede + Terrence + Fede + Terrence + Fede + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27762 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/OWeQDb2l0hYRGvtqdAcMug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27762.1.png + small + + https://s.yimg.com/iu/api/res/1.2/OWeQDb2l0hYRGvtqdAcMug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27762.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.23988 + 23988 + + Brandon Graham + Brandon + Graham + Brandon + Graham + + nfl.p.23988 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/.Ekg80p8VSJWXdZ75mnq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23988.png + small + + https://s.yimg.com/iu/api/res/1.2/.Ekg80p8VSJWXdZ75mnq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23988.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.25769 + 25769 + + Vinny Curry + Vinny + Curry + Vinny + Curry + + nfl.p.25769 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/bj3KIArIWY.OBqJt4HOxwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25769.png + small + + https://s.yimg.com/iu/api/res/1.2/bj3KIArIWY.OBqJt4HOxwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25769.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26649 + 26649 + + Datone Jones + Datone + Jones + Datone + Jones + + IR + Injured Reserve + nfl.p.26649 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/VFACs9i5NSeL7GoIPSRYKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26649.png + small + + https://s.yimg.com/iu/api/res/1.2/VFACs9i5NSeL7GoIPSRYKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26649.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30778 + 30778 + + Jeremiah Valoaga + Jeremiah + Valoaga + Jeremiah + Valoaga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30778 + nfl.t.8 + Detroit Lions + Det + + 6 + + 78 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26726 + 26726 + + Alex Okafor + Alex + Okafor + Alex + Okafor + + nfl.p.26726 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/YMzQtb3oQ7KmmEZLTUmguw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26726.png + small + + https://s.yimg.com/iu/api/res/1.2/YMzQtb3oQ7KmmEZLTUmguw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26726.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26749 + 26749 + + William Gholston + William + Gholston + William + Gholston + + nfl.p.26749 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/T2HBPlHRc3QLtWHFve5EnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26749.png + small + + https://s.yimg.com/iu/api/res/1.2/T2HBPlHRc3QLtWHFve5EnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26749.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29271 + 29271 + + Chris Jones + Chris + Jones + Chris + Jones + + nfl.p.29271 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/MKns2.isRPML.AY07FppVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29271.png + small + + https://s.yimg.com/iu/api/res/1.2/MKns2.isRPML.AY07FppVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29271.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27413 + 27413 + + Benson Mayowa + Benson + Mayowa + Benson + Mayowa + + nfl.p.27413 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/mwAO2LfoQaJZqTxGaMOhIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27413.png + small + + https://s.yimg.com/iu/api/res/1.2/mwAO2LfoQaJZqTxGaMOhIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27413.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29303 + 29303 + + Yannick Ngakoue + Yannick + Ngakoue + Yannick + Ngakoue + + nfl.p.29303 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/ANwggGhtLR4A40DTXYdtrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29303.png + small + + https://s.yimg.com/iu/api/res/1.2/ANwggGhtLR4A40DTXYdtrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29303.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.29029 + 29029 + + Cap Capi + Cap + Capi + Cap + Capi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29029 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/wCn582o_W_7YGXYsKRfpvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29029.png + small + + https://s.yimg.com/iu/api/res/1.2/wCn582o_W_7YGXYsKRfpvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29029.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28242 + 28242 + + Chris McCain + Chris + McCain + Chris + McCain + + IR + Injured Reserve + undisclosed + nfl.p.28242 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 76 + DE + + https://s.yimg.com/iu/api/res/1.2/wAqo3WBrcLT9vqx.nY05RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28242.1.png + small + + https://s.yimg.com/iu/api/res/1.2/wAqo3WBrcLT9vqx.nY05RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28242.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28580 + 28580 + + Darius Philon + Darius + Philon + Darius + Philon + + nfl.p.28580 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/J_QbF0EifiYfYDWGgL8Eyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28580.png + small + + https://s.yimg.com/iu/api/res/1.2/J_QbF0EifiYfYDWGgL8Eyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28580.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30181 + 30181 + + Dawuane Smoot + Dawuane + Smoot + Dawuane + Smoot + + nfl.p.30181 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29386 + 29386 + + Matt Ioannidis + Matt + Ioannidis + Matt + Ioannidis + + nfl.p.29386 + nfl.t.28 + Washington Redskins + Was + + 4 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/f3Y0oFG4ggTN6GVu_JGVaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29386.png + small + + https://s.yimg.com/iu/api/res/1.2/f3Y0oFG4ggTN6GVu_JGVaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29386.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27687 + 27687 + + Chris Smith + Chris + Smith + Chris + Smith + + nfl.p.27687 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 50 + DE + + https://s.yimg.com/iu/api/res/1.2/VJBW7DqFJSUYmTcNYs2GPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27687.1.png + small + + https://s.yimg.com/iu/api/res/1.2/VJBW7DqFJSUYmTcNYs2GPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27687.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29799 + 29799 + + Eric Lee + Eric + Lee + Eric + Lee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29799 + nfl.t.8 + Detroit Lions + Det + + 6 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/U_or9Sa3glnsW_5MI8g.hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29799.1.png + small + + https://s.yimg.com/iu/api/res/1.2/U_or9Sa3glnsW_5MI8g.hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29799.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29266 + 29266 + + Emmanuel Ogbah + Emmanuel + Ogbah + Emmanuel + Ogbah + + nfl.p.29266 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/iLzYJE9M0M1RHdefHEwL0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29266.png + small + + https://s.yimg.com/iu/api/res/1.2/iLzYJE9M0M1RHdefHEwL0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29266.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28476 + 28476 + + Danielle Hunter + Danielle + Hunter + Danielle + Hunter + + nfl.p.28476 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/9Pf73UUg27NIxHSlBtwswQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28476.png + small + + https://s.yimg.com/iu/api/res/1.2/9Pf73UUg27NIxHSlBtwswQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28476.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 16 + 0 + + + + 380.p.30116 + 30116 + + Solomon Thomas + Solomon + Thomas + Solomon + Thomas + + nfl.p.30116 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/oZxQTVSW18LnZ5u4EaZ.1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30116.png + small + + https://s.yimg.com/iu/api/res/1.2/oZxQTVSW18LnZ5u4EaZ.1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30116.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.28484 + 28484 + + Xavier Cooper + Xavier + Cooper + Xavier + Cooper + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28484 + nfl.t.20 + New York Jets + NYJ + + 11 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/fO7R72mbWIZT5dVc9tiJYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28484.1.png + small + + https://s.yimg.com/iu/api/res/1.2/fO7R72mbWIZT5dVc9tiJYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28484.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26628 + 26628 + + Ezekiel Ansah + Ezekiel + Ansah + Ezekiel + Ansah + + nfl.p.26628 + nfl.t.8 + Detroit Lions + Det + + 6 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/dUL4T6TjrDvJ3tOIhwfk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26628.png + small + + https://s.yimg.com/iu/api/res/1.2/dUL4T6TjrDvJ3tOIhwfk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26628.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 21 + 0 + + + + 380.p.29636 + 29636 + + Eddie Yarbrough + Eddie + Yarbrough + Eddie + Yarbrough + + nfl.p.29636 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 54 + DE + + https://s.yimg.com/iu/api/res/1.2/Csrd540X1FSDBOeUA.Yctg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29636.1.png + small + + https://s.yimg.com/iu/api/res/1.2/Csrd540X1FSDBOeUA.Yctg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29636.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24807 + 24807 + + Adrian Clayborn + Adrian + Clayborn + Adrian + Clayborn + + nfl.p.24807 + nfl.t.17 + New England Patriots + NE + + 11 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/l7wVocifi.MfWtCg96irSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24807.png + small + + https://s.yimg.com/iu/api/res/1.2/l7wVocifi.MfWtCg96irSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24807.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24029 + 24029 + + Carlos Dunlap + Carlos + Dunlap + Carlos + Dunlap + + nfl.p.24029 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/07hmmIsFu8pojxXxpvnE3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24029.png + small + + https://s.yimg.com/iu/api/res/1.2/07hmmIsFu8pojxXxpvnE3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24029.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.30255 + 30255 + + Carlos Watkins + Carlos + Watkins + Carlos + Watkins + + nfl.p.30255 + nfl.t.34 + Houston Texans + Hou + + 10 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24006 + 24006 + + Jerry Hughes + Jerry + Hughes + Jerry + Hughes + + nfl.p.24006 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/oh8haGMrXc.OgepE_o6L3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24006.png + small + + https://s.yimg.com/iu/api/res/1.2/oh8haGMrXc.OgepE_o6L3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24006.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30127 + 30127 + + Derek Barnett + Derek + Barnett + Derek + Barnett + + nfl.p.30127 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/vHLNApa0Du4EemY5NuyJ6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30127.png + small + + https://s.yimg.com/iu/api/res/1.2/vHLNApa0Du4EemY5NuyJ6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30127.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.9334 + 9334 + + Michael Johnson + Michael + Johnson + Michael + Johnson + + nfl.p.9334 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/ANjzuwWSNqf6GtugoKZ_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9334.png + small + + https://s.yimg.com/iu/api/res/1.2/ANjzuwWSNqf6GtugoKZ_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9334.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9568 + 9568 + + Michael Bennett + Michael + Bennett + Michael + Bennett + + Q + Questionable + nfl.p.9568 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 77 + DE + + https://s.yimg.com/iu/api/res/1.2/X9BM.XTnTn4fsf_a5WE04A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9568.png + small + + https://s.yimg.com/iu/api/res/1.2/X9BM.XTnTn4fsf_a5WE04A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9568.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.24798 + 24798 + + J.J. Watt + J.J. + Watt + J.J. + Watt + + nfl.p.24798 + nfl.t.34 + Houston Texans + Hou + + 10 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/NWEYF9M5yJbmoYYadTF_9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24798.png + small + + https://s.yimg.com/iu/api/res/1.2/NWEYF9M5yJbmoYYadTF_9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24798.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 66 + 0 + + + + 380.p.29696 + 29696 + + Anthony Lanier + Anthony + Lanier + Anthony + Lanier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29696 + nfl.t.28 + Washington Redskins + Was + + 4 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/mAX59z7Ci8_r3R1cXBSzdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29696.png + small + + https://s.yimg.com/iu/api/res/1.2/mAX59z7Ci8_r3R1cXBSzdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29696.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28551 + 28551 + + Ryan Russell + Ryan + Russell + Ryan + Russell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28551 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/Eh.KPt.R5aF53Nw2IFNTZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28551.png + small + + https://s.yimg.com/iu/api/res/1.2/Eh.KPt.R5aF53Nw2IFNTZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28551.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24817 + 24817 + + Muhammad Wilkerson + Muhammad + Wilkerson + Muhammad + Wilkerson + + nfl.p.24817 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/V2sVHaNFm6K0VIHyjYB1NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24817.png + small + + https://s.yimg.com/iu/api/res/1.2/V2sVHaNFm6K0VIHyjYB1NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24817.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.28451 + 28451 + + Frank Clark + Frank + Clark + Frank + Clark + + Q + Questionable + nfl.p.28451 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/whZBNYJYULnpaAsLbrLoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28451.png + small + + https://s.yimg.com/iu/api/res/1.2/whZBNYJYULnpaAsLbrLoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28451.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.30164 + 30164 + + DeMarcus Walker + DeMarcus + Walker + DeMarcus + Walker + + nfl.p.30164 + nfl.t.7 + Denver Broncos + Den + + 10 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/5B1HJifEaEYhsTXXGwYt_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30164.png + small + + https://s.yimg.com/iu/api/res/1.2/5B1HJifEaEYhsTXXGwYt_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30164.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27815 + 27815 + + Josh Mauro + Josh + Mauro + Josh + Mauro + + SUSP + Suspended + nfl.p.27815 + nfl.t.19 + New York Giants + NYG + + 9 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/EbP9VFqsTmRbVFwBuZZdbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27815.png + small + + https://s.yimg.com/iu/api/res/1.2/EbP9VFqsTmRbVFwBuZZdbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27815.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27616 + 27616 + + Will Clarke + Will + Clarke + Will + Clarke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27616 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/kuZ9wDdaupxTlm3qC9zHTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27616.1.png + small + + https://s.yimg.com/iu/api/res/1.2/kuZ9wDdaupxTlm3qC9zHTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27616.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.5888 + 5888 + + Julius Peppers + Julius + Peppers + Julius + Peppers + + nfl.p.5888 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/9.ih1bLrFVeSVOKvY4Q6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5888.png + small + + https://s.yimg.com/iu/api/res/1.2/9.ih1bLrFVeSVOKvY4Q6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5888.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30244 + 30244 + + Deatrich Wise Jr. + Deatrich + Wise Jr. + Deatrich + Wise Jr. + + nfl.p.30244 + nfl.t.17 + New England Patriots + NE + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/nkUbi_HqCilc5Mb2JKNimA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30244.png + small + + https://s.yimg.com/iu/api/res/1.2/nkUbi_HqCilc5Mb2JKNimA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30244.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29461 + 29461 + + Stephen Weatherly + Stephen + Weatherly + Stephen + Weatherly + + nfl.p.29461 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/8aqc4TFtYKFHE.weOsXKKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29461.png + small + + https://s.yimg.com/iu/api/res/1.2/8aqc4TFtYKFHE.weOsXKKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29461.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8827 + 8827 + + Calais Campbell + Calais + Campbell + Calais + Campbell + + nfl.p.8827 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/0q2hnQITDonAh5HBrnN6vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8827.png + small + + https://s.yimg.com/iu/api/res/1.2/0q2hnQITDonAh5HBrnN6vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8827.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 31 + 0 + + + + 380.p.30379 + 30379 + + Bryan Cox Jr. + Bryan + Cox Jr. + Bryan + Cox Jr. + + nfl.p.30379 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30141 + 30141 + + Taco Charlton + Taco + Charlton + Taco + Charlton + + nfl.p.30141 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/mwVL.V16yGL4KV65WcE30A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30141.png + small + + https://s.yimg.com/iu/api/res/1.2/mwVL.V16yGL4KV65WcE30A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30141.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.23985 + 23985 + + Tyson Alualu + Tyson + Alualu + Tyson + Alualu + + nfl.p.23985 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/6s4VzKJTkYfeC08_ENkzQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/23985.png + small + + https://s.yimg.com/iu/api/res/1.2/6s4VzKJTkYfeC08_ENkzQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/23985.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27972 + 27972 + + Ethan Westbrooks + Ethan + Westbrooks + Ethan + Westbrooks + + nfl.p.27972 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/zMI5wSNDFEP1bz0x8hhWAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27972.png + small + + https://s.yimg.com/iu/api/res/1.2/zMI5wSNDFEP1bz0x8hhWAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27972.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29371 + 29371 + + Dean Lowry + Dean + Lowry + Dean + Lowry + + nfl.p.29371 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/K1.ayreejidsZ9Eg3dRjxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29371.png + small + + https://s.yimg.com/iu/api/res/1.2/K1.ayreejidsZ9Eg3dRjxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29371.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28489 + 28489 + + Trey Flowers + Trey + Flowers + Trey + Flowers + + Q + Questionable + nfl.p.28489 + nfl.t.17 + New England Patriots + NE + + 11 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/ISi09EA0CCx2R52oWuTzcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28489.png + small + + https://s.yimg.com/iu/api/res/1.2/ISi09EA0CCx2R52oWuTzcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28489.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + 380.p.29299 + 29299 + + Carl Nassib + Carl + Nassib + Carl + Nassib + + nfl.p.29299 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/jdGrTG6vNZRIzpHmDa2klA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29299.png + small + + https://s.yimg.com/iu/api/res/1.2/jdGrTG6vNZRIzpHmDa2klA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29299.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29253 + 29253 + + Shaq Lawson + Shaq + Lawson + Shaq + Lawson + + nfl.p.29253 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/_XQc_RvGBDNdRkIyMCJJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29253.png + small + + https://s.yimg.com/iu/api/res/1.2/_XQc_RvGBDNdRkIyMCJJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29253.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24451 + 24451 + + Mitch Unrein + Mitch + Unrein + Mitch + Unrein + + IR + Injured Reserve + concussion + nfl.p.24451 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/gpgifHLx_.WotEUdj68tSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24451.png + small + + https://s.yimg.com/iu/api/res/1.2/gpgifHLx_.WotEUdj68tSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24451.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29237 + 29237 + + Joey Bosa + Joey + Bosa + Joey + Bosa + + Q + Questionable + nfl.p.29237 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/fzRR4qvoa4zenT6XkQ2pCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29237.png + small + + https://s.yimg.com/iu/api/res/1.2/fzRR4qvoa4zenT6XkQ2pCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29237.png + 0 + DP + + DE + + 1 + + - + - + - + - + + + week + 1 + 68 + 0 + + + + 380.p.26663 + 26663 + + Tank Carradine + Tank + Carradine + Tank + Carradine + + nfl.p.26663 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/kEb9d81e96Qp8BfBTOT9Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26663.png + small + + https://s.yimg.com/iu/api/res/1.2/kEb9d81e96Qp8BfBTOT9Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26663.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24828 + 24828 + + Jarvis Jenkins + Jarvis + Jenkins + Jarvis + Jenkins + + nfl.p.24828 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/UGglNwTsxZtTyd5d_wh2QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24828.png + small + + https://s.yimg.com/iu/api/res/1.2/UGglNwTsxZtTyd5d_wh2QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24828.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25728 + 25728 + + Melvin Ingram + Melvin + Ingram + Melvin + Ingram + + nfl.p.25728 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 54 + DE + + https://s.yimg.com/iu/api/res/1.2/kjhf3doqXehq6YhWW725Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25728.png + small + + https://s.yimg.com/iu/api/res/1.2/kjhf3doqXehq6YhWW725Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25728.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 31 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27905 + 27905 + + Zach Kerr + Zach + Kerr + Zach + Kerr + + nfl.p.27905 + nfl.t.7 + Denver Broncos + Den + + 10 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/oL5bSlQfrgHfjWlod0.XsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27905.1.png + small + + https://s.yimg.com/iu/api/res/1.2/oL5bSlQfrgHfjWlod0.XsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27905.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26297 + 26297 + + Derrick Shelby + Derrick + Shelby + Derrick + Shelby + + nfl.p.26297 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/4giRFUFSfdN0AuFcCv0kbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26297.png + small + + https://s.yimg.com/iu/api/res/1.2/4giRFUFSfdN0AuFcCv0kbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26297.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30187 + 30187 + + Chris Wormley + Chris + Wormley + Chris + Wormley + + nfl.p.30187 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/Lrj2F5VhZkyrunCKt4cl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30187.png + small + + https://s.yimg.com/iu/api/res/1.2/Lrj2F5VhZkyrunCKt4cl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30187.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29920 + 29920 + + Roy Robertson-Harris + Roy + Robertson-Harris + Roy + Robertson-Harris + + nfl.p.29920 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/shsmteBBDyteNId70VPTjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29920.png + small + + https://s.yimg.com/iu/api/res/1.2/shsmteBBDyteNId70VPTjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29920.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25799 + 25799 + + Akiem Hicks + Akiem + Hicks + Akiem + Hicks + + Q + Questionable + nfl.p.25799 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/W9vBOFk5zlaIczhSR4IcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25799.png + small + + https://s.yimg.com/iu/api/res/1.2/W9vBOFk5zlaIczhSR4IcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25799.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.29999 + 29999 + + Branden Jackson + Branden + Jackson + Branden + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29999 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/eQPFYV82.hWSLNcTx1Tx7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29999.png + small + + https://s.yimg.com/iu/api/res/1.2/eQPFYV82.hWSLNcTx1Tx7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29999.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28394 + 28394 + + Leonard Williams + Leonard + Williams + Leonard + Williams + + nfl.p.28394 + nfl.t.20 + New York Jets + NYJ + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/u8h4bW1mJdExI3vt0hlJ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28394.png + small + + https://s.yimg.com/iu/api/res/1.2/u8h4bW1mJdExI3vt0hlJ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28394.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.9691 + 9691 + + Cameron Wake + Cameron + Wake + Cameron + Wake + + nfl.p.9691 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/gjQ8rLcL8sY2dIjI_3nCQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9691.png + small + + https://s.yimg.com/iu/api/res/1.2/gjQ8rLcL8sY2dIjI_3nCQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9691.png + 0 + DP + + DE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.23996 + 23996 + + Jermaine Gresham + Jermaine + Gresham + Jermaine + Gresham + + Q + Questionable + nfl.p.23996 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/31YPYNtZe3nlxrmwNbTKXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23996.png + small + + https://s.yimg.com/iu/api/res/1.2/31YPYNtZe3nlxrmwNbTKXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23996.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30140 + 30140 + + Tre'Davious White + Tre'Davious + White + Tre'Davious + White + + nfl.p.30140 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/5FMoH9I9WjyVe0NbwBEoNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30140.png + small + + https://s.yimg.com/iu/api/res/1.2/5FMoH9I9WjyVe0NbwBEoNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30140.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 8 + 0 + + + + 380.p.27608 + 27608 + + Dexter McDougle + Dexter + McDougle + Dexter + McDougle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27608 + nfl.t.8 + Detroit Lions + Det + + 6 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/iL5EWo1K6cBou1JHcIhVnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27608.1.png + small + + https://s.yimg.com/iu/api/res/1.2/iL5EWo1K6cBou1JHcIhVnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27608.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30669 + 30669 + + Kenny Moore II + Kenny + Moore II + Kenny + Moore II + + nfl.p.30669 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/.s0Xe98T4EitWR4i461wrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30669.png + small + + https://s.yimg.com/iu/api/res/1.2/.s0Xe98T4EitWR4i461wrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30669.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30146 + 30146 + + Kevin King + Kevin + King + Kevin + King + + Q + Questionable + nfl.p.30146 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/T1UQ1ydbqfemsJ83D3GunA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30146.png + small + + https://s.yimg.com/iu/api/res/1.2/T1UQ1ydbqfemsJ83D3GunA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30146.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30205 + 30205 + + Jourdan Lewis + Jourdan + Lewis + Jourdan + Lewis + + nfl.p.30205 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/Y5QnyWhT9mhI4NE5bEdThg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30205.png + small + + https://s.yimg.com/iu/api/res/1.2/Y5QnyWhT9mhI4NE5bEdThg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30205.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30159 + 30159 + + Quincy Wilson + Quincy + Wilson + Quincy + Wilson + + Q + Questionable + nfl.p.30159 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/W_.oLxC8vem9kffzctSgEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30159.png + small + + https://s.yimg.com/iu/api/res/1.2/W_.oLxC8vem9kffzctSgEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30159.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28265 + 28265 + + K'Waun Williams + K'Waun + Williams + K'Waun + Williams + + nfl.p.28265 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/0CQFfSe8H_8KlBmSpZCNMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28265.png + small + + https://s.yimg.com/iu/api/res/1.2/0CQFfSe8H_8KlBmSpZCNMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28265.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30619 + 30619 + + Lenzy Pipkins + Lenzy + Pipkins + Lenzy + Pipkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30619 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/fao0zBBsHD.T2bCmiGh_yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30619.png + small + + https://s.yimg.com/iu/api/res/1.2/fao0zBBsHD.T2bCmiGh_yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30619.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29962 + 29962 + + Tony McRae + Tony + McRae + Tony + McRae + + nfl.p.29962 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30179 + 30179 + + Ahkello Witherspoon + Ahkello + Witherspoon + Ahkello + Witherspoon + + nfl.p.30179 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/ZuV98aj_QEiBPetRhsf94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30179.png + small + + https://s.yimg.com/iu/api/res/1.2/ZuV98aj_QEiBPetRhsf94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30179.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28558 + 28558 + + Tye Smith + Tye + Smith + Tye + Smith + + IR + Injured Reserve + undisclosed + nfl.p.28558 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/02REXMNe0hz.F.q6V0Ekww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28558.png + small + + https://s.yimg.com/iu/api/res/1.2/02REXMNe0hz.F.q6V0Ekww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28558.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30129 + 30129 + + Marlon Humphrey + Marlon + Humphrey + Marlon + Humphrey + + nfl.p.30129 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/E_EDEzOzdoquh6PL1.0dkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30129.png + small + + https://s.yimg.com/iu/api/res/1.2/E_EDEzOzdoquh6PL1.0dkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30129.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30124 + 30124 + + Marshon Lattimore + Marshon + Lattimore + Marshon + Lattimore + + nfl.p.30124 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/HJ9EYcTvW2Zdd2crtuwyug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30124.png + small + + https://s.yimg.com/iu/api/res/1.2/HJ9EYcTvW2Zdd2crtuwyug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30124.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 26 + 0 + + + + 380.p.30212 + 30212 + + Rasul Douglas + Rasul + Douglas + Rasul + Douglas + + nfl.p.30212 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/YH2h1fLnl9DMf9Gu2QGglA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30212.png + small + + https://s.yimg.com/iu/api/res/1.2/YH2h1fLnl9DMf9Gu2QGglA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30212.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30194 + 30194 + + Fabian Moreau + Fabian + Moreau + Fabian + Moreau + + nfl.p.30194 + nfl.t.28 + Washington Redskins + Was + + 4 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/OjKY8M9QEQGxa_YPDrwFVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30194.png + small + + https://s.yimg.com/iu/api/res/1.2/OjKY8M9QEQGxa_YPDrwFVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30194.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29430 + 29430 + + Blake Countess + Blake + Countess + Blake + Countess + + nfl.p.29430 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/qqE4_DnKdOP3k1s21Bbsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29430.png + small + + https://s.yimg.com/iu/api/res/1.2/qqE4_DnKdOP3k1s21Bbsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29430.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30271 + 30271 + + Nate Hairston + Nate + Hairston + Nate + Hairston + + Q + Questionable + nfl.p.30271 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29846 + 29846 + + Donte Deayon + Donte + Deayon + Donte + Deayon + + nfl.p.29846 + nfl.t.19 + New York Giants + NYG + + 9 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/77NR7F0nZK.4WkmLjDDeTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29846.png + small + + https://s.yimg.com/iu/api/res/1.2/77NR7F0nZK.4WkmLjDDeTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29846.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29607 + 29607 + + Chris Milton + Chris + Milton + Chris + Milton + + nfl.p.29607 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/g.EQ4lvYYPbukNaU9QEaSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29607.1.png + small + + https://s.yimg.com/iu/api/res/1.2/g.EQ4lvYYPbukNaU9QEaSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29607.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27542 + 27542 + + Kyle Fuller + Kyle + Fuller + Kyle + Fuller + + nfl.p.27542 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/pdtijlC1QCd2_0q9TDAdag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27542.png + small + + https://s.yimg.com/iu/api/res/1.2/pdtijlC1QCd2_0q9TDAdag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27542.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 10 + 0 + + + + 380.p.29287 + 29287 + + Mackensie Alexander + Mackensie + Alexander + Mackensie + Alexander + + Q + Questionable + nfl.p.29287 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/VrKzb.zm85JAh0PqsIEGkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29287.png + small + + https://s.yimg.com/iu/api/res/1.2/VrKzb.zm85JAh0PqsIEGkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29287.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27723 + 27723 + + Brandon Dixon + Brandon + Dixon + Brandon + Dixon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27723 + nfl.t.19 + New York Giants + NYG + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/Ajxm2Ymcp8H.1GOXQK98Bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27723.png + small + + https://s.yimg.com/iu/api/res/1.2/Ajxm2Ymcp8H.1GOXQK98Bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27723.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30865 + 30865 + + Dominique Hatfield + Dominique + Hatfield + Dominique + Hatfield + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30865 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28466 + 28466 + + P.J. Williams + P.J. + Williams + P.J. + Williams + + Q + Questionable + nfl.p.28466 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/6Vpe5IGJN4u0Bci0AC6ljA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28466.png + small + + https://s.yimg.com/iu/api/res/1.2/6Vpe5IGJN4u0Bci0AC6ljA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28466.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29443 + 29443 + + Maurice Canady + Maurice + Canady + Maurice + Canady + + Q + Questionable + nfl.p.29443 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/mdDCW1RoiO7Ol8rGKRiMHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29443.png + small + + https://s.yimg.com/iu/api/res/1.2/mdDCW1RoiO7Ol8rGKRiMHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29443.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30166 + 30166 + + Teez Tabor + Teez + Tabor + Teez + Tabor + + nfl.p.30166 + nfl.t.8 + Detroit Lions + Det + + 6 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/h.keLvPzw5M6DbU4DY14kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30166.png + small + + https://s.yimg.com/iu/api/res/1.2/h.keLvPzw5M6DbU4DY14kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30166.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30014 + 30014 + + Javien Elliott + Javien + Elliott + Javien + Elliott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30014 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29438 + 29438 + + Jordan Lucas + Jordan + Lucas + Jordan + Lucas + + nfl.p.29438 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/XngfddoivJedx1F.DHA56g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29438.1.png + small + + https://s.yimg.com/iu/api/res/1.2/XngfddoivJedx1F.DHA56g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29438.1.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30422 + 30422 + + Michael Davis + Michael + Davis + Michael + Davis + + nfl.p.30422 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27655 + 27655 + + Pierre Desir + Pierre + Desir + Pierre + Desir + + nfl.p.27655 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/f710jwTyfZ5yQ0FEoIxDdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27655.1.png + small + + https://s.yimg.com/iu/api/res/1.2/f710jwTyfZ5yQ0FEoIxDdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27655.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30214 + 30214 + + Brendan Langley + Brendan + Langley + Brendan + Langley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30214 + nfl.t.7 + Denver Broncos + Den + + 10 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29062 + 29062 + + Curtis Riley + Curtis + Riley + Curtis + Riley + + nfl.p.29062 + nfl.t.19 + New York Giants + NYG + + 9 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/MJRarIgJ0UUrs2adF8C6Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29062.png + small + + https://s.yimg.com/iu/api/res/1.2/MJRarIgJ0UUrs2adF8C6Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29062.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28630 + 28630 + + Dexter McDonald + Dexter + McDonald + Dexter + McDonald + + IR + Injured Reserve + undisclosed + nfl.p.28630 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/H0PZUD0sa8UaaO5hA.4neg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28630.png + small + + https://s.yimg.com/iu/api/res/1.2/H0PZUD0sa8UaaO5hA.4neg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28630.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30203 + 30203 + + Shaquill Griffin + Shaquill + Griffin + Shaquill + Griffin + + nfl.p.30203 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/gjnw3HDCFbfpjNEN0JeVcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30203.png + small + + https://s.yimg.com/iu/api/res/1.2/gjnw3HDCFbfpjNEN0JeVcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30203.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30548 + 30548 + + Kai Nacua + Kai + Nacua + Kai + Nacua + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30548 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30282 + 30282 + + Treston Decoud + Treston + Decoud + Treston + Decoud + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30282 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29510 + 29510 + + Mike Hilton + Mike + Hilton + Mike + Hilton + + nfl.p.29510 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/Z_E9a7_BIyl2Dzx.4.87EQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29510.png + small + + https://s.yimg.com/iu/api/res/1.2/Z_E9a7_BIyl2Dzx.4.87EQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29510.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30173 + 30173 + + Chidobe Awuzie + Chidobe + Awuzie + Chidobe + Awuzie + + nfl.p.30173 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/RFRUl1vgK0wF6jppCkcX8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30173.png + small + + https://s.yimg.com/iu/api/res/1.2/RFRUl1vgK0wF6jppCkcX8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30173.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29835 + 29835 + + Lafayette Pitts + Lafayette + Pitts + Lafayette + Pitts + + nfl.p.29835 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/RVoCsfu5jbLmwCXDuqspcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29835.1.png + small + + https://s.yimg.com/iu/api/res/1.2/RVoCsfu5jbLmwCXDuqspcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29835.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30342 + 30342 + + Adrian Colbert + Adrian + Colbert + Adrian + Colbert + + nfl.p.30342 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/Nodnk1JcjakwdsYoRR9Jsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30342.png + small + + https://s.yimg.com/iu/api/res/1.2/Nodnk1JcjakwdsYoRR9Jsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30342.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30210 + 30210 + + Cordrea Tankersley + Cordrea + Tankersley + Cordrea + Tankersley + + nfl.p.30210 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29957 + 29957 + + Antonio Hamilton + Antonio + Hamilton + Antonio + Hamilton + + nfl.p.29957 + nfl.t.19 + New York Giants + NYG + + 9 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/OoMGIid4k5HQMJUvHpQ0DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29957.png + small + + https://s.yimg.com/iu/api/res/1.2/OoMGIid4k5HQMJUvHpQ0DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29957.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30264 + 30264 + + Desmond King + Desmond + King + Desmond + King + + nfl.p.30264 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/4PY1_OhlUtqFBILoLCl6HA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30264.png + small + + https://s.yimg.com/iu/api/res/1.2/4PY1_OhlUtqFBILoLCl6HA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30264.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.28508 + 28508 + + Josh Shaw + Josh + Shaw + Josh + Shaw + + undisclosed + nfl.p.28508 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/tUvJStNXuWaSUCfZeAS7hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28508.png + small + + https://s.yimg.com/iu/api/res/1.2/tUvJStNXuWaSUCfZeAS7hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28508.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29842 + 29842 + + Ken Crawley + Ken + Crawley + Ken + Crawley + + nfl.p.29842 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/mmxlhWjfukgttaCvrUorug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29842.png + small + + https://s.yimg.com/iu/api/res/1.2/mmxlhWjfukgttaCvrUorug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29842.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24924 + 24924 + + Buster Skrine + Buster + Skrine + Buster + Skrine + + nfl.p.24924 + nfl.t.20 + New York Jets + NYJ + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/2Fn7EELep4TOIQ_ZfBgQEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24924.png + small + + https://s.yimg.com/iu/api/res/1.2/2Fn7EELep4TOIQ_ZfBgQEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24924.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8909 + 8909 + + Orlando Scandrick + Orlando + Scandrick + Orlando + Scandrick + + nfl.p.8909 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/uN5uQC0WzAYSjp5j6T9jig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8909.png + small + + https://s.yimg.com/iu/api/res/1.2/uN5uQC0WzAYSjp5j6T9jig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8909.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29352 + 29352 + + Juston Burris + Juston + Burris + Juston + Burris + + nfl.p.29352 + nfl.t.20 + New York Jets + NYJ + + 11 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/paPpEzczMz7OPkVTgisZMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29352.1.png + small + + https://s.yimg.com/iu/api/res/1.2/paPpEzczMz7OPkVTgisZMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29352.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29729 + 29729 + + Josh Hawkins + Josh + Hawkins + Josh + Hawkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29729 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/mJcqEgUY4XRTp4Nbhw5u3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29729.png + small + + https://s.yimg.com/iu/api/res/1.2/mJcqEgUY4XRTp4Nbhw5u3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29729.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9467 + 9467 + + Jason McCourty + Jason + McCourty + Jason + McCourty + + nfl.p.9467 + nfl.t.17 + New England Patriots + NE + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lrnuBfOnA_l191fDbnHQ2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9467.png + small + + https://s.yimg.com/iu/api/res/1.2/lrnuBfOnA_l191fDbnHQ2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9467.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.25775 + 25775 + + Trumaine Johnson + Trumaine + Johnson + Trumaine + Johnson + + nfl.p.25775 + nfl.t.20 + New York Jets + NYJ + + 11 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/SbDWNixVJ_jgNSYniUxr4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/25775.png + small + + https://s.yimg.com/iu/api/res/1.2/SbDWNixVJ_jgNSYniUxr4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/25775.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.8424 + 8424 + + William Gay + William + Gay + William + Gay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8424 + nfl.t.19 + New York Giants + NYG + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/5VBbVoWhgiEBUyQtZBe0VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8424.png + small + + https://s.yimg.com/iu/api/res/1.2/5VBbVoWhgiEBUyQtZBe0VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8424.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8607 + 8607 + + Brent Grimes + Brent + Grimes + Brent + Grimes + + nfl.p.8607 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/ywOMjgVZ7_pD61FCPdC1.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8607.png + small + + https://s.yimg.com/iu/api/res/1.2/ywOMjgVZ7_pD61FCPdC1.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8607.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26875 + 26875 + + Marcus Cooper + Marcus + Cooper + Marcus + Cooper + + Q + Questionable + nfl.p.26875 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/gXwGBarHWMtdBXzJ5S1Ifg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26875.png + small + + https://s.yimg.com/iu/api/res/1.2/gXwGBarHWMtdBXzJ5S1Ifg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26875.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27747 + 27747 + + TJ Carrie + TJ + Carrie + TJ + Carrie + + nfl.p.27747 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/IKWqgZ8gWVDMqFpYHnDx3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27747.png + small + + https://s.yimg.com/iu/api/res/1.2/IKWqgZ8gWVDMqFpYHnDx3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27747.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.8268 + 8268 + + Darrelle Revis + Darrelle + Revis + Darrelle + Revis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8268 + nfl.t.20 + New York Jets + NYJ + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/TOUPSX6B1eKaKR79sKRBwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8268.1.png + small + + https://s.yimg.com/iu/api/res/1.2/TOUPSX6B1eKaKR79sKRBwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8268.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28435 + 28435 + + Eric Rowe + Eric + Rowe + Eric + Rowe + + nfl.p.28435 + nfl.t.17 + New England Patriots + NE + + 11 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/eWb.fCfN0r9hKZTYmPvqfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28435.png + small + + https://s.yimg.com/iu/api/res/1.2/eWb.fCfN0r9hKZTYmPvqfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28435.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8793 + 8793 + + Dominique Rodgers-Cromartie + Dominique + Rodgers-Cromartie + Dominique + Rodgers-Cromartie + + nfl.p.8793 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/LhydZLVYB3M17j7oybCazw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8793.png + small + + https://s.yimg.com/iu/api/res/1.2/LhydZLVYB3M17j7oybCazw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8793.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26648 + 26648 + + Xavier Rhodes + Xavier + Rhodes + Xavier + Rhodes + + nfl.p.26648 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/Jflgx6l2icGy57Q5Yfx5eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26648.png + small + + https://s.yimg.com/iu/api/res/1.2/Jflgx6l2icGy57Q5Yfx5eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26648.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.28438 + 28438 + + Ronald Darby + Ronald + Darby + Ronald + Darby + + nfl.p.28438 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/flBDuDqOcAHyZBBAQWxu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28438.png + small + + https://s.yimg.com/iu/api/res/1.2/flBDuDqOcAHyZBBAQWxu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28438.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.29272 + 29272 + + Xavien Howard + Xavien + Howard + Xavien + Howard + + nfl.p.29272 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/DYuCkOvoHzQ3lNcRt7KAaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29272.1.png + small + + https://s.yimg.com/iu/api/res/1.2/DYuCkOvoHzQ3lNcRt7KAaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29272.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28289 + 28289 + + C.J. Goodwin + C.J. + Goodwin + C.J. + Goodwin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28289 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/5OZOppBHhD7B4Aiydy811Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28289.png + small + + https://s.yimg.com/iu/api/res/1.2/5OZOppBHhD7B4Aiydy811Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28289.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28244 + 28244 + + Malcolm Butler + Malcolm + Butler + Malcolm + Butler + + nfl.p.28244 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/RrJfM.Af3pYLlhDrHi21Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28244.png + small + + https://s.yimg.com/iu/api/res/1.2/RrJfM.Af3pYLlhDrHi21Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28244.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28406 + 28406 + + Marcus Peters + Marcus + Peters + Marcus + Peters + + nfl.p.28406 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/Lw5W_5hDSxymB4DqqTVhRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28406.png + small + + https://s.yimg.com/iu/api/res/1.2/Lw5W_5hDSxymB4DqqTVhRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28406.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 31 + 0 + + + + 380.p.26635 + 26635 + + DJ Hayden + DJ + Hayden + DJ + Hayden + + nfl.p.26635 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/_TcrjQcupmQrfeuYmlDrXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26635.png + small + + https://s.yimg.com/iu/api/res/1.2/_TcrjQcupmQrfeuYmlDrXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26635.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8797 + 8797 + + Aqib Talib + Aqib + Talib + Aqib + Talib + + nfl.p.8797 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/kG4ovuIp.k4IkikKrkFaBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8797.png + small + + https://s.yimg.com/iu/api/res/1.2/kG4ovuIp.k4IkikKrkFaBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8797.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26659 + 26659 + + Darius Slay + Darius + Slay + Darius + Slay + + nfl.p.26659 + nfl.t.8 + Detroit Lions + Det + + 6 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/2a7LeWH10KI.NqVkRg0H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26659.png + small + + https://s.yimg.com/iu/api/res/1.2/2a7LeWH10KI.NqVkRg0H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26659.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 12 + 0 + + + + 380.p.24079 + 24079 + + Alterraun Verner + Alterraun + Verner + Alterraun + Verner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24079 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 42 + CB + + https://s.yimg.com/iu/api/res/1.2/48zbSr6b2OyXtrletqbXlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24079.png + small + + https://s.yimg.com/iu/api/res/1.2/48zbSr6b2OyXtrletqbXlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24079.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25825 + 25825 + + Coty Sensabaugh + Coty + Sensabaugh + Coty + Sensabaugh + + nfl.p.25825 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/rDkQfCWbw572EaoW0bLNJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25825.png + small + + https://s.yimg.com/iu/api/res/1.2/rDkQfCWbw572EaoW0bLNJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25825.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27708 + 27708 + + Kenneth Acker + Kenneth + Acker + Kenneth + Acker + + IR + Injured Reserve + undisclosed + nfl.p.27708 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/hVVks1n.AiJ80DM8hlYm9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27708.png + small + + https://s.yimg.com/iu/api/res/1.2/hVVks1n.AiJ80DM8hlYm9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27708.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26645 + 26645 + + Desmond Trufant + Desmond + Trufant + Desmond + Trufant + + nfl.p.26645 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/kEMDvSFRV1vNcpmQTa9kNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26645.png + small + + https://s.yimg.com/iu/api/res/1.2/kEMDvSFRV1vNcpmQTa9kNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26645.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.9480 + 9480 + + Captain Munnerlyn + Captain + Munnerlyn + Captain + Munnerlyn + + nfl.p.9480 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/yYEXjLHzqP.6w7txPK1x0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9480.png + small + + https://s.yimg.com/iu/api/res/1.2/yYEXjLHzqP.6w7txPK1x0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9480.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27642 + 27642 + + Aaron Colvin + Aaron + Colvin + Aaron + Colvin + + nfl.p.27642 + nfl.t.34 + Houston Texans + Hou + + 10 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/YjJIHT7Yb2QcMJmrCIqK5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27642.1.png + small + + https://s.yimg.com/iu/api/res/1.2/YjJIHT7Yb2QcMJmrCIqK5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27642.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29342 + 29342 + + Ryan Smith + Ryan + Smith + Ryan + Smith + + nfl.p.29342 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/9HIYHqFMpgqYl6P2W8VvZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29342.png + small + + https://s.yimg.com/iu/api/res/1.2/9HIYHqFMpgqYl6P2W8VvZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29342.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7773 + 7773 + + Johnathan Joseph + Johnathan + Joseph + Johnathan + Joseph + + nfl.p.7773 + nfl.t.34 + Houston Texans + Hou + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/_zNon7rgQYjm4sCaBWcgPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7773.png + small + + https://s.yimg.com/iu/api/res/1.2/_zNon7rgQYjm4sCaBWcgPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7773.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29296 + 29296 + + James Bradberry + James + Bradberry + James + Bradberry + + nfl.p.29296 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/FshuPuER0sOSNDospBBsag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29296.png + small + + https://s.yimg.com/iu/api/res/1.2/FshuPuER0sOSNDospBBsag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29296.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.24814 + 24814 + + Jimmy Smith + Jimmy + Smith + Jimmy + Smith + + SUSP + Suspended + nfl.p.24814 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/nP3QPJZGmi6FC2u9G3we5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24814.png + small + + https://s.yimg.com/iu/api/res/1.2/nP3QPJZGmi6FC2u9G3we5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24814.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24007 + 24007 + + Patrick Robinson + Patrick + Robinson + Patrick + Robinson + + nfl.p.24007 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/tyUcFvvOlCb1.IuaPcR8uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24007.png + small + + https://s.yimg.com/iu/api/res/1.2/tyUcFvvOlCb1.IuaPcR8uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24007.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26706 + 26706 + + Logan Ryan + Logan + Ryan + Logan + Ryan + + nfl.p.26706 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/QxN6JKMX5xiBa7pACY8.sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26706.png + small + + https://s.yimg.com/iu/api/res/1.2/QxN6JKMX5xiBa7pACY8.sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26706.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.29239 + 29239 + + Jalen Ramsey + Jalen + Ramsey + Jalen + Ramsey + + nfl.p.29239 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/G78YTs0Fgcafde6JOMmmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29239.png + small + + https://s.yimg.com/iu/api/res/1.2/G78YTs0Fgcafde6JOMmmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29239.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 25 + 0 + + + + 380.p.28972 + 28972 + + Troy Hill + Troy + Hill + Troy + Hill + + nfl.p.28972 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/Bh6QTBf9IALZIlX9tc8h_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28972.png + small + + https://s.yimg.com/iu/api/res/1.2/Bh6QTBf9IALZIlX9tc8h_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28972.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24120 + 24120 + + Sherrick McManis + Sherrick + McManis + Sherrick + McManis + + nfl.p.24120 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/HiPDLicjqVYGn_NrMpb8gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24120.png + small + + https://s.yimg.com/iu/api/res/1.2/HiPDLicjqVYGn_NrMpb8gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24120.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9289 + 9289 + + Vontae Davis + Vontae + Davis + Vontae + Davis + + nfl.p.9289 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/JRFdgUe8gL04PRyxzBf1bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9289.png + small + + https://s.yimg.com/iu/api/res/1.2/JRFdgUe8gL04PRyxzBf1bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9289.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24225 + 24225 + + Robert McClain + Robert + McClain + Robert + McClain + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24225 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/tS2MZ7kiwTdHeYpS5U7fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24225.png + small + + https://s.yimg.com/iu/api/res/1.2/tS2MZ7kiwTdHeYpS5U7fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24225.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28533 + 28533 + + Bobby McCain + Bobby + McCain + Bobby + McCain + + nfl.p.28533 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/d5xy5F05aRE3kOqe476y1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28533.1.png + small + + https://s.yimg.com/iu/api/res/1.2/d5xy5F05aRE3kOqe476y1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28533.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.6341 + 6341 + + Terence Newman + Terence + Newman + Terence + Newman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6341 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/nRXtKCsP6OrhzPstn4alKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6341.png + small + + https://s.yimg.com/iu/api/res/1.2/nRXtKCsP6OrhzPstn4alKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6341.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29367 + 29367 + + Rashard Robinson + Rashard + Robinson + Rashard + Robinson + + SUSP + Suspended + nfl.p.29367 + nfl.t.20 + New York Jets + NYJ + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/nAwrUOYbKzLSAizvfrvfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29367.png + small + + https://s.yimg.com/iu/api/res/1.2/nAwrUOYbKzLSAizvfrvfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29367.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24876 + 24876 + + Shareece Wright + Shareece + Wright + Shareece + Wright + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24876 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/wzRJaF0V2_sDwZ_QPuL81Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24876.png + small + + https://s.yimg.com/iu/api/res/1.2/wzRJaF0V2_sDwZ_QPuL81Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24876.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28399 + 28399 + + Trae Waynes + Trae + Waynes + Trae + Waynes + + nfl.p.28399 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/y8CyCb7BLJPU5QKAkJ7TAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28399.png + small + + https://s.yimg.com/iu/api/res/1.2/y8CyCb7BLJPU5QKAkJ7TAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28399.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29311 + 29311 + + Daryl Worley + Daryl + Worley + Daryl + Worley + + SUSP + Suspended + nfl.p.29311 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/cUmtdw9wGta7alXbGDrZwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29311.png + small + + https://s.yimg.com/iu/api/res/1.2/cUmtdw9wGta7alXbGDrZwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29311.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28486 + 28486 + + Steven Nelson + Steven + Nelson + Steven + Nelson + + nfl.p.28486 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/23b2qW4W4Wbv7Gt34evHPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28486.1.png + small + + https://s.yimg.com/iu/api/res/1.2/23b2qW4W4Wbv7Gt34evHPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28486.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29452 + 29452 + + Kevon Seymour + Kevon + Seymour + Kevon + Seymour + + IR + Injured Reserve + nfl.p.29452 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/KyZK6rYbUbAtHYU82qK9Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29452.png + small + + https://s.yimg.com/iu/api/res/1.2/KyZK6rYbUbAtHYU82qK9Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29452.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28450 + 28450 + + Quinten Rollins + Quinten + Rollins + Quinten + Rollins + + IR + Injured Reserve + hamstring + nfl.p.28450 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/6Jdw5DSQ3uxql1FRFotUDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28450.png + small + + https://s.yimg.com/iu/api/res/1.2/6Jdw5DSQ3uxql1FRFotUDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28450.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27552 + 27552 + + Darqueze Dennard + Darqueze + Dennard + Darqueze + Dennard + + nfl.p.27552 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/ftcKv6KgyypOxInS7K2c7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27552.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ftcKv6KgyypOxInS7K2c7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27552.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.29245 + 29245 + + Vernon Hargreaves III + Vernon + Hargreaves III + Vernon + Hargreaves III + + nfl.p.29245 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/uVaEKmYiU_o0VcJbXJPYCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29245.png + small + + https://s.yimg.com/iu/api/res/1.2/uVaEKmYiU_o0VcJbXJPYCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29245.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29724 + 29724 + + Mike Jordan + Mike + Jordan + Mike + Jordan + + nfl.p.29724 + nfl.t.19 + New York Giants + NYG + + 9 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/ZOArE_cmMmhjgm.gJp.B0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29724.png + small + + https://s.yimg.com/iu/api/res/1.2/ZOArE_cmMmhjgm.gJp.B0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29724.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27615 + 27615 + + Phillip Gaines + Phillip + Gaines + Phillip + Gaines + + nfl.p.27615 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/gE5KQa4R9P1_CDQrMYU.DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27615.png + small + + https://s.yimg.com/iu/api/res/1.2/gE5KQa4R9P1_CDQrMYU.DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27615.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27661 + 27661 + + Nevin Lawson + Nevin + Lawson + Nevin + Lawson + + nfl.p.27661 + nfl.t.8 + Detroit Lions + Det + + 6 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/cwuje6HQtek0QE9wy2XmWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27661.png + small + + https://s.yimg.com/iu/api/res/1.2/cwuje6HQtek0QE9wy2XmWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27661.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26674 + 26674 + + David Amerson + David + Amerson + David + Amerson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26674 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/HahhiIH1QxO8jSC7dImr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26674.1.png + small + + https://s.yimg.com/iu/api/res/1.2/HahhiIH1QxO8jSC7dImr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26674.1.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9452 + 9452 + + Brice McCain + Brice + McCain + Brice + McCain + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9452 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/uQtd6tAWLdTzCSe1IUqUZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9452.png + small + + https://s.yimg.com/iu/api/res/1.2/uQtd6tAWLdTzCSe1IUqUZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9452.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29534 + 29534 + + Trevor Williams + Trevor + Williams + Trevor + Williams + + Q + Questionable + nfl.p.29534 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/LjtyOHF4fneqjDpWKW2bfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29534.png + small + + https://s.yimg.com/iu/api/res/1.2/LjtyOHF4fneqjDpWKW2bfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29534.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29655 + 29655 + + Brian Poole + Brian + Poole + Brian + Poole + + nfl.p.29655 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/vlUui3DmM1OfwLaJVpURSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29655.png + small + + https://s.yimg.com/iu/api/res/1.2/vlUui3DmM1OfwLaJVpURSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29655.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29259 + 29259 + + Artie Burns + Artie + Burns + Artie + Burns + + nfl.p.29259 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/c.0Y0kGFKgATbM3Nz.6wIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29259.png + small + + https://s.yimg.com/iu/api/res/1.2/c.0Y0kGFKgATbM3Nz.6wIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29259.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29875 + 29875 + + Jonathan Jones + Jonathan + Jones + Jonathan + Jones + + nfl.p.29875 + nfl.t.17 + New England Patriots + NE + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/PHNpmJviemo2NC3VPBkj8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29875.png + small + + https://s.yimg.com/iu/api/res/1.2/PHNpmJviemo2NC3VPBkj8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29875.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24941 + 24941 + + Richard Sherman + Richard + Sherman + Richard + Sherman + + nfl.p.24941 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/5_7evsVTGzZZZyLthYMbJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24941.png + small + + https://s.yimg.com/iu/api/res/1.2/5_7evsVTGzZZZyLthYMbJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24941.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.29467 + 29467 + + Jalen Mills + Jalen + Mills + Jalen + Mills + + nfl.p.29467 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/3YZZzRRjT1SFp9YlE9w40g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29467.png + small + + https://s.yimg.com/iu/api/res/1.2/3YZZzRRjT1SFp9YlE9w40g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29467.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.25749 + 25749 + + Janoris Jenkins + Janoris + Jenkins + Janoris + Jenkins + + nfl.p.25749 + nfl.t.19 + New York Giants + NYG + + 9 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/gRoQSHFSgPvr0JVPQ4irAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/25749.png + small + + https://s.yimg.com/iu/api/res/1.2/gRoQSHFSgPvr0JVPQ4irAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/25749.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28404 + 28404 + + Kevin Johnson + Kevin + Johnson + Kevin + Johnson + + Q + Questionable + nfl.p.28404 + nfl.t.34 + Houston Texans + Hou + + 10 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/Be0G_frWFWDzDH9nFt9XeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28404.png + small + + https://s.yimg.com/iu/api/res/1.2/Be0G_frWFWDzDH9nFt9XeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28404.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28588 + 28588 + + Quandre Diggs + Quandre + Diggs + Quandre + Diggs + + nfl.p.28588 + nfl.t.8 + Detroit Lions + Det + + 6 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/P2YX6KrD.k7rFLwBPvFxXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28588.png + small + + https://s.yimg.com/iu/api/res/1.2/P2YX6KrD.k7rFLwBPvFxXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28588.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25727 + 25727 + + Dre Kirkpatrick + Dre + Kirkpatrick + Dre + Kirkpatrick + + nfl.p.25727 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/3aWz03G1AyCx2.Jh.JkKGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25727.png + small + + https://s.yimg.com/iu/api/res/1.2/3aWz03G1AyCx2.Jh.JkKGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25727.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.24806 + 24806 + + Prince Amukamara + Prince + Amukamara + Prince + Amukamara + + Q + Questionable + nfl.p.24806 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/2B8u1TO5XG3bHqDjTx0WBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24806.png + small + + https://s.yimg.com/iu/api/res/1.2/2B8u1TO5XG3bHqDjTx0WBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24806.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25720 + 25720 + + Stephon Gilmore + Stephon + Gilmore + Stephon + Gilmore + + nfl.p.25720 + nfl.t.17 + New England Patriots + NE + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/0OY8sKY72UdSsKyMPajKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25720.png + small + + https://s.yimg.com/iu/api/res/1.2/0OY8sKY72UdSsKyMPajKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25720.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29391 + 29391 + + LeShaun Sims + LeShaun + Sims + LeShaun + Sims + + nfl.p.29391 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/NUD4kKvMJUGGl2b5FyfcVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29391.png + small + + https://s.yimg.com/iu/api/res/1.2/NUD4kKvMJUGGl2b5FyfcVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29391.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25882 + 25882 + + Jeremy Lane + Jeremy + Lane + Jeremy + Lane + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25882 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/6UtKaU97XBthmMwxv71QBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25882.png + small + + https://s.yimg.com/iu/api/res/1.2/6UtKaU97XBthmMwxv71QBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25882.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28418 + 28418 + + Damarious Randall + Damarious + Randall + Damarious + Randall + + Q + Questionable + nfl.p.28418 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/VRkhcnimSna8i3.TPRth2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28418.png + small + + https://s.yimg.com/iu/api/res/1.2/VRkhcnimSna8i3.TPRth2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28418.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.25887 + 25887 + + Justin Bethel + Justin + Bethel + Justin + Bethel + + nfl.p.25887 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/jq1krnnS37CrT.MUon64FA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25887.png + small + + https://s.yimg.com/iu/api/res/1.2/jq1krnnS37CrT.MUon64FA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25887.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.26713 + 26713 + + Kayvon Webster + Kayvon + Webster + Kayvon + Webster + + nfl.p.26713 + nfl.t.34 + Houston Texans + Hou + + 10 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/srPOxiO5B9Cr0xm7.HFOJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26713.png + small + + https://s.yimg.com/iu/api/res/1.2/srPOxiO5B9Cr0xm7.HFOJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26713.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29244 + 29244 + + Eli Apple + Eli + Apple + Eli + Apple + + nfl.p.29244 + nfl.t.19 + New York Giants + NYG + + 9 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/6vs97Lp0c.5z6QWC2nAdug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29244.png + small + + https://s.yimg.com/iu/api/res/1.2/6vs97Lp0c.5z6QWC2nAdug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29244.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27041 + 27041 + + Rashaan Melvin + Rashaan + Melvin + Rashaan + Melvin + + nfl.p.27041 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/SqFodXSyq9zrli4Bk0BqNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/27041.png + small + + https://s.yimg.com/iu/api/res/1.2/SqFodXSyq9zrli4Bk0BqNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/27041.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27716 + 27716 + + E.J. Gaines + E.J. + Gaines + E.J. + Gaines + + Q + Questionable + nfl.p.27716 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/JVAY55XGIaQ6K3ZpgUtr5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27716.png + small + + https://s.yimg.com/iu/api/res/1.2/JVAY55XGIaQ6K3ZpgUtr5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27716.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27007 + 27007 + + Nickell Robey-Coleman + Nickell + Robey-Coleman + Nickell + Robey-Coleman + + nfl.p.27007 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/BbJQexUmHQAKesD.I3rxUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27007.png + small + + https://s.yimg.com/iu/api/res/1.2/BbJQexUmHQAKesD.I3rxUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27007.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24578 + 24578 + + Tramaine Brock + Tramaine + Brock + Tramaine + Brock + + nfl.p.24578 + nfl.t.7 + Denver Broncos + Den + + 10 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/RvZrO38LiqPlzb7IszjNKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24578.png + small + + https://s.yimg.com/iu/api/res/1.2/RvZrO38LiqPlzb7IszjNKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24578.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29423 + 29423 + + Anthony Brown + Anthony + Brown + Anthony + Brown + + nfl.p.29423 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/ucyjFBaybVUhzRTK1V.WXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29423.png + small + + https://s.yimg.com/iu/api/res/1.2/ucyjFBaybVUhzRTK1V.WXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29423.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25772 + 25772 + + Casey Hayward + Casey + Hayward + Casey + Hayward + + Q + Questionable + nfl.p.25772 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/FSBY5VN3hIEQcK1NsHzPog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25772.png + small + + https://s.yimg.com/iu/api/res/1.2/FSBY5VN3hIEQcK1NsHzPog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25772.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.29876 + 29876 + + Cre'von LeBlanc + Cre'von + LeBlanc + Cre'von + LeBlanc + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29876 + nfl.t.8 + Detroit Lions + Det + + 6 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/dd6KbQ9E3GxvhGHuAvdDgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29876.1.png + small + + https://s.yimg.com/iu/api/res/1.2/dd6KbQ9E3GxvhGHuAvdDgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29876.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8906 + 8906 + + Brandon Carr + Brandon + Carr + Brandon + Carr + + nfl.p.8906 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/3EsVVn_3ApVIW0J7LDUMhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8906.png + small + + https://s.yimg.com/iu/api/res/1.2/3EsVVn_3ApVIW0J7LDUMhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8906.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27637 + 27637 + + Ross Cockrell + Ross + Cockrell + Ross + Cockrell + + IR + Injured Reserve + fractured left tibia/fibula + nfl.p.27637 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 47 + CB + + https://s.yimg.com/iu/api/res/1.2/23btzzkqoUiJDCdwGU3P.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27637.png + small + + https://s.yimg.com/iu/api/res/1.2/23btzzkqoUiJDCdwGU3P.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27637.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28835 + 28835 + + Justin Coleman + Justin + Coleman + Justin + Coleman + + nfl.p.28835 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/qmaeC3zp6tRRszpzT4HlbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28835.png + small + + https://s.yimg.com/iu/api/res/1.2/qmaeC3zp6tRRszpzT4HlbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28835.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25853 + 25853 + + Josh Norman + Josh + Norman + Josh + Norman + + nfl.p.25853 + nfl.t.28 + Washington Redskins + Was + + 4 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/iFXaQ2Fg1OSxnECM5pabAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25853.png + small + + https://s.yimg.com/iu/api/res/1.2/iFXaQ2Fg1OSxnECM5pabAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25853.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.8272 + 8272 + + Leon Hall + Leon + Hall + Leon + Hall + + nfl.p.8272 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/wLaleWP8xm6bJEYnwo_iOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8272.png + small + + https://s.yimg.com/iu/api/res/1.2/wLaleWP8xm6bJEYnwo_iOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8272.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27630 + 27630 + + Bashaud Breeland + Bashaud + Breeland + Bashaud + Breeland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27630 + nfl.t.28 + Washington Redskins + Was + + 4 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/MDAE_uKY.vuS2oGt011sCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27630.png + small + + https://s.yimg.com/iu/api/res/1.2/MDAE_uKY.vuS2oGt011sCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27630.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27657 + 27657 + + Dontae Johnson + Dontae + Johnson + Dontae + Johnson + + nfl.p.27657 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/vQ1ToTuz6dLX4PEjb_80ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27657.png + small + + https://s.yimg.com/iu/api/res/1.2/vQ1ToTuz6dLX4PEjb_80ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27657.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29318 + 29318 + + Kendall Fuller + Kendall + Fuller + Kendall + Fuller + + nfl.p.29318 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/PGfHh0A0Vf2bdcrrfE_Gyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29318.png + small + + https://s.yimg.com/iu/api/res/1.2/PGfHh0A0Vf2bdcrrfE_Gyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29318.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24918 + 24918 + + Davon House + Davon + House + Davon + House + + Q + Questionable + nfl.p.24918 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/2I3ry_YgPlUtgRtyfGGfNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24918.png + small + + https://s.yimg.com/iu/api/res/1.2/2I3ry_YgPlUtgRtyfGGfNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24918.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25716 + 25716 + + Morris Claiborne + Morris + Claiborne + Morris + Claiborne + + nfl.p.25716 + nfl.t.20 + New York Jets + NYJ + + 11 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/T1AsO_2J6STQJC7GsXyUqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25716.png + small + + https://s.yimg.com/iu/api/res/1.2/T1AsO_2J6STQJC7GsXyUqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25716.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25189 + 25189 + + Chris Harris Jr. + Chris + Harris Jr. + Chris + Harris Jr. + + nfl.p.25189 + nfl.t.7 + Denver Broncos + Den + + 10 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/e3R8rvvcDqsoblTxc.yBzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25189.png + small + + https://s.yimg.com/iu/api/res/1.2/e3R8rvvcDqsoblTxc.yBzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25189.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26683 + 26683 + + Robert Alford + Robert + Alford + Robert + Alford + + nfl.p.26683 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/ErGC9IXemgkY1B3.OQoeOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26683.png + small + + https://s.yimg.com/iu/api/res/1.2/ErGC9IXemgkY1B3.OQoeOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26683.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27782 + 27782 + + Terrance Mitchell + Terrance + Mitchell + Terrance + Mitchell + + nfl.p.27782 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/0ahPxtz3RtVAiBxy6ZPM5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/27782.png + small + + https://s.yimg.com/iu/api/res/1.2/0ahPxtz3RtVAiBxy6ZPM5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/27782.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27559 + 27559 + + Bradley Roby + Bradley + Roby + Bradley + Roby + + nfl.p.27559 + nfl.t.7 + Denver Broncos + Den + + 10 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/ydiDdmuCv3kaOM5k7PtPUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27559.png + small + + https://s.yimg.com/iu/api/res/1.2/ydiDdmuCv3kaOM5k7PtPUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27559.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27644 + 27644 + + Keith McGill + Keith + McGill + Keith + McGill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27644 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/9N7VqsCIOepqx1bUS9Kr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27644.png + small + + https://s.yimg.com/iu/api/res/1.2/9N7VqsCIOepqx1bUS9Kr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27644.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27337 + 27337 + + A.J. Bouye + A.J. + Bouye + A.J. + Bouye + + nfl.p.27337 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/KnEkTnN2lKeueD8.Fog8CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27337.png + small + + https://s.yimg.com/iu/api/res/1.2/KnEkTnN2lKeueD8.Fog8CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27337.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 13 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27653 + 27653 + + Walt Aikens + Walt + Aikens + Walt + Aikens + + nfl.p.27653 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/NwtZACrx6LfkfDuP0V9HaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27653.1.png + small + + https://s.yimg.com/iu/api/res/1.2/NwtZACrx6LfkfDuP0V9HaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27653.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26122 + 26122 + + Neiko Thorpe + Neiko + Thorpe + Neiko + Thorpe + + Q + Questionable + nfl.p.26122 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/_eozAyWoEo71ELc0wg9L6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26122.1.png + small + + https://s.yimg.com/iu/api/res/1.2/_eozAyWoEo71ELc0wg9L6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26122.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26677 + 26677 + + Jamar Taylor + Jamar + Taylor + Jamar + Taylor + + nfl.p.26677 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/MqPxHJoRtlJNj7sYi6gCLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26677.1.png + small + + https://s.yimg.com/iu/api/res/1.2/MqPxHJoRtlJNj7sYi6gCLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26677.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24792 + 24792 + + Patrick Peterson + Patrick + Peterson + Patrick + Peterson + + nfl.p.24792 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/DBT2QbikJyxG0B9yDiGtFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24792.png + small + + https://s.yimg.com/iu/api/res/1.2/DBT2QbikJyxG0B9yDiGtFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24792.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.8212 + 8212 + + Tramon Williams + Tramon + Williams + Tramon + Williams + + nfl.p.8212 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/0FAHdJ5Sqt_4I1zw1_sQEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8212.png + small + + https://s.yimg.com/iu/api/res/1.2/0FAHdJ5Sqt_4I1zw1_sQEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8212.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28635 + 28635 + + Darryl Roberts + Darryl + Roberts + Darryl + Roberts + + nfl.p.28635 + nfl.t.20 + New York Jets + NYJ + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/owKSvssOyQ.vl.L6m3ejLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28635.1.png + small + + https://s.yimg.com/iu/api/res/1.2/owKSvssOyQ.vl.L6m3ejLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28635.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27215 + 27215 + + Darryl Morris + Darryl + Morris + Darryl + Morris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27215 + nfl.t.19 + New York Giants + NYG + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/PrEP6HPEfMBkKK4c9UY67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27215.1.png + small + + https://s.yimg.com/iu/api/res/1.2/PrEP6HPEfMBkKK4c9UY67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27215.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.23982 + 23982 + + Joe Haden + Joe + Haden + Joe + Haden + + nfl.p.23982 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/d54pXYAOdxeUG2qimW21PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23982.png + small + + https://s.yimg.com/iu/api/res/1.2/d54pXYAOdxeUG2qimW21PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23982.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26366 + 26366 + + Johnson Bademosi + Johnson + Bademosi + Johnson + Bademosi + + nfl.p.26366 + nfl.t.34 + Houston Texans + Hou + + 10 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/McOWzkWzTqKwzrsHmiLBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26366.png + small + + https://s.yimg.com/iu/api/res/1.2/McOWzkWzTqKwzrsHmiLBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26366.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24960 + 24960 + + Byron Maxwell + Byron + Maxwell + Byron + Maxwell + + IR + Injured Reserve + hip + nfl.p.24960 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/yYX1NXUucmV5DsR5C_GtVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24960.png + small + + https://s.yimg.com/iu/api/res/1.2/yYX1NXUucmV5DsR5C_GtVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24960.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29340 + 29340 + + Eric Murray + Eric + Murray + Eric + Murray + + nfl.p.29340 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/qqi6.7IEzpFLGVjbMPP1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29340.1.png + small + + https://s.yimg.com/iu/api/res/1.2/qqi6.7IEzpFLGVjbMPP1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29340.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.100002 + 100002 + + Buffalo + Buffalo + + Buffalo + + + nfl.p.100002 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/buf.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/buf.gif + 0 + DT + + DEF + + + 125.5 + 13.3 + 1.1 + 0.02 + + + week + 1 + 2 + 0 + + + + 380.p.26707 + 26707 + + Shawn Williams + Shawn + Williams + Shawn + Williams + + nfl.p.26707 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/aopygS.HHGFxMNpfvlpg5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26707.1.png + small + + https://s.yimg.com/iu/api/res/1.2/aopygS.HHGFxMNpfvlpg5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26707.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24759 + 24759 + + Andrew Sendejo + Andrew + Sendejo + Andrew + Sendejo + + nfl.p.24759 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/w_SEMUTah9gP_rM_TFRTGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24759.png + small + + https://s.yimg.com/iu/api/res/1.2/w_SEMUTah9gP_rM_TFRTGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24759.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27545 + 27545 + + C.J. Mosley + C.J. + Mosley + C.J. + Mosley + + nfl.p.27545 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/IpKKP6xCTQ7uvZRSK305rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27545.png + small + + https://s.yimg.com/iu/api/res/1.2/IpKKP6xCTQ7uvZRSK305rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27545.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 81 + 0 + + + + 380.p.24045 + 24045 + + Ed Dickson + Ed + Dickson + Ed + Dickson + + O + Out + nfl.p.24045 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/yG_5FBFZDc7cUjGbkZ6CPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24045.png + small + + https://s.yimg.com/iu/api/res/1.2/yG_5FBFZDc7cUjGbkZ6CPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24045.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7182 + 7182 + + Adam Jones + Adam + Jones + Adam + Jones + + nfl.p.7182 + nfl.t.7 + Denver Broncos + Den + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/WMIX25U2vrcjuOyFTbIBIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/7182.png + small + + https://s.yimg.com/iu/api/res/1.2/WMIX25U2vrcjuOyFTbIBIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/7182.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27576 + 27576 + + Timmy Jernigan + Timmy + Jernigan + Timmy + Jernigan + + O + Out + nfl.p.27576 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/vIuSd0GYqLtp.JY4cDdf3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27576.png + small + + https://s.yimg.com/iu/api/res/1.2/vIuSd0GYqLtp.JY4cDdf3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27576.png + 0 + DP + + DT + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29507 + 29507 + + Briean Boddy-Calhoun + Briean + Boddy-Calhoun + Briean + Boddy-Calhoun + + nfl.p.29507 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/yQDzBzL4dRs9lZ4Q3pwlsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29507.1.png + small + + https://s.yimg.com/iu/api/res/1.2/yQDzBzL4dRs9lZ4Q3pwlsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29507.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29294 + 29294 + + Cyrus Jones + Cyrus + Jones + Cyrus + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29294 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/j.JUYvnBw0ilatx2QUoesQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29294.png + small + + https://s.yimg.com/iu/api/res/1.2/j.JUYvnBw0ilatx2QUoesQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29294.png + 0 + DP + + CB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29847 + 29847 + + De'Vante Harris + De'Vante + Harris + De'Vante + Harris + + nfl.p.29847 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/MWTTyLsTowRfD_aGE.lQPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29847.png + small + + https://s.yimg.com/iu/api/res/1.2/MWTTyLsTowRfD_aGE.lQPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29847.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27593 + 27593 + + C.J. Fiedorowicz + C.J. + Fiedorowicz + C.J. + Fiedorowicz + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27593 + nfl.t.34 + Houston Texans + Hou + + 10 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/60.6bL59dds8DntPHEx2ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27593.png + small + + https://s.yimg.com/iu/api/res/1.2/60.6bL59dds8DntPHEx2ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27593.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9278 + 9278 + + Malcolm Jenkins + Malcolm + Jenkins + Malcolm + Jenkins + + nfl.p.9278 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/wADObqYJt4LSbJHb99ss6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9278.png + small + + https://s.yimg.com/iu/api/res/1.2/wADObqYJt4LSbJHb99ss6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9278.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.30138 + 30138 + + Jabrill Peppers + Jabrill + Peppers + Jabrill + Peppers + + nfl.p.30138 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/mYQkFg6BOPVZx.aWAi0alg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30138.png + small + + https://s.yimg.com/iu/api/res/1.2/mYQkFg6BOPVZx.aWAi0alg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30138.png + 0 + DP + + S + + + - + - + - + - + + + week + 1 + 11 + 0 + + + + 380.p.29258 + 29258 + + William Jackson + William + Jackson + William + Jackson + + nfl.p.29258 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/QrMoDfM_LEK6bXhnQvphBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29258.1.png + small + + https://s.yimg.com/iu/api/res/1.2/QrMoDfM_LEK6bXhnQvphBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29258.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.24797 + 24797 + + Blaine Gabbert + Blaine + Gabbert + Blaine + Gabbert + + nfl.p.24797 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/DNkFw5eT.pH6PzGABeR.Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24797.png + small + + https://s.yimg.com/iu/api/res/1.2/DNkFw5eT.pH6PzGABeR.Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24797.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25738 + 25738 + + Nick Perry + Nick + Perry + Nick + Perry + + Q + Questionable + nfl.p.25738 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/CcISryT7rek93lpTJvtYSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25738.png + small + + https://s.yimg.com/iu/api/res/1.2/CcISryT7rek93lpTJvtYSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25738.png + 0 + DP + + LB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9294 + 9294 + + Kenny Britt + Kenny + Britt + Kenny + Britt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9294 + nfl.t.17 + New England Patriots + NE + + 11 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/vU7425EMyuNNEGq8iF4VqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9294.png + small + + https://s.yimg.com/iu/api/res/1.2/vU7425EMyuNNEGq8iF4VqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9294.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8432 + 8432 + + Nick Folk + Nick + Folk + Nick + Folk + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8432 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/9PL1M8m8mTcvQT4HJHYaEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8432.png + small + + https://s.yimg.com/iu/api/res/1.2/9PL1M8m8mTcvQT4HJHYaEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8432.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27670 + 27670 + + Ryan Grant + Ryan + Grant + Ryan + Grant + + nfl.p.27670 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/aNQu_HfvC25tJ3dMTLpVtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27670.png + small + + https://s.yimg.com/iu/api/res/1.2/aNQu_HfvC25tJ3dMTLpVtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27670.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.28514 + 28514 + + Mike Davis + Mike + Davis + Mike + Davis + + nfl.p.28514 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/TXMqfOQMCePKxEXZvhQfew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28514.png + small + + https://s.yimg.com/iu/api/res/1.2/TXMqfOQMCePKxEXZvhQfew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28514.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28234 + 28234 + + Taylor Gabriel + Taylor + Gabriel + Taylor + Gabriel + + nfl.p.28234 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/eSSgPPgTWA5VSYovAdlUAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28234.png + small + + https://s.yimg.com/iu/api/res/1.2/eSSgPPgTWA5VSYovAdlUAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28234.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28590 + 28590 + + A.J. Derby + A.J. + Derby + A.J. + Derby + + nfl.p.28590 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/4Ii8pEJsxevXfstqPq5hLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28590.png + small + + https://s.yimg.com/iu/api/res/1.2/4Ii8pEJsxevXfstqPq5hLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28590.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30202 + 30202 + + D'Onta Foreman + D'Onta + Foreman + D'Onta + Foreman + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30202 + nfl.t.34 + Houston Texans + Hou + + 10 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/Lr2uijdlhN59IJuaKKSzdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30202.png + small + + https://s.yimg.com/iu/api/res/1.2/Lr2uijdlhN59IJuaKKSzdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30202.png + 0 + O + + RB + + 1 + + 128.1 + 14.1 + 1.6 + 0.06 + + + week + 1 + 8 + 0 + + + + 380.p.26781 + 26781 + + Luke Willson + Luke + Willson + Luke + Willson + + Q + Questionable + nfl.p.26781 + nfl.t.8 + Detroit Lions + Det + + 6 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/vtmNuECGtBjCVwARL_A8Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26781.png + small + + https://s.yimg.com/iu/api/res/1.2/vtmNuECGtBjCVwARL_A8Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26781.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28718 + 28718 + + Rod Smith + Rod + Smith + Rod + Smith + + nfl.p.28718 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/vumeNvOkD53cXcy2YqFvtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28718.png + small + + https://s.yimg.com/iu/api/res/1.2/vumeNvOkD53cXcy2YqFvtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28718.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.100015 + 100015 + + Miami + Miami + + Miami + + + nfl.p.100015 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + + DEF + + https://s.yimg.com/xe/ipt/50x50w.5.gif + small + + https://s.yimg.com/xe/ipt/50x50w.5.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.7505 + 7505 + + Nick Novak + Nick + Novak + Nick + Novak + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7505 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/WivLV5QmdlxoTptfT2Ip1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/7505.png + small + + https://s.yimg.com/iu/api/res/1.2/WivLV5QmdlxoTptfT2Ip1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/7505.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28582 + 28582 + + Nick O'Leary + Nick + O'Leary + Nick + O'Leary + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28582 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/xKElw8hrEXXo33v8LY.vyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28582.png + small + + https://s.yimg.com/iu/api/res/1.2/xKElw8hrEXXo33v8LY.vyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28582.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26697 + 26697 + + Terrance Williams + Terrance + Williams + Terrance + Williams + + nfl.p.26697 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/JW_ToCcFxHhGEoHLhyvSnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26697.png + small + + https://s.yimg.com/iu/api/res/1.2/JW_ToCcFxHhGEoHLhyvSnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26697.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.29372 + 29372 + + Seth DeValve + Seth + DeValve + Seth + DeValve + + Q + Questionable + nfl.p.29372 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/5GT86roCW2nX9_xjkdauWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29372.png + small + + https://s.yimg.com/iu/api/res/1.2/5GT86roCW2nX9_xjkdauWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29372.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30253 + 30253 + + Wayne Gallman + Wayne + Gallman + Wayne + Gallman + + nfl.p.30253 + nfl.t.19 + New York Giants + NYG + + 9 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/FNGzRAeFsijQXvnrg9FhJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30253.png + small + + https://s.yimg.com/iu/api/res/1.2/FNGzRAeFsijQXvnrg9FhJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30253.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27634 + 27634 + + Bruce Ellington + Bruce + Ellington + Bruce + Ellington + + nfl.p.27634 + nfl.t.34 + Houston Texans + Hou + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/B3KAm_SiF3CgVnaiCLRQQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27634.png + small + + https://s.yimg.com/iu/api/res/1.2/B3KAm_SiF3CgVnaiCLRQQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27634.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28495 + 28495 + + Justin Hardy + Justin + Hardy + Justin + Hardy + + nfl.p.28495 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/9QQenM9TFYeEpSf5IiqfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28495.png + small + + https://s.yimg.com/iu/api/res/1.2/9QQenM9TFYeEpSf5IiqfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28495.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7223 + 7223 + + Mike Nugent + Mike + Nugent + Mike + Nugent + + nfl.p.7223 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/cawO_RZYBS3Tlmi8r9LtVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7223.1.png + small + + https://s.yimg.com/iu/api/res/1.2/cawO_RZYBS3Tlmi8r9LtVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7223.1.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26832 + 26832 + + Brice Butler + Brice + Butler + Brice + Butler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26832 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/sXKLtvrIvwFoUW6L64qbHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26832.png + small + + https://s.yimg.com/iu/api/res/1.2/sXKLtvrIvwFoUW6L64qbHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26832.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28638 + 28638 + + Trevor Siemian + Trevor + Siemian + Trevor + Siemian + + nfl.p.28638 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/1xg7XPVmLFPIIevgusBzjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28638.png + small + + https://s.yimg.com/iu/api/res/1.2/1xg7XPVmLFPIIevgusBzjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28638.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26456 + 26456 + + Deonte Thompson + Deonte + Thompson + Deonte + Thompson + + nfl.p.26456 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/ZEvd1HckSAkE5eH6tRrUMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26456.png + small + + https://s.yimg.com/iu/api/res/1.2/ZEvd1HckSAkE5eH6tRrUMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26456.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26108 + 26108 + + Josh Bellamy + Josh + Bellamy + Josh + Bellamy + + nfl.p.26108 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/ZeLe98BIQuDqzdE7gvzXNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26108.png + small + + https://s.yimg.com/iu/api/res/1.2/ZeLe98BIQuDqzdE7gvzXNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26108.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29650 + 29650 + + J.D. McKissic + J.D. + McKissic + J.D. + McKissic + + IR + Injured Reserve + foot + nfl.p.29650 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/hEpB5_.vOMYK9EP_cDr5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29650.png + small + + https://s.yimg.com/iu/api/res/1.2/hEpB5_.vOMYK9EP_cDr5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29650.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28480 + 28480 + + Jeff Heuerman + Jeff + Heuerman + Jeff + Heuerman + + nfl.p.28480 + nfl.t.7 + Denver Broncos + Den + + 10 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/k.ycRjoEajEHvzZec7abpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28480.png + small + + https://s.yimg.com/iu/api/res/1.2/k.ycRjoEajEHvzZec7abpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28480.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7868 + 7868 + + Brandon Marshall + Brandon + Marshall + Brandon + Marshall + + nfl.p.7868 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/KL5.SArCl.edOiPKSQt4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7868.png + small + + https://s.yimg.com/iu/api/res/1.2/KL5.SArCl.edOiPKSQt4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7868.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 7 + 0 + + + + 380.p.26756 + 26756 + + Levine Toilolo + Levine + Toilolo + Levine + Toilolo + + nfl.p.26756 + nfl.t.8 + Detroit Lions + Det + + 6 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/DQizynXqF86z9xXVw9b3bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26756.png + small + + https://s.yimg.com/iu/api/res/1.2/DQizynXqF86z9xXVw9b3bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26756.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26612 + 26612 + + Darren Fells + Darren + Fells + Darren + Fells + + nfl.p.26612 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/ktgw5GU7Cy3cqiN1tB9bHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26612.png + small + + https://s.yimg.com/iu/api/res/1.2/ktgw5GU7Cy3cqiN1tB9bHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26612.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27626 + 27626 + + Richard Rodgers + Richard + Rodgers + Richard + Rodgers + + IR + Injured Reserve + knee + nfl.p.27626 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/.C0lEyWlhABmKpSyxl.2Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27626.png + small + + https://s.yimg.com/iu/api/res/1.2/.C0lEyWlhABmKpSyxl.2Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27626.png + 0 + O + + TE + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25885 + 25885 + + Blair Walsh + Blair + Walsh + Blair + Walsh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25885 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/8F63IEVK3XWhk.G7kliWjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25885.png + small + + https://s.yimg.com/iu/api/res/1.2/8F63IEVK3XWhk.G7kliWjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25885.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24062 + 24062 + + Eric Decker + Eric + Decker + Eric + Decker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24062 + nfl.t.17 + New England Patriots + NE + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/9tAeSwIB_5UHDxdU4_FnZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24062.1.png + small + + https://s.yimg.com/iu/api/res/1.2/9tAeSwIB_5UHDxdU4_FnZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24062.1.png + 0 + O + + WR + + 1 + + 122.4 + 12.9 + 1.2 + 0.02 + + + week + 1 + 1 + 0 + + + + 380.p.29288 + 29288 + + Tyler Boyd + Tyler + Boyd + Tyler + Boyd + + nfl.p.29288 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/3LEta74r713FOMJHEtxpkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29288.png + small + + https://s.yimg.com/iu/api/res/1.2/3LEta74r713FOMJHEtxpkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29288.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24991 + 24991 + + Virgil Green + Virgil + Green + Virgil + Green + + nfl.p.24991 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/0H0X7u8l4e8G7fVNN7mf6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24991.png + small + + https://s.yimg.com/iu/api/res/1.2/0H0X7u8l4e8G7fVNN7mf6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24991.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27648 + 27648 + + Logan Thomas + Logan + Thomas + Logan + Thomas + + nfl.p.27648 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/WnZ.DpocPvVZ0d5ijzu1zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27648.png + small + + https://s.yimg.com/iu/api/res/1.2/WnZ.DpocPvVZ0d5ijzu1zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27648.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26652 + 26652 + + Cordarrelle Patterson + Cordarrelle + Patterson + Cordarrelle + Patterson + + nfl.p.26652 + nfl.t.17 + New England Patriots + NE + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/kLg0BEwdKyUFiDuJ0W517A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26652.png + small + + https://s.yimg.com/iu/api/res/1.2/kLg0BEwdKyUFiDuJ0W517A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26652.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.24834 + 24834 + + Lance Kendricks + Lance + Kendricks + Lance + Kendricks + + nfl.p.24834 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/tQVe.fnl3K_TAlGpuVCt.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24834.png + small + + https://s.yimg.com/iu/api/res/1.2/tQVe.fnl3K_TAlGpuVCt.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24834.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26729 + 26729 + + Dion Sims + Dion + Sims + Dion + Sims + + Q + Questionable + nfl.p.26729 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/cRuLNw..lCelKWKW_kS8qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26729.png + small + + https://s.yimg.com/iu/api/res/1.2/cRuLNw..lCelKWKW_kS8qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26729.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28730 + 28730 + + Damiere Byrd + Damiere + Byrd + Damiere + Byrd + + nfl.p.28730 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/sx6eeqSmLeBHQjIFqSLoZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28730.png + small + + https://s.yimg.com/iu/api/res/1.2/sx6eeqSmLeBHQjIFqSLoZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28730.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29344 + 29344 + + Tyler Higbee + Tyler + Higbee + Tyler + Higbee + + nfl.p.29344 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/KLpT6dubjYkpenHT_DXSPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29344.png + small + + https://s.yimg.com/iu/api/res/1.2/KLpT6dubjYkpenHT_DXSPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29344.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27717 + 27717 + + TJ Jones + TJ + Jones + TJ + Jones + + nfl.p.27717 + nfl.t.8 + Detroit Lions + Det + + 6 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/Rzek78L4Sxs4dk3V6KViCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27717.png + small + + https://s.yimg.com/iu/api/res/1.2/Rzek78L4Sxs4dk3V6KViCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27717.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25838 + 25838 + + Rhett Ellison + Rhett + Ellison + Rhett + Ellison + + Q + Questionable + nfl.p.25838 + nfl.t.19 + New York Giants + NYG + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/hWL798ISn530l1znOl0WnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25838.png + small + + https://s.yimg.com/iu/api/res/1.2/hWL798ISn530l1znOl0WnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25838.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24845 + 24845 + + Torrey Smith + Torrey + Smith + Torrey + Smith + + nfl.p.24845 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/cnz9SPmTiomlDoyc1kFkMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24845.png + small + + https://s.yimg.com/iu/api/res/1.2/cnz9SPmTiomlDoyc1kFkMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24845.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28464 + 28464 + + Chris Conley + Chris + Conley + Chris + Conley + + nfl.p.28464 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/Cq7P6MQNeBvW85FalXycLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28464.png + small + + https://s.yimg.com/iu/api/res/1.2/Cq7P6MQNeBvW85FalXycLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28464.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28214 + 28214 + + Seth Roberts + Seth + Roberts + Seth + Roberts + + nfl.p.28214 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/GO2WLCQDPSljvPjmnmNf4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28214.png + small + + https://s.yimg.com/iu/api/res/1.2/GO2WLCQDPSljvPjmnmNf4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28214.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24940 + 24940 + + Jeremy Kerley + Jeremy + Kerley + Jeremy + Kerley + + nfl.p.24940 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/rwRzVJ8oySBpU9CFWfBB9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24940.png + small + + https://s.yimg.com/iu/api/res/1.2/rwRzVJ8oySBpU9CFWfBB9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24940.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30290 + 30290 + + Trent Taylor + Trent + Taylor + Trent + Taylor + + nfl.p.30290 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/3iKAaVOSzRww4bnGyTTUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30290.png + small + + https://s.yimg.com/iu/api/res/1.2/3iKAaVOSzRww4bnGyTTUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30290.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27921 + 27921 + + Brandon Coleman + Brandon + Coleman + Brandon + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27921 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/CfZuEmeplbQ7F1RiSj5B3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27921.png + small + + https://s.yimg.com/iu/api/res/1.2/CfZuEmeplbQ7F1RiSj5B3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27921.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29855 + 29855 + + Roger Lewis + Roger + Lewis + Roger + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29855 + nfl.t.19 + New York Giants + NYG + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/lbV7AcdMjL_N0XhrPcdufQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29855.png + small + + https://s.yimg.com/iu/api/res/1.2/lbV7AcdMjL_N0XhrPcdufQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29855.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27826 + 27826 + + Bennie Fowler + Bennie + Fowler + Bennie + Fowler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27826 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/7CC_TFcY3jUSiSJLDCk6Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27826.png + small + + https://s.yimg.com/iu/api/res/1.2/7CC_TFcY3jUSiSJLDCk6Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27826.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.100011 + 100011 + + Indianapolis + Indianapolis + + Indianapolis + + + nfl.p.100011 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ind.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ind.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25774 + 25774 + + Dwayne Allen + Dwayne + Allen + Dwayne + Allen + + nfl.p.25774 + nfl.t.17 + New England Patriots + NE + + 11 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/5DWqD7kr5H9QbEQvS5Ha5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25774.png + small + + https://s.yimg.com/iu/api/res/1.2/5DWqD7kr5H9QbEQvS5Ha5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25774.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29341 + 29341 + + Chris Moore + Chris + Moore + Chris + Moore + + nfl.p.29341 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/4flzOdfzlIvAyygRza9_rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29341.png + small + + https://s.yimg.com/iu/api/res/1.2/4flzOdfzlIvAyygRza9_rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29341.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27584 + 27584 + + Cody Latimer + Cody + Latimer + Cody + Latimer + + nfl.p.27584 + nfl.t.19 + New York Giants + NYG + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/lZEQaqG3LKoit.s4yS6H7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27584.png + small + + https://s.yimg.com/iu/api/res/1.2/lZEQaqG3LKoit.s4yS6H7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27584.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27174 + 27174 + + Demetrius Harris + Demetrius + Harris + Demetrius + Harris + + SUSP + Suspended + nfl.p.27174 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/4Q_6Pwo78Z_exSK99nBEkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27174.png + small + + https://s.yimg.com/iu/api/res/1.2/4Q_6Pwo78Z_exSK99nBEkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27174.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25871 + 25871 + + Randy Bullock + Randy + Bullock + Randy + Bullock + + nfl.p.25871 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/UDtHBPRLbO0Wfi3iY6M1vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25871.png + small + + https://s.yimg.com/iu/api/res/1.2/UDtHBPRLbO0Wfi3iY6M1vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25871.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28483 + 28483 + + Matt Jones + Matt + Jones + Matt + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28483 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/ahaqxNNxp.3C.ryp3E2aqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28483.png + small + + https://s.yimg.com/iu/api/res/1.2/ahaqxNNxp.3C.ryp3E2aqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28483.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29609 + 29609 + + Chester Rogers + Chester + Rogers + Chester + Rogers + + nfl.p.29609 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/9jBX1EgVjyyFI.gr9uxSLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29609.png + small + + https://s.yimg.com/iu/api/res/1.2/9jBX1EgVjyyFI.gr9uxSLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29609.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28658 + 28658 + + Eric Tomlinson + Eric + Tomlinson + Eric + Tomlinson + + nfl.p.28658 + nfl.t.20 + New York Jets + NYJ + + 11 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/oNNjsp8Al2KAGsOqwdO0yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28658.png + small + + https://s.yimg.com/iu/api/res/1.2/oNNjsp8Al2KAGsOqwdO0yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28658.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7426 + 7426 + + Ryan Fitzpatrick + Ryan + Fitzpatrick + Ryan + Fitzpatrick + + nfl.p.7426 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/ta9GDBf.b8AfuXhbrO7Wmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7426.png + small + + https://s.yimg.com/iu/api/res/1.2/ta9GDBf.b8AfuXhbrO7Wmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7426.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30008 + 30008 + + Austin Traylor + Austin + Traylor + Austin + Traylor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30008 + nfl.t.7 + Denver Broncos + Den + + 10 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/ij9_HMm2i_0Zg12wzGtW.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30008.png + small + + https://s.yimg.com/iu/api/res/1.2/ij9_HMm2i_0Zg12wzGtW.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30008.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27914 + 27914 + + Erik Swoope + Erik + Swoope + Erik + Swoope + + nfl.p.27914 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/9gZ4rIycWkMylBChLio70A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27914.png + small + + https://s.yimg.com/iu/api/res/1.2/9gZ4rIycWkMylBChLio70A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27914.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29046 + 29046 + + Will Tye + Will + Tye + Will + Tye + + undisclosed + nfl.p.29046 + nfl.t.17 + New England Patriots + NE + + 11 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/xdP5V2TS15v5nnmQ7LkglQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29046.png + small + + https://s.yimg.com/iu/api/res/1.2/xdP5V2TS15v5nnmQ7LkglQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29046.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27911 + 27911 + + Cody Parkey + Cody + Parkey + Cody + Parkey + + nfl.p.27911 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 1 + K + + https://s.yimg.com/iu/api/res/1.2/w8QEKCb0lB89sHsDknNBaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27911.png + small + + https://s.yimg.com/iu/api/res/1.2/w8QEKCb0lB89sHsDknNBaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27911.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.7802 + 7802 + + Anthony Fasano + Anthony + Fasano + Anthony + Fasano + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7802 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/KRy9M5mYOiBA7PAm9RmcSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7802.png + small + + https://s.yimg.com/iu/api/res/1.2/KRy9M5mYOiBA7PAm9RmcSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7802.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26807 + 26807 + + Mychal Rivera + Mychal + Rivera + Mychal + Rivera + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26807 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/nbhFx2HxdFhTR3q2G_XgxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/26807.png + small + + https://s.yimg.com/iu/api/res/1.2/nbhFx2HxdFhTR3q2G_XgxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/26807.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24891 + 24891 + + Luke Stocker + Luke + Stocker + Luke + Stocker + + nfl.p.24891 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/KjWKVludZI13nJnpREbZ0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24891.png + small + + https://s.yimg.com/iu/api/res/1.2/KjWKVludZI13nJnpREbZ0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24891.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29387 + 29387 + + Wendell Smallwood + Wendell + Smallwood + Wendell + Smallwood + + nfl.p.29387 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/N4IfdEW0CI44jD9sIRCBRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29387.png + small + + https://s.yimg.com/iu/api/res/1.2/N4IfdEW0CI44jD9sIRCBRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29387.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25896 + 25896 + + James Hanna + James + Hanna + James + Hanna + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25896 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/UXH_vX8NPYDTQ5MFMJxdgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25896.png + small + + https://s.yimg.com/iu/api/res/1.2/UXH_vX8NPYDTQ5MFMJxdgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25896.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29328 + 29328 + + Nick Vannett + Nick + Vannett + Nick + Vannett + + nfl.p.29328 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/w0eBeDIjyLbSMtwqqpsXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29328.png + small + + https://s.yimg.com/iu/api/res/1.2/w0eBeDIjyLbSMtwqqpsXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29328.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28545 + 28545 + + C.J. Uzomah + C.J. + Uzomah + C.J. + Uzomah + + nfl.p.28545 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/aqeg8udTETnjOz16EK5hnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28545.png + small + + https://s.yimg.com/iu/api/res/1.2/aqeg8udTETnjOz16EK5hnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28545.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30150 + 30150 + + Zay Jones + Zay + Jones + Zay + Jones + + nfl.p.30150 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/yl91Qig7RcMNwjumbxjy9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30150.png + small + + https://s.yimg.com/iu/api/res/1.2/yl91Qig7RcMNwjumbxjy9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30150.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28115 + 28115 + + Damien Williams + Damien + Williams + Damien + Williams + + nfl.p.28115 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/b_IC306TP6kHbZkY3ptPLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28115.png + small + + https://s.yimg.com/iu/api/res/1.2/b_IC306TP6kHbZkY3ptPLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28115.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28592 + 28592 + + Darren Waller + Darren + Waller + Darren + Waller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28592 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/C1rv5HKB_B34dRET.2vwIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28592.1.png + small + + https://s.yimg.com/iu/api/res/1.2/C1rv5HKB_B34dRET.2vwIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28592.1.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29654 + 29654 + + Joshua Perkins + Joshua + Perkins + Joshua + Perkins + + nfl.p.29654 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/ErLbRnwTMWgqSmIRcXdwSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29654.png + small + + https://s.yimg.com/iu/api/res/1.2/ErLbRnwTMWgqSmIRcXdwSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29654.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28456 + 28456 + + Clive Walford + Clive + Walford + Clive + Walford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28456 + nfl.t.20 + New York Jets + NYJ + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/psIJ3_hfPqiX12H0A3sq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28456.png + small + + https://s.yimg.com/iu/api/res/1.2/psIJ3_hfPqiX12H0A3sq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28456.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27580 + 27580 + + Troy Niklas + Troy + Niklas + Troy + Niklas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27580 + nfl.t.17 + New England Patriots + NE + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/4a._P_lS4mzntPMl7V6i6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27580.png + small + + https://s.yimg.com/iu/api/res/1.2/4a._P_lS4mzntPMl7V6i6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27580.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29346 + 29346 + + Malcolm Mitchell + Malcolm + Mitchell + Malcolm + Mitchell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29346 + nfl.t.17 + New England Patriots + NE + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/XgQ08TvAsw8TmL3U5QbBIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29346.png + small + + https://s.yimg.com/iu/api/res/1.2/XgQ08TvAsw8TmL3U5QbBIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29346.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29325 + 29325 + + Jacoby Brissett + Jacoby + Brissett + Jacoby + Brissett + + nfl.p.29325 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/gyztRD.5Gq5nUOnyFUAp.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29325.png + small + + https://s.yimg.com/iu/api/res/1.2/gyztRD.5Gq5nUOnyFUAp.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29325.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30267 + 30267 + + Jeremy Sprinkle + Jeremy + Sprinkle + Jeremy + Sprinkle + + nfl.p.30267 + nfl.t.28 + Washington Redskins + Was + + 4 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/q69r2mnOrRULWiM97s95PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30267.png + small + + https://s.yimg.com/iu/api/res/1.2/q69r2mnOrRULWiM97s95PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30267.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31749 + 31749 + + Jaeden Graham + Jaeden + Graham + Jaeden + Graham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31749 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29857 + 29857 + + Ryan Malleck + Ryan + Malleck + Ryan + Malleck + + IR + Injured Reserve + undisclosed + nfl.p.29857 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/G2jzVilXJlo02Sj5UDc17g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29857.png + small + + https://s.yimg.com/iu/api/res/1.2/G2jzVilXJlo02Sj5UDc17g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29857.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28348 + 28348 + + Jerome Cunningham + Jerome + Cunningham + Jerome + Cunningham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28348 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/C67TDpL.d6xOVM.7tt3ukg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28348.png + small + + https://s.yimg.com/iu/api/res/1.2/C67TDpL.d6xOVM.7tt3ukg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28348.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31077 + 31077 + + Christopher Herndon IV + Christopher + Herndon IV + Christopher + Herndon IV + + nfl.p.31077 + nfl.t.20 + New York Jets + NYJ + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/EGVFgjyQb15aSl.wdoxljw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31077.png + small + + https://s.yimg.com/iu/api/res/1.2/EGVFgjyQb15aSl.wdoxljw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31077.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25826 + 25826 + + Orson Charles + Orson + Charles + Orson + Charles + + nfl.p.25826 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/T2KquvgJS09Ev2aoMJkBkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25826.png + small + + https://s.yimg.com/iu/api/res/1.2/T2KquvgJS09Ev2aoMJkBkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25826.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31345 + 31345 + + Jake Roh + Jake + Roh + Jake + Roh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31345 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31656 + 31656 + + Dejon Allen + Dejon + Allen + Dejon + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31656 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 62 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31298 + 31298 + + Alec Bloom + Alec + Bloom + Alec + Bloom + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31298 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/u_U8_wjrhqNaSmzf2UWR5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31298.png + small + + https://s.yimg.com/iu/api/res/1.2/u_U8_wjrhqNaSmzf2UWR5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31298.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31680 + 31680 + + Cole Hunt + Cole + Hunt + Cole + Hunt + + Q + Questionable + nfl.p.31680 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31127 + 31127 + + Tyler Conklin + Tyler + Conklin + Tyler + Conklin + + nfl.p.31127 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/8aXRMuvm6EQiqQIyT3q.GA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31127.png + small + + https://s.yimg.com/iu/api/res/1.2/8aXRMuvm6EQiqQIyT3q.GA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31127.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30441 + 30441 + + Josiah Price + Josiah + Price + Josiah + Price + + IR + Injured Reserve + knee + nfl.p.30441 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/Yy9Lg4_avBp3cRPRBwFNsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30441.png + small + + https://s.yimg.com/iu/api/res/1.2/Yy9Lg4_avBp3cRPRBwFNsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30441.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30112 + 30112 + + Mo Alie-Cox + Mo + Alie-Cox + Mo + Alie-Cox + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30112 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/nLxRlYcYziOcUVib7a8lhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30112.png + small + + https://s.yimg.com/iu/api/res/1.2/nLxRlYcYziOcUVib7a8lhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30112.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31364 + 31364 + + Christian Scotland-Williamson + Christian + Scotland-Williamson + Christian + Scotland-Williamson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31364 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/3eCCYGJXWXBwGEUjW98BIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31364.png + small + + https://s.yimg.com/iu/api/res/1.2/3eCCYGJXWXBwGEUjW98BIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31364.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31505 + 31505 + + Julian Allen + Julian + Allen + Julian + Allen + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31505 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27941 + 27941 + + Marcus Lucas + Marcus + Lucas + Marcus + Lucas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27941 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/O_o7Nfu4Uxpv1sgc0V_sBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27941.png + small + + https://s.yimg.com/iu/api/res/1.2/O_o7Nfu4Uxpv1sgc0V_sBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27941.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31519 + 31519 + + Deon Yelder + Deon + Yelder + Deon + Yelder + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31519 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30627 + 30627 + + Pharaoh Brown + Pharaoh + Brown + Pharaoh + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30627 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/7OLrAKnHzlXyxqPx3Braog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30627.png + small + + https://s.yimg.com/iu/api/res/1.2/7OLrAKnHzlXyxqPx3Braog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30627.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29055 + 29055 + + Tim Semisch + Tim + Semisch + Tim + Semisch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29055 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/5Tdhyg_EALK41PsGyrMfYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29055.png + small + + https://s.yimg.com/iu/api/res/1.2/5Tdhyg_EALK41PsGyrMfYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29055.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30263 + 30263 + + Jordan Leggett + Jordan + Leggett + Jordan + Leggett + + nfl.p.30263 + nfl.t.20 + New York Jets + NYJ + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29269 + 29269 + + Hunter Henry + Hunter + Henry + Hunter + Henry + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.29269 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/a6eWsvpkP22wQ1mPSGKwXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/29269.png + small + + https://s.yimg.com/iu/api/res/1.2/a6eWsvpkP22wQ1mPSGKwXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/29269.png + 0 + O + + TE + + 1 + + 101.4 + 10.6 + 1.0 + 0.02 + + + week + 1 + 2 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30527 + 30527 + + Colin Jeter + Colin + Jeter + Colin + Jeter + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30527 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/KqKXexoeqre9XlvXjdn1KA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30527.png + small + + https://s.yimg.com/iu/api/res/1.2/KqKXexoeqre9XlvXjdn1KA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30527.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29666 + 29666 + + J.P. Holtz + J.P. + Holtz + J.P. + Holtz + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29666 + nfl.t.28 + Washington Redskins + Was + + 4 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/hFk8Qkszaas67tLR15G8wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29666.png + small + + https://s.yimg.com/iu/api/res/1.2/hFk8Qkszaas67tLR15G8wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29666.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31071 + 31071 + + Ian Thomas + Ian + Thomas + Ian + Thomas + + nfl.p.31071 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/rkBOPvbn5aZX_ur7nKunpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31071.png + small + + https://s.yimg.com/iu/api/res/1.2/rkBOPvbn5aZX_ur7nKunpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31071.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31719 + 31719 + + Clayton Wilson + Clayton + Wilson + Clayton + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31719 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29764 + 29764 + + Devon Cajuste + Devon + Cajuste + Devon + Cajuste + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29764 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/Mca3iGZaPHo3eMnBD3a7zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29764.png + small + + https://s.yimg.com/iu/api/res/1.2/Mca3iGZaPHo3eMnBD3a7zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29764.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29414 + 29414 + + Moritz Boehringer + Moritz + Boehringer + Moritz + Boehringer + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29414 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/Vwp4_n3De_lBijBdz_zAPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29414.png + small + + https://s.yimg.com/iu/api/res/1.2/Vwp4_n3De_lBijBdz_zAPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29414.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29623 + 29623 + + Henry Krieger-Coble + Henry + Krieger-Coble + Henry + Krieger-Coble + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29623 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/vCVPre4IfPbhKGBInhuwTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29623.png + small + + https://s.yimg.com/iu/api/res/1.2/vCVPre4IfPbhKGBInhuwTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29623.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31019 + 31019 + + Dallas Goedert + Dallas + Goedert + Dallas + Goedert + + nfl.p.31019 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/MoTjLM8PXdVTsMFdOtoZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31019.png + small + + https://s.yimg.com/iu/api/res/1.2/MoTjLM8PXdVTsMFdOtoZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31019.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31283 + 31283 + + David Wells + David + Wells + David + Wells + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31283 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/1bzhuTWe1CecS_ZalacHjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31283.png + small + + https://s.yimg.com/iu/api/res/1.2/1bzhuTWe1CecS_ZalacHjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31283.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31746 + 31746 + + Garrett Hudson + Garrett + Hudson + Garrett + Hudson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31746 + nfl.t.28 + Washington Redskins + Was + + 4 + + 46 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30756 + 30756 + + Billy Brown + Billy + Brown + Billy + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30756 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/.3LrEW1kI5UAMwPMJKB6nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30756.png + small + + https://s.yimg.com/iu/api/res/1.2/.3LrEW1kI5UAMwPMJKB6nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30756.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30765 + 30765 + + Brandon Barnes + Brandon + Barnes + Brandon + Barnes + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30765 + nfl.t.8 + Detroit Lions + Det + + 6 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/6PNW4UcJOVcfsqAB7OrP4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30765.png + small + + https://s.yimg.com/iu/api/res/1.2/6PNW4UcJOVcfsqAB7OrP4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30765.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31501 + 31501 + + Ryan Smith + Ryan + Smith + Ryan + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31501 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31068 + 31068 + + Jordan Akins + Jordan + Akins + Jordan + Akins + + nfl.p.31068 + nfl.t.34 + Houston Texans + Hou + + 10 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/dwKTWNnUWGVUocz0_X8Cng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31068.png + small + + https://s.yimg.com/iu/api/res/1.2/dwKTWNnUWGVUocz0_X8Cng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31068.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31478 + 31478 + + Marcus Baugh + Marcus + Baugh + Marcus + Baugh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31478 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30777 + 30777 + + Robert Tonyan + Robert + Tonyan + Robert + Tonyan + + nfl.p.30777 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/KosK3fwrl2dGtItnibjcBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30777.png + small + + https://s.yimg.com/iu/api/res/1.2/KosK3fwrl2dGtItnibjcBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30777.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30603 + 30603 + + Keith Towbridge + Keith + Towbridge + Keith + Towbridge + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30603 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/NmGNF.dkN7Gl_rAIdzx7MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30603.png + small + + https://s.yimg.com/iu/api/res/1.2/NmGNF.dkN7Gl_rAIdzx7MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30603.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29728 + 29728 + + David Grinnage + David + Grinnage + David + Grinnage + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29728 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30287 + 30287 + + Eric Saubert + Eric + Saubert + Eric + Saubert + + nfl.p.30287 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/letaogC8OBm1dKCNCLvgYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30287.png + small + + https://s.yimg.com/iu/api/res/1.2/letaogC8OBm1dKCNCLvgYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30287.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29508 + 29508 + + Braedon Bowman + Braedon + Bowman + Braedon + Bowman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29508 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/.tsnK6h_GcdkHnnY7oVtrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29508.png + small + + https://s.yimg.com/iu/api/res/1.2/.tsnK6h_GcdkHnnY7oVtrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29508.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30632 + 30632 + + Anthony Kukwa + Anthony + Kukwa + Anthony + Kukwa + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30632 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + TE + + https://s.yimg.com/iu/api/res/1.2/Tj9i4E6UrZ3erx0wE3ceig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30632.png + small + + https://s.yimg.com/iu/api/res/1.2/Tj9i4E6UrZ3erx0wE3ceig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30632.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31090 + 31090 + + Will Dissly + Will + Dissly + Will + Dissly + + nfl.p.31090 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/6.MXGDTrtm6Sojkj3dE0IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31090.png + small + + https://s.yimg.com/iu/api/res/1.2/6.MXGDTrtm6Sojkj3dE0IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31090.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27494 + 27494 + + James Winchester + James + Winchester + James + Winchester + + nfl.p.27494 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 41 + TE + + https://s.yimg.com/iu/api/res/1.2/wTzSHUnLrQkv1Q1_zQyhFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27494.png + small + + https://s.yimg.com/iu/api/res/1.2/wTzSHUnLrQkv1Q1_zQyhFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27494.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27214 + 27214 + + Kevin McDermott + Kevin + McDermott + Kevin + McDermott + + nfl.p.27214 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 47 + TE + + https://s.yimg.com/iu/api/res/1.2/tGeCfLpTCEuSsvjJ9YAFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27214.png + small + + https://s.yimg.com/iu/api/res/1.2/tGeCfLpTCEuSsvjJ9YAFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27214.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31056 + 31056 + + Mark Andrews + Mark + Andrews + Mark + Andrews + + nfl.p.31056 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/mS9VmhX5h3tjqUOAxLeGPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31056.png + small + + https://s.yimg.com/iu/api/res/1.2/mS9VmhX5h3tjqUOAxLeGPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31056.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30314 + 30314 + + Bucky Hodges + Bucky + Hodges + Bucky + Hodges + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30314 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/1wKu2oNYD1Ly7N5SHex42A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062017/30314.png + small + + https://s.yimg.com/iu/api/res/1.2/1wKu2oNYD1Ly7N5SHex42A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062017/30314.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30594 + 30594 + + Jason Croom + Jason + Croom + Jason + Croom + + nfl.p.30594 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/3hizR8DuHH6YY1PeoXjo1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30594.png + small + + https://s.yimg.com/iu/api/res/1.2/3hizR8DuHH6YY1PeoXjo1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30594.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26845 + 26845 + + Chris Gragg + Chris + Gragg + Chris + Gragg + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26845 + nfl.t.20 + New York Jets + NYJ + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/dc5rkWYFYlgp0pU1HmECeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26845.1.png + small + + https://s.yimg.com/iu/api/res/1.2/dc5rkWYFYlgp0pU1HmECeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26845.1.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31751 + 31751 + + Garrett Dickerson + Garrett + Dickerson + Garrett + Dickerson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31751 + nfl.t.19 + New York Giants + NYG + + 9 + + 47 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24303 + 24303 + + Jeff Cumberland + Jeff + Cumberland + Jeff + Cumberland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24303 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/Vw32C7YyQ1Fc27Dn57AFKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/24303.png + small + + https://s.yimg.com/iu/api/res/1.2/Vw32C7YyQ1Fc27Dn57AFKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/24303.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31441 + 31441 + + Kevin Rader + Kevin + Rader + Kevin + Rader + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31441 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28941 + 28941 + + Wes Saxton + Wes + Saxton + Wes + Saxton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28941 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 43 + TE + + https://s.yimg.com/iu/api/res/1.2/tXS3hNVJe5nLpTsAJIDFrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28941.png + small + + https://s.yimg.com/iu/api/res/1.2/tXS3hNVJe5nLpTsAJIDFrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28941.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28221 + 28221 + + Tyler Ott + Tyler + Ott + Tyler + Ott + + nfl.p.28221 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 69 + TE + + https://s.yimg.com/iu/api/res/1.2/Q5hdvW9aPA7i1Xzz_pmgiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28221.png + small + + https://s.yimg.com/iu/api/res/1.2/Q5hdvW9aPA7i1Xzz_pmgiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28221.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31682 + 31682 + + Ben Johnson + Ben + Johnson + Ben + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31682 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31107 + 31107 + + Dalton Schultz + Dalton + Schultz + Dalton + Schultz + + nfl.p.31107 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/v.HuMqVbpu18O3AMotFLOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31107.png + small + + https://s.yimg.com/iu/api/res/1.2/v.HuMqVbpu18O3AMotFLOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31107.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31546 + 31546 + + Stephen Baggett + Stephen + Baggett + Stephen + Baggett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31546 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30702 + 30702 + + Emanuel Byrd + Emanuel + Byrd + Emanuel + Byrd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30702 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/cCuVZdzP6rebNSsJphXG2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30702.png + small + + https://s.yimg.com/iu/api/res/1.2/cCuVZdzP6rebNSsJphXG2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30702.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28964 + 28964 + + Gabe Holmes + Gabe + Holmes + Gabe + Holmes + + nfl.p.28964 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/sv3Bkv4.KDE7TUhEEjBpjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28964.png + small + + https://s.yimg.com/iu/api/res/1.2/sv3Bkv4.KDE7TUhEEjBpjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28964.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31220 + 31220 + + Ryan Izzo + Ryan + Izzo + Ryan + Izzo + + IR + Injured Reserve + undisclosed + nfl.p.31220 + nfl.t.17 + New England Patriots + NE + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/yjXm0HjkCW_TGE30zSTwKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31220.png + small + + https://s.yimg.com/iu/api/res/1.2/yjXm0HjkCW_TGE30zSTwKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31220.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28813 + 28813 + + Gannon Sinclair + Gannon + Sinclair + Gannon + Sinclair + + IR + Injured Reserve + undisclosed + nfl.p.28813 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/2zlSJJVNEQGsphKSlmMiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28813.png + small + + https://s.yimg.com/iu/api/res/1.2/2zlSJJVNEQGsphKSlmMiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28813.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30962 + 30962 + + Chris Bazile + Chris + Bazile + Chris + Bazile + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30962 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30908 + 30908 + + Adam Zaruba + Adam + Zaruba + Adam + Zaruba + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30908 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/He1twwFkfBj..CQ16sutkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30908.png + small + + https://s.yimg.com/iu/api/res/1.2/He1twwFkfBj..CQ16sutkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30908.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27577 + 27577 + + Jace Amaro + Jace + Amaro + Jace + Amaro + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27577 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/wAP2yIEKVrxZBz7boZz2.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27577.png + small + + https://s.yimg.com/iu/api/res/1.2/wAP2yIEKVrxZBz7boZz2.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27577.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29879 + 29879 + + Bryce Williams + Bryce + Williams + Bryce + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29879 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/TvImmkYGCi4VsKF_TDbdNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29879.png + small + + https://s.yimg.com/iu/api/res/1.2/TvImmkYGCi4VsKF_TDbdNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29879.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30763 + 30763 + + Tyrone Swoopes + Tyrone + Swoopes + Tyrone + Swoopes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30763 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 46 + TE + + https://s.yimg.com/iu/api/res/1.2/nW_ep359I3U1sFqXcExP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30763.png + small + + https://s.yimg.com/iu/api/res/1.2/nW_ep359I3U1sFqXcExP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30763.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30559 + 30559 + + Cole Hikutini + Cole + Hikutini + Cole + Hikutini + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30559 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/2yzhs1.LtwmO9yHJU0ig8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30559.png + small + + https://s.yimg.com/iu/api/res/1.2/2yzhs1.LtwmO9yHJU0ig8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30559.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31491 + 31491 + + Blake Mack + Blake + Mack + Blake + Mack + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31491 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31416 + 31416 + + Nate Wozniak + Nate + Wozniak + Nate + Wozniak + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31416 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 79 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31325 + 31325 + + Andrew Vollert + Andrew + Vollert + Andrew + Vollert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31325 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/mRzOkB1MX8Zyd0jZZomtOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31325.png + small + + https://s.yimg.com/iu/api/res/1.2/mRzOkB1MX8Zyd0jZZomtOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31325.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28875 + 28875 + + Matt LaCosse + Matt + LaCosse + Matt + LaCosse + + nfl.p.28875 + nfl.t.7 + Denver Broncos + Den + + 10 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/CwqgpDVvKGtO_0y2RtzOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28875.png + small + + https://s.yimg.com/iu/api/res/1.2/CwqgpDVvKGtO_0y2RtzOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28875.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31427 + 31427 + + Nick Keizer + Nick + Keizer + Nick + Keizer + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31427 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30888 + 30888 + + Alex Gray + Alex + Gray + Alex + Gray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30888 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/i2rhscZahCizjc3VngxE4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30888.png + small + + https://s.yimg.com/iu/api/res/1.2/i2rhscZahCizjc3VngxE4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30888.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28688 + 28688 + + Brian Parker + Brian + Parker + Brian + Parker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28688 + nfl.t.7 + Denver Broncos + Den + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/1cp6LPUNsSp.Iwlmn1dLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28688.png + small + + https://s.yimg.com/iu/api/res/1.2/1cp6LPUNsSp.Iwlmn1dLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28688.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24100 + 24100 + + Clay Harbor + Clay + Harbor + Clay + Harbor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24100 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/pXyUZHm7uWQdaLjO8xqTWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/24100.png + small + + https://s.yimg.com/iu/api/res/1.2/pXyUZHm7uWQdaLjO8xqTWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/24100.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30795 + 30795 + + Evan Baylis + Evan + Baylis + Evan + Baylis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30795 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/UkdOMT_Qx15SIUEp39sprQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30795.png + small + + https://s.yimg.com/iu/api/res/1.2/UkdOMT_Qx15SIUEp39sprQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30795.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29504 + 29504 + + Jake McGee + Jake + McGee + Jake + McGee + + IR + Injured Reserve + knee + nfl.p.29504 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/oIU0u65Z_o25Iwu6Gg7uEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29504.png + small + + https://s.yimg.com/iu/api/res/1.2/oIU0u65Z_o25Iwu6Gg7uEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29504.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29783 + 29783 + + Cole Wick + Cole + Wick + Cole + Wick + + nfl.p.29783 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/BseeXLil5w8xkxHn1pt_iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29783.png + small + + https://s.yimg.com/iu/api/res/1.2/BseeXLil5w8xkxHn1pt_iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29783.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29095 + 29095 + + Manasseh Garner + Manasseh + Garner + Manasseh + Garner + + IR + Injured Reserve + torn ACL + nfl.p.29095 + nfl.t.28 + Washington Redskins + Was + + 4 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/eRnXF1B7Q1MTYeMLqVIqEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29095.png + small + + https://s.yimg.com/iu/api/res/1.2/eRnXF1B7Q1MTYeMLqVIqEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29095.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31276 + 31276 + + Jason Reese + Jason + Reese + Jason + Reese + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31276 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/1AwECgNTav730330G2uVtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31276.png + small + + https://s.yimg.com/iu/api/res/1.2/1AwECgNTav730330G2uVtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31276.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29806 + 29806 + + Jason Vander Laan + Jason + Vander Laan + Jason + Vander Laan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29806 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/3o9fzqPGGb3A7LMyNPD.vQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29806.png + small + + https://s.yimg.com/iu/api/res/1.2/3o9fzqPGGb3A7LMyNPD.vQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29806.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30373 + 30373 + + Johnny Mundt + Johnny + Mundt + Johnny + Mundt + + nfl.p.30373 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/dpO3eotuuojZC_T41sc.QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30373.png + small + + https://s.yimg.com/iu/api/res/1.2/dpO3eotuuojZC_T41sc.QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30373.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31528 + 31528 + + Pharoah McKever + Pharoah + McKever + Pharoah + McKever + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31528 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31234 + 31234 + + Tyler Hoppes + Tyler + Hoppes + Tyler + Hoppes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31234 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/8ToPukj3nOVl8ajZPYzHSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31234.png + small + + https://s.yimg.com/iu/api/res/1.2/8ToPukj3nOVl8ajZPYzHSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31234.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29486 + 29486 + + Beau Sandland + Beau + Sandland + Beau + Sandland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29486 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/jFBtt6SoHd5vH7d9131MqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29486.png + small + + https://s.yimg.com/iu/api/res/1.2/jFBtt6SoHd5vH7d9131MqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29486.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30958 + 30958 + + Jevoni Robinson + Jevoni + Robinson + Jevoni + Robinson + + IR + Injured Reserve + undisclosed + nfl.p.30958 + nfl.t.34 + Houston Texans + Hou + + 10 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/7NoxMnqd1W.U6l0rzS9p4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30958.png + small + + https://s.yimg.com/iu/api/res/1.2/7NoxMnqd1W.U6l0rzS9p4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30958.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26016 + 26016 + + Beau Brinkley + Beau + Brinkley + Beau + Brinkley + + nfl.p.26016 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/GS_f8ZCq6N8DV9Pdh3fUJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26016.png + small + + https://s.yimg.com/iu/api/res/1.2/GS_f8ZCq6N8DV9Pdh3fUJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26016.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30024 + 30024 + + Garrett Griffin + Garrett + Griffin + Garrett + Griffin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30024 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 45 + TE + + https://s.yimg.com/iu/api/res/1.2/jYhXx8FCzgyzJSg.Iv9OhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30024.png + small + + https://s.yimg.com/iu/api/res/1.2/jYhXx8FCzgyzJSg.Iv9OhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30024.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28975 + 28975 + + Matt Lengel + Matt + Lengel + Matt + Lengel + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28975 + nfl.t.34 + Houston Texans + Hou + + 10 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/IxV8hyny1JonRcctL7JhHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28975.png + small + + https://s.yimg.com/iu/api/res/1.2/IxV8hyny1JonRcctL7JhHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28975.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29451 + 29451 + + Rico Gathers + Rico + Gathers + Rico + Gathers + + nfl.p.29451 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/gMyQrzxdzEc.J5Eun6.dIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29451.png + small + + https://s.yimg.com/iu/api/res/1.2/gMyQrzxdzEc.J5Eun6.dIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29451.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29537 + 29537 + + Kyle Carter + Kyle + Carter + Kyle + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29537 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/RXyt5CRYTXCMnMySbrlIvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29537.png + small + + https://s.yimg.com/iu/api/res/1.2/RXyt5CRYTXCMnMySbrlIvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29537.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30784 + 30784 + + Blake Jarwin + Blake + Jarwin + Blake + Jarwin + + nfl.p.30784 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/rqbS.q_ZqzSnEMQNG5Pm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30784.png + small + + https://s.yimg.com/iu/api/res/1.2/rqbS.q_ZqzSnEMQNG5Pm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30784.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28893 + 28893 + + Khari Lee + Khari + Lee + Khari + Lee + + nfl.p.28893 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/3K1L6eIh3F5Op18Lnq0Ohw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28893.png + small + + https://s.yimg.com/iu/api/res/1.2/3K1L6eIh3F5Op18Lnq0Ohw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28893.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30364 + 30364 + + Mason Schreck + Mason + Schreck + Mason + Schreck + + nfl.p.30364 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/Q0LXCgimbx4_1FJciPOSNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30364.png + small + + https://s.yimg.com/iu/api/res/1.2/Q0LXCgimbx4_1FJciPOSNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30364.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31635 + 31635 + + DeAndre Goolsby + DeAndre + Goolsby + DeAndre + Goolsby + + IR + Injured Reserve + undisclosed + nfl.p.31635 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28531 + 28531 + + MyCole Pruitt + MyCole + Pruitt + MyCole + Pruitt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28531 + nfl.t.34 + Houston Texans + Hou + + 10 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/xnTWaTzGWH9t9lEPIZZ5mQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28531.png + small + + https://s.yimg.com/iu/api/res/1.2/xnTWaTzGWH9t9lEPIZZ5mQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28531.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31126 + 31126 + + Troy Fumagalli + Troy + Fumagalli + Troy + Fumagalli + + IR + Injured Reserve + groin + nfl.p.31126 + nfl.t.7 + Denver Broncos + Den + + 10 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/GWGCuownFQ7QhJZhQvmJZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31126.png + small + + https://s.yimg.com/iu/api/res/1.2/GWGCuownFQ7QhJZhQvmJZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31126.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30957 + 30957 + + Kent Taylor + Kent + Taylor + Kent + Taylor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30957 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28365 + 28365 + + Chris Manhertz + Chris + Manhertz + Chris + Manhertz + + nfl.p.28365 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/Ase_SUQDk0UlacCL_KlW1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28365.png + small + + https://s.yimg.com/iu/api/res/1.2/Ase_SUQDk0UlacCL_KlW1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28365.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26583 + 26583 + + Andrew DePaola + Andrew + DePaola + Andrew + DePaola + + nfl.p.26583 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/398bWYzleoM6ZWPuMvlqsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26583.png + small + + https://s.yimg.com/iu/api/res/1.2/398bWYzleoM6ZWPuMvlqsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26583.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30468 + 30468 + + Antony Auclair + Antony + Auclair + Antony + Auclair + + nfl.p.30468 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/dD.1UmxFGFMdaopsl6ltRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30468.png + small + + https://s.yimg.com/iu/api/res/1.2/dD.1UmxFGFMdaopsl6ltRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30468.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31329 + 31329 + + Ross Dwelley + Ross + Dwelley + Ross + Dwelley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31329 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/R20f0CoWjGUxnXv_ozEaRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31329.png + small + + https://s.yimg.com/iu/api/res/1.2/R20f0CoWjGUxnXv_ozEaRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31329.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28215 + 28215 + + Scott Simonson + Scott + Simonson + Scott + Simonson + + nfl.p.28215 + nfl.t.19 + New York Giants + NYG + + 9 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/9L9BuyLv3nXGouE7znhqIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28215.png + small + + https://s.yimg.com/iu/api/res/1.2/9L9BuyLv3nXGouE7znhqIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28215.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31400 + 31400 + + Matt Flanagan + Matt + Flanagan + Matt + Flanagan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31400 + nfl.t.28 + Washington Redskins + Was + + 4 + + 41 + TE + + https://s.yimg.com/iu/api/res/1.2/i0vftK02kphVaFqcohZV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31400.png + small + + https://s.yimg.com/iu/api/res/1.2/i0vftK02kphVaFqcohZV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31400.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29963 + 29963 + + Ryan O'Malley + Ryan + O'Malley + Ryan + O'Malley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29963 + nfl.t.19 + New York Giants + NYG + + 9 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/5tri4Rmq3v3A62t5FQmOPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29963.png + small + + https://s.yimg.com/iu/api/res/1.2/5tri4Rmq3v3A62t5FQmOPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29963.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31346 + 31346 + + Troy Mangen + Troy + Mangen + Troy + Mangen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31346 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/kO_J2y8s.J8r7j2T6lMMWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31346.png + small + + https://s.yimg.com/iu/api/res/1.2/kO_J2y8s.J8r7j2T6lMMWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31346.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27050 + 27050 + + Tim Wright + Tim + Wright + Tim + Wright + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27050 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/bxbVojvgfKhOH5WMNnGKpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27050.png + small + + https://s.yimg.com/iu/api/res/1.2/bxbVojvgfKhOH5WMNnGKpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27050.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31654 + 31654 + + Shane Wimann + Shane + Wimann + Shane + Wimann + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31654 + nfl.t.17 + New England Patriots + NE + + 11 + + + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31255 + 31255 + + Donnie Ernsberger + Donnie + Ernsberger + Donnie + Ernsberger + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31255 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/RCWcAwZoHU8iBtv4pLmbKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31255.png + small + + https://s.yimg.com/iu/api/res/1.2/RCWcAwZoHU8iBtv4pLmbKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31255.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31627 + 31627 + + Ethan Wolf + Ethan + Wolf + Ethan + Wolf + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31627 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 45 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31747 + 31747 + + Austin Roberts + Austin + Roberts + Austin + Roberts + + IR + Injured Reserve + knee + nfl.p.31747 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29532 + 29532 + + Matt Weiser + Matt + Weiser + Matt + Weiser + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29532 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/oN00vRV93fVSNootGUkhoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29532.png + small + + https://s.yimg.com/iu/api/res/1.2/oN00vRV93fVSNootGUkhoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29532.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30800 + 30800 + + Zach Conque + Zach + Conque + Zach + Conque + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30800 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/b4QbIxym72aQkgTjjkjC7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30800.png + small + + https://s.yimg.com/iu/api/res/1.2/b4QbIxym72aQkgTjjkjC7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30800.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31093 + 31093 + + Durham Smythe + Durham + Smythe + Durham + Smythe + + nfl.p.31093 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 46 + TE + + https://s.yimg.com/iu/api/res/1.2/X.2KB1eEi9ROF3zXTU_r3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31093.png + small + + https://s.yimg.com/iu/api/res/1.2/X.2KB1eEi9ROF3zXTU_r3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31093.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29465 + 29465 + + Thomas Duarte + Thomas + Duarte + Thomas + Duarte + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29465 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/17I2nIxOo6rFI03E0WQKAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29465.png + small + + https://s.yimg.com/iu/api/res/1.2/17I2nIxOo6rFI03E0WQKAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29465.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30420 + 30420 + + Sean Culkin + Sean + Culkin + Sean + Culkin + + nfl.p.30420 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/gKQovaI6.hVfkI3Yq.O4wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30420.png + small + + https://s.yimg.com/iu/api/res/1.2/gKQovaI6.hVfkI3Yq.O4wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30420.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27926 + 27926 + + Je'Ron Hamm + Je'Ron + Hamm + Je'Ron + Hamm + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27926 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 41 + TE + + https://s.yimg.com/iu/api/res/1.2/3.i5kVU.LztBCo4VIZOhMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27926.png + small + + https://s.yimg.com/iu/api/res/1.2/3.i5kVU.LztBCo4VIZOhMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27926.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30571 + 30571 + + Anthony Firkser + Anthony + Firkser + Anthony + Firkser + + nfl.p.30571 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/vifWn_YMlpw1atp4lK09bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30571.png + small + + https://s.yimg.com/iu/api/res/1.2/vifWn_YMlpw1atp4lK09bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30571.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29411 + 29411 + + Temarrick Hemingway + Temarrick + Hemingway + Temarrick + Hemingway + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29411 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/ZQBUpSpwMqXGvOhbxjIUvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29411.png + small + + https://s.yimg.com/iu/api/res/1.2/ZQBUpSpwMqXGvOhbxjIUvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29411.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31561 + 31561 + + Jordan Franks + Jordan + Franks + Jordan + Franks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31561 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31181 + 31181 + + Jordan Thomas + Jordan + Thomas + Jordan + Thomas + + nfl.p.31181 + nfl.t.34 + Houston Texans + Hou + + 10 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/GFbpAoWlMQfNPBnMdWqDMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31181.png + small + + https://s.yimg.com/iu/api/res/1.2/GFbpAoWlMQfNPBnMdWqDMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31181.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28192 + 28192 + + Anthony Denham + Anthony + Denham + Anthony + Denham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28192 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/jtS1pjg.99IzyncKUD44xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28192.png + small + + https://s.yimg.com/iu/api/res/1.2/jtS1pjg.99IzyncKUD44xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28192.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25370 + 25370 + + Patrick Scales + Patrick + Scales + Patrick + Scales + + nfl.p.25370 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/2BwJOmF1ZxCPe5FkfjMSzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25370.png + small + + https://s.yimg.com/iu/api/res/1.2/2BwJOmF1ZxCPe5FkfjMSzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25370.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31770 + 31770 + + Cam Serigne + Cam + Serigne + Cam + Serigne + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31770 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31515 + 31515 + + Paul Butler + Paul + Butler + Paul + Butler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31515 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30740 + 30740 + + Colin Thompson + Colin + Thompson + Colin + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30740 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/8wsKN3Q7xW_wCiTj_B1vNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30740.png + small + + https://s.yimg.com/iu/api/res/1.2/8wsKN3Q7xW_wCiTj_B1vNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30740.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30388 + 30388 + + Scott Orndoff + Scott + Orndoff + Scott + Orndoff + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30388 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/9eIkzUuhf7HoynuffUT_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30388.png + small + + https://s.yimg.com/iu/api/res/1.2/9eIkzUuhf7HoynuffUT_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30388.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29422 + 29422 + + David Morgan + David + Morgan + David + Morgan + + nfl.p.29422 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/a7bbiXM7yGGtzQ06bxSKfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29422.png + small + + https://s.yimg.com/iu/api/res/1.2/a7bbiXM7yGGtzQ06bxSKfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29422.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30000 + 30000 + + Jalen Richard + Jalen + Richard + Jalen + Richard + + nfl.p.30000 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/3WFCnLbqV6LejhIPFnFnPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30000.png + small + + https://s.yimg.com/iu/api/res/1.2/3WFCnLbqV6LejhIPFnFnPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30000.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29102 + 29102 + + Daniel Brown + Daniel + Brown + Daniel + Brown + + Q + Questionable + nfl.p.29102 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/i0dyJEWo7JYKqiMULZXsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29102.png + small + + https://s.yimg.com/iu/api/res/1.2/i0dyJEWo7JYKqiMULZXsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29102.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25767 + 25767 + + Brock Osweiler + Brock + Osweiler + Brock + Osweiler + + nfl.p.25767 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/QgNdxfqFotxSuRqy1gFs_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25767.png + small + + https://s.yimg.com/iu/api/res/1.2/QgNdxfqFotxSuRqy1gFs_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25767.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9388 + 9388 + + Louis Murphy + Louis + Murphy + Louis + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9388 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/.LBb1lfR6SkN3KLjhptMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9388.png + small + + https://s.yimg.com/iu/api/res/1.2/.LBb1lfR6SkN3KLjhptMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9388.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26853 + 26853 + + Kerwynn Williams + Kerwynn + Williams + Kerwynn + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26853 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/eDIKcRSCCAOS5JRL3d.iiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26853.png + small + + https://s.yimg.com/iu/api/res/1.2/eDIKcRSCCAOS5JRL3d.iiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26853.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8544 + 8544 + + Matt Moore + Matt + Moore + Matt + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8544 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/UO0KZxiUHXZKbzqQHBIWUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/8544.png + small + + https://s.yimg.com/iu/api/res/1.2/UO0KZxiUHXZKbzqQHBIWUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/8544.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9472 + 9472 + + John Phillips + John + Phillips + John + Phillips + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9472 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/VI1lHBWhG7OtwqBS2dzeyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/9472.png + small + + https://s.yimg.com/iu/api/res/1.2/VI1lHBWhG7OtwqBS2dzeyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/9472.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28227 + 28227 + + Cairo Santos + Cairo + Santos + Cairo + Santos + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28227 + nfl.t.20 + New York Jets + NYJ + + 11 + + 8 + K + + https://s.yimg.com/iu/api/res/1.2/zo6CmcxBlkvVdAoQIPC5sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28227.png + small + + https://s.yimg.com/iu/api/res/1.2/zo6CmcxBlkvVdAoQIPC5sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28227.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28044 + 28044 + + Charcandrick West + Charcandrick + West + Charcandrick + West + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28044 + nfl.t.20 + New York Jets + NYJ + + 11 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/tpJkcmUFdE792soGIjQstg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28044.png + small + + https://s.yimg.com/iu/api/res/1.2/tpJkcmUFdE792soGIjQstg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28044.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26670 + 26670 + + Gavin Escobar + Gavin + Escobar + Gavin + Escobar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26670 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/brLgeo.qp_XwSbKsvnThEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26670.png + small + + https://s.yimg.com/iu/api/res/1.2/brLgeo.qp_XwSbKsvnThEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26670.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28608 + 28608 + + Neal Sterling + Neal + Sterling + Neal + Sterling + + nfl.p.28608 + nfl.t.20 + New York Jets + NYJ + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/KN6FxbdY3U_xBBPaIpnQcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28608.png + small + + https://s.yimg.com/iu/api/res/1.2/KN6FxbdY3U_xBBPaIpnQcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28608.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28395 + 28395 + + Kevin White + Kevin + White + Kevin + White + + nfl.p.28395 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/KozhNN08fdPij3tKU5BtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28395.png + small + + https://s.yimg.com/iu/api/res/1.2/KozhNN08fdPij3tKU5BtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28395.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.24108 + 24108 + + Michael Hoomanawanui + Michael + Hoomanawanui + Michael + Hoomanawanui + + IR + Injured Reserve + undisclosed + nfl.p.24108 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/M4DaFQtaQ4Uh8fzO_1xEpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/24108.png + small + + https://s.yimg.com/iu/api/res/1.2/M4DaFQtaQ4Uh8fzO_1xEpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/24108.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24965 + 24965 + + Aldrick Robinson + Aldrick + Robinson + Aldrick + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24965 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/LXDBf_eeaBykbP9YGaU76g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24965.png + small + + https://s.yimg.com/iu/api/res/1.2/LXDBf_eeaBykbP9YGaU76g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24965.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30165 + 30165 + + DeShone Kizer + DeShone + Kizer + DeShone + Kizer + + nfl.p.30165 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/qbD2yXt5BH4_1QkgE31nTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30165.png + small + + https://s.yimg.com/iu/api/res/1.2/qbD2yXt5BH4_1QkgE31nTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30165.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28633 + 28633 + + Tre McBride + Tre + McBride + Tre + McBride + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28633 + nfl.t.20 + New York Jets + NYJ + + 11 + + 7 + WR + + https://s.yimg.com/iu/api/res/1.2/9KPEGnWEd4mDMnnRLQYcPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28633.png + small + + https://s.yimg.com/iu/api/res/1.2/9KPEGnWEd4mDMnnRLQYcPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28633.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26685 + 26685 + + Christine Michael + Christine + Michael + Christine + Michael + + nfl.p.26685 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/Hb7mLpiSGZL5RizVH.gMRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26685.png + small + + https://s.yimg.com/iu/api/res/1.2/Hb7mLpiSGZL5RizVH.gMRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26685.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26950 + 26950 + + Josh Hill + Josh + Hill + Josh + Hill + + nfl.p.26950 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/X3DqLmYuYufE5ShyW9lKlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26950.png + small + + https://s.yimg.com/iu/api/res/1.2/X3DqLmYuYufE5ShyW9lKlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26950.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28634 + 28634 + + Geoff Swaim + Geoff + Swaim + Geoff + Swaim + + nfl.p.28634 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/4t1dxiljaVlJIhgUsWVtYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28634.png + small + + https://s.yimg.com/iu/api/res/1.2/4t1dxiljaVlJIhgUsWVtYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28634.png + 0 + O + + TE + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28505 + 28505 + + Blake Bell + Blake + Bell + Blake + Bell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28505 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/wZuzcyHyhZuYuWBXcN7b1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28505.png + small + + https://s.yimg.com/iu/api/res/1.2/wZuzcyHyhZuYuWBXcN7b1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28505.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25234 + 25234 + + Andre Holmes + Andre + Holmes + Andre + Holmes + + nfl.p.25234 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/HS0V8c1Sfe8ZfxPIQ9WJiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25234.png + small + + https://s.yimg.com/iu/api/res/1.2/HS0V8c1Sfe8ZfxPIQ9WJiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25234.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8416 + 8416 + + Brent Celek + Brent + Celek + Brent + Celek + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8416 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/xY0xljBcF9iYIHrkt53tyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8416.png + small + + https://s.yimg.com/iu/api/res/1.2/xY0xljBcF9iYIHrkt53tyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8416.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7306 + 7306 + + Darren Sproles + Darren + Sproles + Darren + Sproles + + nfl.p.7306 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/85lwt56v7Z3.7eVPfJ3NJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7306.png + small + + https://s.yimg.com/iu/api/res/1.2/85lwt56v7Z3.7eVPfJ3NJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7306.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.25828 + 25828 + + Jarius Wright + Jarius + Wright + Jarius + Wright + + nfl.p.25828 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/7zEhWtrzuH6vlBGjC7CV8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25828.png + small + + https://s.yimg.com/iu/api/res/1.2/7zEhWtrzuH6vlBGjC7CV8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25828.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28443 + 28443 + + Maxx Williams + Maxx + Williams + Maxx + Williams + + nfl.p.28443 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/5n8l7Gh8B4aTUdkR2BPPYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28443.png + small + + https://s.yimg.com/iu/api/res/1.2/5n8l7Gh8B4aTUdkR2BPPYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28443.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30301 + 30301 + + Elijah McGuire + Elijah + McGuire + Elijah + McGuire + + IR + Injured Reserve + foot + nfl.p.30301 + nfl.t.20 + New York Jets + NYJ + + 11 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/0Jws7m9RjQLbKwAwZAap1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30301.png + small + + https://s.yimg.com/iu/api/res/1.2/0Jws7m9RjQLbKwAwZAap1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30301.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28184 + 28184 + + Xavier Grimble + Xavier + Grimble + Xavier + Grimble + + Q + Questionable + nfl.p.28184 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/emuTMAWgcMsUhVoR2pVt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28184.png + small + + https://s.yimg.com/iu/api/res/1.2/emuTMAWgcMsUhVoR2pVt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28184.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26810 + 26810 + + Andre Ellington + Andre + Ellington + Andre + Ellington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26810 + nfl.t.34 + Houston Texans + Hou + + 10 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/NkGAgsA4bEbDALSzSgSAcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26810.png + small + + https://s.yimg.com/iu/api/res/1.2/NkGAgsA4bEbDALSzSgSAcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26810.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29374 + 29374 + + Tajae Sharpe + Tajae + Sharpe + Tajae + Sharpe + + nfl.p.29374 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/0LcNKF8ZqqLKCCyFeEiqGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29374.png + small + + https://s.yimg.com/iu/api/res/1.2/0LcNKF8ZqqLKCCyFeEiqGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29374.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31732 + 31732 + + Codey McElroy + Codey + McElroy + Codey + McElroy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31732 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 47 + WR,TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31743 + 31743 + + Kayaune Ross + Kayaune + Ross + Kayaune + Ross + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31743 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 11 + WR,TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30891 + 30891 + + Dan Arnold + Dan + Arnold + Dan + Arnold + + nfl.p.30891 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 85 + WR,TE + + https://s.yimg.com/iu/api/res/1.2/pMRvyf3wXQ3MpGTltfU1jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30891.png + small + + https://s.yimg.com/iu/api/res/1.2/pMRvyf3wXQ3MpGTltfU1jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30891.png + 0 + O + + WR + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29377 + 29377 + + DeAndre Washington + DeAndre + Washington + DeAndre + Washington + + Q + Questionable + nfl.p.29377 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/720GomJ83pcT74B4Pwvsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29377.png + small + + https://s.yimg.com/iu/api/res/1.2/720GomJ83pcT74B4Pwvsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29377.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7760 + 7760 + + Jay Cutler + Jay + Cutler + Jay + Cutler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7760 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/HOa2mZFG_jklfdGhkcJ.qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/7760.png + small + + https://s.yimg.com/iu/api/res/1.2/HOa2mZFG_jklfdGhkcJ.qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/7760.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29418 + 29418 + + Jerell Adams + Jerell + Adams + Jerell + Adams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29418 + nfl.t.19 + New York Giants + NYG + + 9 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/oAxIEunbU9BYb3UcSLjhnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29418.png + small + + https://s.yimg.com/iu/api/res/1.2/oAxIEunbU9BYb3UcSLjhnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29418.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29638 + 29638 + + Maurice Harris + Maurice + Harris + Maurice + Harris + + Q + Questionable + nfl.p.29638 + nfl.t.28 + Washington Redskins + Was + + 4 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/UEpcNQA4vEHQGIEx.da03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29638.png + small + + https://s.yimg.com/iu/api/res/1.2/UEpcNQA4vEHQGIEx.da03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29638.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29944 + 29944 + + Alex Ellis + Alex + Ellis + Alex + Ellis + + nfl.p.29944 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/I3B4GBEKLPB2u0Vt2pfqaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29944.png + small + + https://s.yimg.com/iu/api/res/1.2/I3B4GBEKLPB2u0Vt2pfqaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29944.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24608 + 24608 + + Logan Paulsen + Logan + Paulsen + Logan + Paulsen + + nfl.p.24608 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/qg1We9aFyz1iI6G.ZbgL3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24608.png + small + + https://s.yimg.com/iu/api/res/1.2/qg1We9aFyz1iI6G.ZbgL3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24608.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28559 + 28559 + + Nick Boyle + Nick + Boyle + Nick + Boyle + + nfl.p.28559 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/erSYVnnNAJyyWNmECDvw0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28559.png + small + + https://s.yimg.com/iu/api/res/1.2/erSYVnnNAJyyWNmECDvw0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28559.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27746 + 27746 + + Michael Campanaro + Michael + Campanaro + Michael + Campanaro + + IR + Injured Reserve + undisclosed + nfl.p.27746 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/xZwvY5XdJ8HKKaOTTiMrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27746.png + small + + https://s.yimg.com/iu/api/res/1.2/xZwvY5XdJ8HKKaOTTiMrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27746.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30551 + 30551 + + Kendrick Bourne + Kendrick + Bourne + Kendrick + Bourne + + nfl.p.30551 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/O6EYlj7YVcGNcuzPjwfK4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30551.png + small + + https://s.yimg.com/iu/api/res/1.2/O6EYlj7YVcGNcuzPjwfK4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30551.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28586 + 28586 + + Randall Telfer + Randall + Telfer + Randall + Telfer + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28586 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/VmrNtnWlpP2IMjBMU48u4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28586.png + small + + https://s.yimg.com/iu/api/res/1.2/VmrNtnWlpP2IMjBMU48u4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28586.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29324 + 29324 + + C.J. Prosise + C.J. + Prosise + C.J. + Prosise + + nfl.p.29324 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/waEsgxPKhUJYMKnkLpX2cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29324.png + small + + https://s.yimg.com/iu/api/res/1.2/waEsgxPKhUJYMKnkLpX2cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29324.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.25291 + 25291 + + Kyle Nelson + Kyle + Nelson + Kyle + Nelson + + nfl.p.25291 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/RcLkMAyRf_fe9bY7DJQyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25291.png + small + + https://s.yimg.com/iu/api/res/1.2/RcLkMAyRf_fe9bY7DJQyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25291.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29587 + 29587 + + Hakeem Valles + Hakeem + Valles + Hakeem + Valles + + nfl.p.29587 + nfl.t.8 + Detroit Lions + Det + + 6 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/zMnNylF459lXTQJ0K5tkyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29587.png + small + + https://s.yimg.com/iu/api/res/1.2/zMnNylF459lXTQJ0K5tkyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29587.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26820 + 26820 + + Cobi Hamilton + Cobi + Hamilton + Cobi + Hamilton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26820 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/uVxOSJ8I60crHxX.C4mlXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26820.png + small + + https://s.yimg.com/iu/api/res/1.2/uVxOSJ8I60crHxX.C4mlXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26820.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29406 + 29406 + + Rashard Higgins + Rashard + Higgins + Rashard + Higgins + + nfl.p.29406 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/WaXag5GQr3uOAQANhqVBCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29406.png + small + + https://s.yimg.com/iu/api/res/1.2/WaXag5GQr3uOAQANhqVBCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29406.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29659 + 29659 + + Nick Rose + Nick + Rose + Nick + Rose + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29659 + nfl.t.34 + Houston Texans + Hou + + 10 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/bwfWbKhbtPdbfp0rznF8Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29659.png + small + + https://s.yimg.com/iu/api/res/1.2/bwfWbKhbtPdbfp0rznF8Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29659.png + 0 + K + + K + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.100013 + 100013 + + Oakland + Oakland + + Oakland + + + nfl.p.100013 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/oak.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/oak.gif + 0 + DT + + DEF + + + 122.7 + 12.8 + 1.1 + 0.02 + + + week + 1 + 2 + 0 + + + + 380.p.29958 + 29958 + + Johnny Holton + Johnny + Holton + Johnny + Holton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29958 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/2Qk2ChoJkogrzJOVRu2nsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29958.png + small + + https://s.yimg.com/iu/api/res/1.2/2Qk2ChoJkogrzJOVRu2nsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29958.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29368 + 29368 + + Kenneth Dixon + Kenneth + Dixon + Kenneth + Dixon + + nfl.p.29368 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/d7DhpuFmthxEKZxNZY4k4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29368.png + small + + https://s.yimg.com/iu/api/res/1.2/d7DhpuFmthxEKZxNZY4k4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29368.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.8861 + 8861 + + Harry Douglas + Harry + Douglas + Harry + Douglas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8861 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/6HA.eMUsbj7ImGMu1eBmQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8861.png + small + + https://s.yimg.com/iu/api/res/1.2/6HA.eMUsbj7ImGMu1eBmQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8861.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28417 + 28417 + + Phillip Dorsett + Phillip + Dorsett + Phillip + Dorsett + + nfl.p.28417 + nfl.t.17 + New England Patriots + NE + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/qv_V85jTWZDkrzlTIn52eQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28417.png + small + + https://s.yimg.com/iu/api/res/1.2/qv_V85jTWZDkrzlTIn52eQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28417.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.26684 + 26684 + + Eddie Lacy + Eddie + Lacy + Eddie + Lacy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26684 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/YgNF47y72V0qZSBk78Mpsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26684.png + small + + https://s.yimg.com/iu/api/res/1.2/YgNF47y72V0qZSBk78Mpsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26684.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28669 + 28669 + + Eli Rogers + Eli + Rogers + Eli + Rogers + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.28669 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/RP2mB67WxhPNRijfLKGyYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28669.png + small + + https://s.yimg.com/iu/api/res/1.2/RP2mB67WxhPNRijfLKGyYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28669.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31135 + 31135 + + Jaylen Samuels + Jaylen + Samuels + Jaylen + Samuels + + nfl.p.31135 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 38 + RB,TE + + https://s.yimg.com/iu/api/res/1.2/WxmmSXAyDEvgLrVBtXW.Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31135.png + small + + https://s.yimg.com/iu/api/res/1.2/WxmmSXAyDEvgLrVBtXW.Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31135.png + 0 + O + + RB + TE + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.31257 + 31257 + + Tanner Hudson + Tanner + Hudson + Tanner + Hudson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31257 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 88 + RB,TE + + https://s.yimg.com/iu/api/res/1.2/f0GgrHg1vKMaFnWIG8KPCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31257.png + small + + https://s.yimg.com/iu/api/res/1.2/f0GgrHg1vKMaFnWIG8KPCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31257.png + 0 + O + + RB + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30231 + 30231 + + Mack Hollins + Mack + Hollins + Mack + Hollins + + O + Out + nfl.p.30231 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/YcQbWzgvYI1p3rkfGGajtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30231.png + small + + https://s.yimg.com/iu/api/res/1.2/YcQbWzgvYI1p3rkfGGajtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30231.png + 0 + O + + WR + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29648 + 29648 + + Malachi Jones + Malachi + Jones + Malachi + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29648 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29618 + 29618 + + Mose Frazier + Mose + Frazier + Mose + Frazier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29618 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/J475iR8GBCngiRtseqzNkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29618.png + small + + https://s.yimg.com/iu/api/res/1.2/J475iR8GBCngiRtseqzNkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29618.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29904 + 29904 + + Marcus Tucker + Marcus + Tucker + Marcus + Tucker + + IR + Injured Reserve + undisclosed + nfl.p.29904 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/0hnrz9Mu6kM6vNYiElDIpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29904.png + small + + https://s.yimg.com/iu/api/res/1.2/0hnrz9Mu6kM6vNYiElDIpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29904.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29836 + 29836 + + Rashawn Scott + Rashawn + Scott + Rashawn + Scott + + undisclosed + nfl.p.29836 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/f3m92C9dAJvZAsoWmRGacg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29836.png + small + + https://s.yimg.com/iu/api/res/1.2/f3m92C9dAJvZAsoWmRGacg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29836.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31626 + 31626 + + Jordan Veasy + Jordan + Veasy + Jordan + Veasy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31626 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31404 + 31404 + + De'Mornay Pierson-El + De'Mornay + Pierson-El + De'Mornay + Pierson-El + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31404 + nfl.t.28 + Washington Redskins + Was + + 4 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31083 + 31083 + + DaeSean Hamilton + DaeSean + Hamilton + DaeSean + Hamilton + + nfl.p.31083 + nfl.t.7 + Denver Broncos + Den + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/x4XOXCTh4FEeLNIO.sawdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31083.png + small + + https://s.yimg.com/iu/api/res/1.2/x4XOXCTh4FEeLNIO.sawdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31083.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31031 + 31031 + + D.J. Chark Jr. + D.J. + Chark Jr. + D.J. + Chark Jr. + + nfl.p.31031 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/cTW8_qFgDHjVNKDrcVMjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31031.png + small + + https://s.yimg.com/iu/api/res/1.2/cTW8_qFgDHjVNKDrcVMjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31031.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30288 + 30288 + + DeAngelo Yancey + DeAngelo + Yancey + DeAngelo + Yancey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30288 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/NO_MtL3095I8chjbkCBU3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30288.png + small + + https://s.yimg.com/iu/api/res/1.2/NO_MtL3095I8chjbkCBU3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30288.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30279 + 30279 + + Shelton Gibson + Shelton + Gibson + Shelton + Gibson + + nfl.p.30279 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/M28JJFDjG96bPkCr96srDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30279.png + small + + https://s.yimg.com/iu/api/res/1.2/M28JJFDjG96bPkCr96srDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30279.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31328 + 31328 + + Steven Dunbar + Steven + Dunbar + Steven + Dunbar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31328 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 7 + WR + + https://s.yimg.com/iu/api/res/1.2/RYT4XzQy9KKRszrL8Hbu9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31328.png + small + + https://s.yimg.com/iu/api/res/1.2/RYT4XzQy9KKRszrL8Hbu9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31328.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29710 + 29710 + + Alonzo Russell + Alonzo + Russell + Alonzo + Russell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29710 + nfl.t.19 + New York Giants + NYG + + 9 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/kSsWV0.1CBl3hJKQV7oVWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29710.png + small + + https://s.yimg.com/iu/api/res/1.2/kSsWV0.1CBl3hJKQV7oVWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29710.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28800 + 28800 + + DeAndrew White + DeAndrew + White + DeAndrew + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28800 + nfl.t.7 + Denver Broncos + Den + + 10 + + 5 + WR + + https://s.yimg.com/iu/api/res/1.2/UAbBZW8MqXWTNKS3UHw0Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28800.png + small + + https://s.yimg.com/iu/api/res/1.2/UAbBZW8MqXWTNKS3UHw0Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28800.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29605 + 29605 + + Mekale McKay + Mekale + McKay + Mekale + McKay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29605 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/jP0FAcV8MmHhyaPLD3.CCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29605.png + small + + https://s.yimg.com/iu/api/res/1.2/jP0FAcV8MmHhyaPLD3.CCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29605.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31588 + 31588 + + Vyncint Smith + Vyncint + Smith + Vyncint + Smith + + nfl.p.31588 + nfl.t.34 + Houston Texans + Hou + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28974 + 28974 + + Jake Kumerow + Jake + Kumerow + Jake + Kumerow + + IR + Injured Reserve + shoulder + nfl.p.28974 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/vCSfUOKOotx.v.UePUg3Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28974.png + small + + https://s.yimg.com/iu/api/res/1.2/vCSfUOKOotx.v.UePUg3Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28974.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29861 + 29861 + + K.J. Maye + K.J. + Maye + K.J. + Maye + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29861 + nfl.t.17 + New England Patriots + NE + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/LJfixlfw59ZrxKyY4a69dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29861.png + small + + https://s.yimg.com/iu/api/res/1.2/LJfixlfw59ZrxKyY4a69dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29861.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30959 + 30959 + + Brandon Zylstra + Brandon + Zylstra + Brandon + Zylstra + + nfl.p.30959 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/0FIbNaWQiiYTLhO.Lv9EBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30959.png + small + + https://s.yimg.com/iu/api/res/1.2/0FIbNaWQiiYTLhO.Lv9EBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30959.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31226 + 31226 + + Trey Quinn + Trey + Quinn + Trey + Quinn + + nfl.p.31226 + nfl.t.28 + Washington Redskins + Was + + 4 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/GKG4V1N7AS7DHn5tnjAtvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31226.png + small + + https://s.yimg.com/iu/api/res/1.2/GKG4V1N7AS7DHn5tnjAtvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31226.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31244 + 31244 + + Andre Levrone + Andre + Levrone + Andre + Levrone + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31244 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/ArTLJdRz1P.nvcf40RuABw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31244.png + small + + https://s.yimg.com/iu/api/res/1.2/ArTLJdRz1P.nvcf40RuABw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31244.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31574 + 31574 + + Anthony Mahoungou + Anthony + Mahoungou + Anthony + Mahoungou + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31574 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31180 + 31180 + + Braxton Berrios + Braxton + Berrios + Braxton + Berrios + + IR + Injured Reserve + undisclosed + nfl.p.31180 + nfl.t.17 + New England Patriots + NE + + 11 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/pRGlZZ9r6QeO9ZvIty1MdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31180.png + small + + https://s.yimg.com/iu/api/res/1.2/pRGlZZ9r6QeO9ZvIty1MdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31180.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30380 + 30380 + + Austin Duke + Austin + Duke + Austin + Duke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30380 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/HZlXlBLqDOioT0in6srMjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30380.png + small + + https://s.yimg.com/iu/api/res/1.2/HZlXlBLqDOioT0in6srMjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30380.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31322 + 31322 + + Jalen Tolliver + Jalen + Tolliver + Jalen + Tolliver + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31322 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/Cq0LpyyG01ShFS2BNbnbiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31322.png + small + + https://s.yimg.com/iu/api/res/1.2/Cq0LpyyG01ShFS2BNbnbiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31322.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30643 + 30643 + + Malcolm Lewis + Malcolm + Lewis + Malcolm + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30643 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/1BytA_aqF27FYenZiuH.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30643.png + small + + https://s.yimg.com/iu/api/res/1.2/1BytA_aqF27FYenZiuH.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30643.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27718 + 27718 + + Matt Hazel + Matt + Hazel + Matt + Hazel + + IR + Injured Reserve + undisclosed + nfl.p.27718 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/mZ7p4xgtAWmJsrxW1ip7DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27718.png + small + + https://s.yimg.com/iu/api/res/1.2/mZ7p4xgtAWmJsrxW1ip7DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27718.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31758 + 31758 + + Josh Crockett + Josh + Crockett + Josh + Crockett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31758 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28645 + 28645 + + Rasheed Bailey + Rasheed + Bailey + Rasheed + Bailey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28645 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/O6T779yZKpT5IvGOGXtO3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28645.png + small + + https://s.yimg.com/iu/api/res/1.2/O6T779yZKpT5IvGOGXtO3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28645.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30886 + 30886 + + Colby Pearson + Colby + Pearson + Colby + Pearson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30886 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/_XHUJMYcrVFJ_idUOIl4TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30886.png + small + + https://s.yimg.com/iu/api/res/1.2/_XHUJMYcrVFJ_idUOIl4TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30886.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31161 + 31161 + + Dylan Cantrell + Dylan + Cantrell + Dylan + Cantrell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31161 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/plOJbSQ4Ikjztub2OTXwQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31161.png + small + + https://s.yimg.com/iu/api/res/1.2/plOJbSQ4Ikjztub2OTXwQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31161.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31771 + 31771 + + Adonis Jennings + Adonis + Jennings + Adonis + Jennings + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31771 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30653 + 30653 + + Damore'ea Stringfellow + Damore'ea + Stringfellow + Damore'ea + Stringfellow + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30653 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/gQMSH_nh6SautUS8Jc_ugA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30653.png + small + + https://s.yimg.com/iu/api/res/1.2/gQMSH_nh6SautUS8Jc_ugA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30653.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30869 + 30869 + + Justin Thomas + Justin + Thomas + Justin + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30869 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/E_MKzvpacoVuMuSFzO8Y.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30869.png + small + + https://s.yimg.com/iu/api/res/1.2/E_MKzvpacoVuMuSFzO8Y.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30869.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30899 + 30899 + + Lance Lenoir + Lance + Lenoir + Lance + Lenoir + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30899 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/NhMZNP_.hJ8IbbLReR7vAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30899.png + small + + https://s.yimg.com/iu/api/res/1.2/NhMZNP_.hJ8IbbLReR7vAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30899.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31348 + 31348 + + Detrich Clark + Detrich + Clark + Detrich + Clark + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31348 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30512 + 30512 + + Quincy Adeboyejo + Quincy + Adeboyejo + Quincy + Adeboyejo + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30512 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/HUJk4DD14ZHtvTRlVHP3_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30512.png + small + + https://s.yimg.com/iu/api/res/1.2/HUJk4DD14ZHtvTRlVHP3_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30512.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28947 + 28947 + + DeAndre Carter + DeAndre + Carter + DeAndre + Carter + + nfl.p.28947 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/jc81pIyxzlmYTd4qiRGWnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28947.png + small + + https://s.yimg.com/iu/api/res/1.2/jc81pIyxzlmYTd4qiRGWnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28947.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31592 + 31592 + + Jester Weah + Jester + Weah + Jester + Weah + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31592 + nfl.t.34 + Houston Texans + Hou + + 10 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28834 + 28834 + + Shane Wynn + Shane + Wynn + Shane + Wynn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28834 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/tFnRFPvLqGdlQSJlmR3akg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28834.png + small + + https://s.yimg.com/iu/api/res/1.2/tFnRFPvLqGdlQSJlmR3akg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28834.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31683 + 31683 + + J.J. Jones + J.J. + Jones + J.J. + Jones + + nfl.p.31683 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30647 + 30647 + + Drew Morgan + Drew + Morgan + Drew + Morgan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30647 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/zZZvakjrmZRzJm5MTXCbNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30647.png + small + + https://s.yimg.com/iu/api/res/1.2/zZZvakjrmZRzJm5MTXCbNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30647.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30481 + 30481 + + Bobo Wilson + Bobo + Wilson + Bobo + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30481 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/9i48vcn_R1BrQwCdf_fFLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30481.png + small + + https://s.yimg.com/iu/api/res/1.2/9i48vcn_R1BrQwCdf_fFLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30481.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31768 + 31768 + + Aaron Lacombe + Aaron + Lacombe + Aaron + Lacombe + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31768 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30339 + 30339 + + David Moore + David + Moore + David + Moore + + nfl.p.30339 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/frH.BLkTInAkEZId21KWcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30339.png + small + + https://s.yimg.com/iu/api/res/1.2/frH.BLkTInAkEZId21KWcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30339.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30502 + 30502 + + Zach Pascal + Zach + Pascal + Zach + Pascal + + nfl.p.30502 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/crTZWSp.LrhSpnCLXgXf2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30502.png + small + + https://s.yimg.com/iu/api/res/1.2/crTZWSp.LrhSpnCLXgXf2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30502.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30930 + 30930 + + Marvin Bracy + Marvin + Bracy + Marvin + Bracy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30930 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31114 + 31114 + + Justin Watson + Justin + Watson + Justin + Watson + + nfl.p.31114 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/RW4C_zzZj8xQ5GS8FqGhxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31114.png + small + + https://s.yimg.com/iu/api/res/1.2/RW4C_zzZj8xQ5GS8FqGhxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31114.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31164 + 31164 + + Russell Gage + Russell + Gage + Russell + Gage + + nfl.p.31164 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/B61ci21KXb9l2gTjSO_29A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31164.png + small + + https://s.yimg.com/iu/api/res/1.2/B61ci21KXb9l2gTjSO_29A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31164.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31506 + 31506 + + Janarion Grant + Janarion + Grant + Janarion + Grant + + nfl.p.31506 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30450 + 30450 + + Deante Burton + Deante + Burton + Deante + Burton + + nfl.p.30450 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 39 + WR + + https://s.yimg.com/iu/api/res/1.2/k5K92p394rCRzyhcyc2WtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30450.png + small + + https://s.yimg.com/iu/api/res/1.2/k5K92p394rCRzyhcyc2WtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30450.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31350 + 31350 + + Dontez Byrd + Dontez + Byrd + Dontez + Byrd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31350 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/88M576cN5K75TmAMlXA_hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31350.png + small + + https://s.yimg.com/iu/api/res/1.2/88M576cN5K75TmAMlXA_hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31350.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31102 + 31102 + + Jaleel Scott + Jaleel + Scott + Jaleel + Scott + + IR + Injured Reserve + hamstring + nfl.p.31102 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/u7CS__jWUiSG1Euye3A2Hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31102.png + small + + https://s.yimg.com/iu/api/res/1.2/u7CS__jWUiSG1Euye3A2Hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31102.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30955 + 30955 + + River Cracraft + River + Cracraft + River + Cracraft + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30955 + nfl.t.7 + Denver Broncos + Den + + 10 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/dBeBasl0c3k9WVW9qZiOoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30955.png + small + + https://s.yimg.com/iu/api/res/1.2/dBeBasl0c3k9WVW9qZiOoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30955.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27928 + 27928 + + Seantavius Jones + Seantavius + Jones + Seantavius + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27928 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/tnv0zcbxdJhdrE0dt5H7gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27928.png + small + + https://s.yimg.com/iu/api/res/1.2/tnv0zcbxdJhdrE0dt5H7gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27928.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31030 + 31030 + + James Washington + James + Washington + James + Washington + + Q + Questionable + nfl.p.31030 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/aKCsY.3whLnalbSkB5dMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31030.png + small + + https://s.yimg.com/iu/api/res/1.2/aKCsY.3whLnalbSkB5dMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31030.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 6 + 0 + + + + 380.p.31551 + 31551 + + Jawill Davis + Jawill + Davis + Jawill + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31551 + nfl.t.19 + New York Giants + NYG + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31017 + 31017 + + Christian Kirk + Christian + Kirk + Christian + Kirk + + nfl.p.31017 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/TXALdXLBzDcc4gJsCcp5Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31017.png + small + + https://s.yimg.com/iu/api/res/1.2/TXALdXLBzDcc4gJsCcp5Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31017.png + 0 + O + + WR + + 1 + 1 + + - + - + - + - + + + week + 1 + 9 + 0 + + + + 380.p.29679 + 29679 + + Cayleb Jones + Cayleb + Jones + Cayleb + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29679 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/af527smQgGUXyzQr7ZDXiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29679.png + small + + https://s.yimg.com/iu/api/res/1.2/af527smQgGUXyzQr7ZDXiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29679.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29612 + 29612 + + Tevaun Smith + Tevaun + Smith + Tevaun + Smith + + IR + Injured Reserve + undisclosed + nfl.p.29612 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/VTSA0muYD9Mq6WBG3TNg0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29612.png + small + + https://s.yimg.com/iu/api/res/1.2/VTSA0muYD9Mq6WBG3TNg0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29612.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31625 + 31625 + + Devin Ross + Devin + Ross + Devin + Ross + + undisclosed + nfl.p.31625 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31543 + 31543 + + Quincy Redmon + Quincy + Redmon + Quincy + Redmon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31543 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29837 + 29837 + + Brandon Shippen + Brandon + Shippen + Brandon + Shippen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29837 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/hwsvXYTDaa8Nt54vyeqm1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29837.png + small + + https://s.yimg.com/iu/api/res/1.2/hwsvXYTDaa8Nt54vyeqm1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29837.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30432 + 30432 + + Artavis Scott + Artavis + Scott + Artavis + Scott + + IR + Injured Reserve + leg + nfl.p.30432 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/xtjlFdK51g8puvyXByKF4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30432.png + small + + https://s.yimg.com/iu/api/res/1.2/xtjlFdK51g8puvyXByKF4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30432.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30322 + 30322 + + Robert Davis + Robert + Davis + Robert + Davis + + IR + Injured Reserve + right knee + nfl.p.30322 + nfl.t.28 + Washington Redskins + Was + + 4 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/nwHHqG1NK0O2tNDAPkMhhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30322.png + small + + https://s.yimg.com/iu/api/res/1.2/nwHHqG1NK0O2tNDAPkMhhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30322.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31598 + 31598 + + Cam Phillips + Cam + Phillips + Cam + Phillips + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31598 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31198 + 31198 + + Marcell Ateman + Marcell + Ateman + Marcell + Ateman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31198 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/TcpIVjL3COgsQTV8D4ClGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31198.png + small + + https://s.yimg.com/iu/api/res/1.2/TcpIVjL3COgsQTV8D4ClGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31198.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31486 + 31486 + + Quadree Henderson + Quadree + Henderson + Quadree + Henderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31486 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31231 + 31231 + + Armanti Foreman + Armanti + Foreman + Armanti + Foreman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31231 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31601 + 31601 + + Robert Foster + Robert + Foster + Robert + Foster + + nfl.p.31601 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30729 + 30729 + + Kermit Whitfield + Kermit + Whitfield + Kermit + Whitfield + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30729 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/Q9Vi_9KbYS02fV4YSRlziQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30729.png + small + + https://s.yimg.com/iu/api/res/1.2/Q9Vi_9KbYS02fV4YSRlziQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30729.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30524 + 30524 + + Trey Griffey + Trey + Griffey + Trey + Griffey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30524 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/7RLnBjv6mLIXIA4kBzvz6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30524.png + small + + https://s.yimg.com/iu/api/res/1.2/7RLnBjv6mLIXIA4kBzvz6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30524.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31777 + 31777 + + Malik Turner + Malik + Turner + Malik + Turner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31777 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31399 + 31399 + + Shay Fields + Shay + Fields + Shay + Fields + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31399 + nfl.t.28 + Washington Redskins + Was + + 4 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/vD8hFMq9rOBmC1lfYdxC7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31399.png + small + + https://s.yimg.com/iu/api/res/1.2/vD8hFMq9rOBmC1lfYdxC7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31399.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31253 + 31253 + + Sergio Bailey II + Sergio + Bailey II + Sergio + Bailey II + + ankle + nfl.p.31253 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/SgSgpf5zsI0ywoSRUwxOPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31253.png + small + + https://s.yimg.com/iu/api/res/1.2/SgSgpf5zsI0ywoSRUwxOPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31253.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29463 + 29463 + + Demarcus Ayers + Demarcus + Ayers + Demarcus + Ayers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29463 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/.lnUntBqU1ELZKB5Ik0hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29463.png + small + + https://s.yimg.com/iu/api/res/1.2/.lnUntBqU1ELZKB5Ik0hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29463.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31075 + 31075 + + Antonio Callaway + Antonio + Callaway + Antonio + Callaway + + nfl.p.31075 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/SxbEUaHg4QlkD73goBhm0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31075.png + small + + https://s.yimg.com/iu/api/res/1.2/SxbEUaHg4QlkD73goBhm0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31075.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 4 + 0 + + + + 380.p.31479 + 31479 + + Saeed Blacknall + Saeed + Blacknall + Saeed + Blacknall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31479 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31772 + 31772 + + Jared Murphy + Jared + Murphy + Jared + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31772 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30610 + 30610 + + Montay Crockett + Montay + Crockett + Montay + Crockett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30610 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/y6AojMpN22ulalRjSSLwbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30610.png + small + + https://s.yimg.com/iu/api/res/1.2/y6AojMpN22ulalRjSSLwbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30610.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30350 + 30350 + + Isaiah Ford + Isaiah + Ford + Isaiah + Ford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30350 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/N31glEZev7khHhsCFzkBfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30350.png + small + + https://s.yimg.com/iu/api/res/1.2/N31glEZev7khHhsCFzkBfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30350.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31783 + 31783 + + Bryce Bobo + Bryce + Bobo + Bryce + Bobo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31783 + nfl.t.7 + Denver Broncos + Den + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31460 + 31460 + + Da'Mari Scott + Da'Mari + Scott + Da'Mari + Scott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31460 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31740 + 31740 + + Eldridge Massington + Eldridge + Massington + Eldridge + Massington + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31740 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31376 + 31376 + + John Diarse + John + Diarse + John + Diarse + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31376 + nfl.t.7 + Denver Broncos + Den + + 10 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/_JoABTdJntcKs86kz.7ftg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31376.png + small + + https://s.yimg.com/iu/api/res/1.2/_JoABTdJntcKs86kz.7ftg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31376.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30938 + 30938 + + Dan Williams III + Dan + Williams III + Dan + Williams III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30938 + nfl.t.28 + Washington Redskins + Was + + 4 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28793 + 28793 + + Dres Anderson + Dres + Anderson + Dres + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28793 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/2_yiZ5oKoKa2LXQGb9F28w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28793.png + small + + https://s.yimg.com/iu/api/res/1.2/2_yiZ5oKoKa2LXQGb9F28w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28793.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31659 + 31659 + + Garrett Johnson + Garrett + Johnson + Garrett + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31659 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30901 + 30901 + + Fred Brown + Fred + Brown + Fred + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30901 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/m8dhaov6s8RuXAzKEFeJJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30901.png + small + + https://s.yimg.com/iu/api/res/1.2/m8dhaov6s8RuXAzKEFeJJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30901.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30394 + 30394 + + Amba Etta-Tawo + Amba + Etta-Tawo + Amba + Etta-Tawo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30394 + nfl.t.19 + New York Giants + NYG + + 9 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/2yzQtCqZl6YYYZ4Gd4936w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30394.png + small + + https://s.yimg.com/iu/api/res/1.2/2yzQtCqZl6YYYZ4Gd4936w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30394.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29686 + 29686 + + Paul Turner + Paul + Turner + Paul + Turner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29686 + nfl.t.17 + New England Patriots + NE + + 11 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/IMg_J96MePU0h1S3Bl7uTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29686.png + small + + https://s.yimg.com/iu/api/res/1.2/IMg_J96MePU0h1S3Bl7uTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29686.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30682 + 30682 + + Marcus Kemp + Marcus + Kemp + Marcus + Kemp + + nfl.p.30682 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/2k6FkMjCEnQo66xs8FnYcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30682.png + small + + https://s.yimg.com/iu/api/res/1.2/2k6FkMjCEnQo66xs8FnYcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30682.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31225 + 31225 + + Austin Proehl + Austin + Proehl + Austin + Proehl + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31225 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/kOJXkOh3KO7mNI8InsGftA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31225.png + small + + https://s.yimg.com/iu/api/res/1.2/kOJXkOh3KO7mNI8InsGftA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31225.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31157 + 31157 + + Ray-Ray McCloud III + Ray-Ray + McCloud III + Ray-Ray + McCloud III + + Q + Questionable + nfl.p.31157 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/yipRjPeG6yuf9NFwcwTRpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31157.png + small + + https://s.yimg.com/iu/api/res/1.2/yipRjPeG6yuf9NFwcwTRpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31157.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30656 + 30656 + + Austin Carr + Austin + Carr + Austin + Carr + + nfl.p.30656 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/pQ1SSp1UopymViCzwlB9zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/30656.png + small + + https://s.yimg.com/iu/api/res/1.2/pQ1SSp1UopymViCzwlB9zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/30656.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31722 + 31722 + + Darvin Kidsy + Darvin + Kidsy + Darvin + Kidsy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31722 + nfl.t.28 + Washington Redskins + Was + + 4 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31210 + 31210 + + Richie James Jr. + Richie + James Jr. + Richie + James Jr. + + nfl.p.31210 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/sw9GZKHDUCgB1sZVXiUcEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31210.png + small + + https://s.yimg.com/iu/api/res/1.2/sw9GZKHDUCgB1sZVXiUcEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31210.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29953 + 29953 + + K.J. Brent + K.J. + Brent + K.J. + Brent + + IR + Injured Reserve + undisclosed + nfl.p.29953 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lnkqCa0Im9cD6LzFSrW07Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29953.png + small + + https://s.yimg.com/iu/api/res/1.2/lnkqCa0Im9cD6LzFSrW07Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29953.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31718 + 31718 + + Tim Wilson + Tim + Wilson + Tim + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31718 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31773 + 31773 + + Mark Chapman + Mark + Chapman + Mark + Chapman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31773 + nfl.t.7 + Denver Broncos + Den + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28840 + 28840 + + Jordan Leslie + Jordan + Leslie + Jordan + Leslie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28840 + nfl.t.7 + Denver Broncos + Den + + 10 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/pQ5hKv27V2FpqvXNdatu9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28840.png + small + + https://s.yimg.com/iu/api/res/1.2/pQ5hKv27V2FpqvXNdatu9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28840.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31268 + 31268 + + Allen Lazard + Allen + Lazard + Allen + Lazard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31268 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/DV1XK5ACFGHPzXPrhezYUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31268.png + small + + https://s.yimg.com/iu/api/res/1.2/DV1XK5ACFGHPzXPrhezYUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31268.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30715 + 30715 + + Greg Ward Jr. + Greg + Ward Jr. + Greg + Ward Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30715 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/u_5SH_ofKiIJZCu_xIf1xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30715.png + small + + https://s.yimg.com/iu/api/res/1.2/u_5SH_ofKiIJZCu_xIf1xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30715.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31227 + 31227 + + Jeff Badet + Jeff + Badet + Jeff + Badet + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31227 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/9ENbIa_JKmXL_Rt.wLiPOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31227.png + small + + https://s.yimg.com/iu/api/res/1.2/9ENbIa_JKmXL_Rt.wLiPOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31227.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30195 + 30195 + + Carlos Henderson + Carlos + Henderson + Carlos + Henderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30195 + nfl.t.7 + Denver Broncos + Den + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/4cjVtV8YlyB3Gv5AJcL48Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/30195.png + small + + https://s.yimg.com/iu/api/res/1.2/4cjVtV8YlyB3Gv5AJcL48Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/30195.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31383 + 31383 + + Jimmy Williams III + Jimmy + Williams III + Jimmy + Williams III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31383 + nfl.t.7 + Denver Broncos + Den + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/PJrB5TNExDsuftZjxgXBnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31383.png + small + + https://s.yimg.com/iu/api/res/1.2/PJrB5TNExDsuftZjxgXBnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31383.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29521 + 29521 + + Jamaal Jones + Jamaal + Jones + Jamaal + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29521 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/Zw6bO1RanyH6retmuBAZNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29521.png + small + + https://s.yimg.com/iu/api/res/1.2/Zw6bO1RanyH6retmuBAZNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29521.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31369 + 31369 + + Steve Ishmael + Steve + Ishmael + Steve + Ishmael + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31369 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/4Td_N_OtgLMXDFzrSb_mHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31369.png + small + + https://s.yimg.com/iu/api/res/1.2/4Td_N_OtgLMXDFzrSb_mHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31369.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30480 + 30480 + + Thomas Sperbeck + Thomas + Sperbeck + Thomas + Sperbeck + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30480 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/vtVHQ1J6esqbCejUK4Q_OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30480.png + small + + https://s.yimg.com/iu/api/res/1.2/vtVHQ1J6esqbCejUK4Q_OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30480.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30045 + 30045 + + Kendal Thompson + Kendal + Thompson + Kendal + Thompson + + IR + Injured Reserve + undisclosed + nfl.p.30045 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/sFdDh2IqByoQntGoug0JEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30045.png + small + + https://s.yimg.com/iu/api/res/1.2/sFdDh2IqByoQntGoug0JEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30045.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30487 + 30487 + + Krishawn Hogan + Krishawn + Hogan + Krishawn + Hogan + + IR + Injured Reserve + undisclosed + nfl.p.30487 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/pWGered4fNQYFnMwxzTccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30487.png + small + + https://s.yimg.com/iu/api/res/1.2/pWGered4fNQYFnMwxzTccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30487.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29459 + 29459 + + Devin Lucien + Devin + Lucien + Devin + Lucien + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29459 + nfl.t.17 + New England Patriots + NE + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/j.LPYvo8rS_2VSN0xjDOqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29459.png + small + + https://s.yimg.com/iu/api/res/1.2/j.LPYvo8rS_2VSN0xjDOqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29459.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27201 + 27201 + + Nick Williams + Nick + Williams + Nick + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27201 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/olu5PDBD5YAEbodLI8en8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27201.png + small + + https://s.yimg.com/iu/api/res/1.2/olu5PDBD5YAEbodLI8en8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27201.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30781 + 30781 + + Brian Brown + Brian + Brown + Brian + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30781 + nfl.t.8 + Detroit Lions + Det + + 6 + + 3 + WR + + https://s.yimg.com/iu/api/res/1.2/BY2XVlZ8VPYgUumz61duiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30781.png + small + + https://s.yimg.com/iu/api/res/1.2/BY2XVlZ8VPYgUumz61duiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30781.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29893 + 29893 + + Andy Jones + Andy + Jones + Andy + Jones + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.29893 + nfl.t.8 + Detroit Lions + Det + + 6 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/D._S9ew50m91GeCh9AN31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29893.png + small + + https://s.yimg.com/iu/api/res/1.2/D._S9ew50m91GeCh9AN31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29893.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31061 + 31061 + + Tre'Quan Smith + Tre'Quan + Smith + Tre'Quan + Smith + + nfl.p.31061 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/82_WsPqJo2NVn1zFBfGHCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31061.png + small + + https://s.yimg.com/iu/api/res/1.2/82_WsPqJo2NVn1zFBfGHCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31061.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.30410 + 30410 + + Travin Dural + Travin + Dural + Travin + Dural + + IR + Injured Reserve + broken arm + nfl.p.30410 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/Qy9bbqKNC9yawRfFf.caEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30410.png + small + + https://s.yimg.com/iu/api/res/1.2/Qy9bbqKNC9yawRfFf.caEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30410.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31760 + 31760 + + Josh Smith + Josh + Smith + Josh + Smith + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31760 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31701 + 31701 + + Damoun Patterson + Damoun + Patterson + Damoun + Patterson + + IR + Injured Reserve + undisclosed + nfl.p.31701 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31389 + 31389 + + LaQuvionte Gonzalez + LaQuvionte + Gonzalez + LaQuvionte + Gonzalez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31389 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/e6pfoavcCYp6L4bjbdjWhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31389.png + small + + https://s.yimg.com/iu/api/res/1.2/e6pfoavcCYp6L4bjbdjWhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31389.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31739 + 31739 + + Davon Grayson + Davon + Grayson + Davon + Grayson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31739 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30940 + 30940 + + Rashard Davis + Rashard + Davis + Rashard + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30940 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/N.wRne8u6okck8I6gXjhOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30940.png + small + + https://s.yimg.com/iu/api/res/1.2/N.wRne8u6okck8I6gXjhOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30940.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31665 + 31665 + + Shaq Roland + Shaq + Roland + Shaq + Roland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31665 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31646 + 31646 + + Darren Andrews + Darren + Andrews + Darren + Andrews + + O + Out + nfl.p.31646 + nfl.t.17 + New England Patriots + NE + + 11 + + + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31716 + 31716 + + C.J. Duncan + C.J. + Duncan + C.J. + Duncan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31716 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28550 + 28550 + + Kenny Bell + Kenny + Bell + Kenny + Bell + + NA + Inactive: Coach's Decision or Not on Roster + hamstring + nfl.p.28550 + nfl.t.7 + Denver Broncos + Den + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/PCyxnnZb.HZwtazBm0_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28550.png + small + + https://s.yimg.com/iu/api/res/1.2/PCyxnnZb.HZwtazBm0_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28550.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30637 + 30637 + + Isaac Whitney + Isaac + Whitney + Isaac + Whitney + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30637 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/D7v8OrhpCX6zlqjJTzpqsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30637.png + small + + https://s.yimg.com/iu/api/res/1.2/D7v8OrhpCX6zlqjJTzpqsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30637.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30513 + 30513 + + C.J. Board + C.J. + Board + C.J. + Board + + IR + Injured Reserve + undisclosed + nfl.p.30513 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lA56Vq3lb52Pd4l_SAUrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30513.png + small + + https://s.yimg.com/iu/api/res/1.2/lA56Vq3lb52Pd4l_SAUrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30513.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29682 + 29682 + + Hunter Sharp + Hunter + Sharp + Hunter + Sharp + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29682 + nfl.t.19 + New York Giants + NYG + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/Lx2WRNt4AbbeqDV..HGGAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29682.png + small + + https://s.yimg.com/iu/api/res/1.2/Lx2WRNt4AbbeqDV..HGGAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29682.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31240 + 31240 + + Korey Robertson + Korey + Robertson + Korey + Robertson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31240 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/gEvcVnNEefbom9nzTRWS.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31240.png + small + + https://s.yimg.com/iu/api/res/1.2/gEvcVnNEefbom9nzTRWS.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31240.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31641 + 31641 + + Brandon Powell + Brandon + Powell + Brandon + Powell + + nfl.p.31641 + nfl.t.8 + Detroit Lions + Det + + 6 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30482 + 30482 + + Carlton Agudosi + Carlton + Agudosi + Carlton + Agudosi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30482 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/6Fyj3_ZxqiiAMlBPyigLFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30482.png + small + + https://s.yimg.com/iu/api/res/1.2/6Fyj3_ZxqiiAMlBPyigLFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30482.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30382 + 30382 + + Fred Ross Jr. + Fred + Ross Jr. + Fred + Ross Jr. + + IR + Injured Reserve + undisclosed + nfl.p.30382 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/V2FvG5E2luyv5Y6ut1QcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30382.png + small + + https://s.yimg.com/iu/api/res/1.2/V2FvG5E2luyv5Y6ut1QcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30382.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30629 + 30629 + + Keon Hatcher + Keon + Hatcher + Keon + Hatcher + + nfl.p.30629 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/fRQD65PuqvNE.qomc_ydJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30629.png + small + + https://s.yimg.com/iu/api/res/1.2/fRQD65PuqvNE.qomc_ydJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30629.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30332 + 30332 + + Stacy Coley + Stacy + Coley + Stacy + Coley + + Q + Questionable + nfl.p.30332 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/FDNZK2JMvm7fgWWwnezRyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30332.png + small + + https://s.yimg.com/iu/api/res/1.2/FDNZK2JMvm7fgWWwnezRyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30332.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31132 + 31132 + + Jordan Lasley + Jordan + Lasley + Jordan + Lasley + + nfl.p.31132 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/.Kr_cJCgbgzYjV_eVK5E8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31132.png + small + + https://s.yimg.com/iu/api/res/1.2/.Kr_cJCgbgzYjV_eVK5E8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31132.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31465 + 31465 + + Taj Williams + Taj + Williams + Taj + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31465 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30679 + 30679 + + Gehrig Dieter + Gehrig + Dieter + Gehrig + Dieter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30679 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/L2_RzFBRJRlSGDK4wc5QyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30679.png + small + + https://s.yimg.com/iu/api/res/1.2/L2_RzFBRJRlSGDK4wc5QyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30679.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31517 + 31517 + + Keith Kirkwood + Keith + Kirkwood + Keith + Kirkwood + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31517 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31463 + 31463 + + Ka'Raun White + Ka'Raun + White + Ka'Raun + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31463 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30360 + 30360 + + Malachi Dupre + Malachi + Dupre + Malachi + Dupre + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30360 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/cS28ndGjLjAkyXHkSFI9IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30360.png + small + + https://s.yimg.com/iu/api/res/1.2/cS28ndGjLjAkyXHkSFI9IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30360.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30660 + 30660 + + Cody Hollister + Cody + Hollister + Cody + Hollister + + O + Out + nfl.p.30660 + nfl.t.17 + New England Patriots + NE + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/iTWFS46piZH43bN_vA1j0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30660.png + small + + https://s.yimg.com/iu/api/res/1.2/iTWFS46piZH43bN_vA1j0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30660.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30734 + 30734 + + Keeon Johnson + Keeon + Johnson + Keeon + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30734 + nfl.t.19 + New York Giants + NYG + + 9 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/lFLhXR77qicyEUQhHgvhyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30734.png + small + + https://s.yimg.com/iu/api/res/1.2/lFLhXR77qicyEUQhHgvhyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30734.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31247 + 31247 + + Jaelon Acklin + Jaelon + Acklin + Jaelon + Acklin + + undisclosed + nfl.p.31247 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/tBK9ZyI0jYRvps28T9clkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31247.png + small + + https://s.yimg.com/iu/api/res/1.2/tBK9ZyI0jYRvps28T9clkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31247.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29743 + 29743 + + Nelson Spruce + Nelson + Spruce + Nelson + Spruce + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29743 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 5 + WR + + https://s.yimg.com/iu/api/res/1.2/yyMRB8HsT9o5PKTrQFTakg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29743.png + small + + https://s.yimg.com/iu/api/res/1.2/yyMRB8HsT9o5PKTrQFTakg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29743.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31624 + 31624 + + Deontay Burnett + Deontay + Burnett + Deontay + Burnett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31624 + nfl.t.20 + New York Jets + NYJ + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31796 + 31796 + + Darius Prince + Darius + Prince + Darius + Prince + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31796 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31496 + 31496 + + Byron Pringle + Byron + Pringle + Byron + Pringle + + IR + Injured Reserve + undisclosed + nfl.p.31496 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30609 + 30609 + + Michael Clark + Michael + Clark + Michael + Clark + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30609 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/wnJ0_aeBaZFydCb43Iqj3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30609.png + small + + https://s.yimg.com/iu/api/res/1.2/wnJ0_aeBaZFydCb43Iqj3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30609.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28520 + 28520 + + DeAndre Smelter + DeAndre + Smelter + DeAndre + Smelter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28520 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/9H1nEKoQrtDeQPaJngtXcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28520.png + small + + https://s.yimg.com/iu/api/res/1.2/9H1nEKoQrtDeQPaJngtXcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28520.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25778 + 25778 + + DeVier Posey + DeVier + Posey + DeVier + Posey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25778 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/Sa1HNZSZmtKopwa0d38RGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25778.png + small + + https://s.yimg.com/iu/api/res/1.2/Sa1HNZSZmtKopwa0d38RGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25778.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29416 + 29416 + + Keenan Reynolds + Keenan + Reynolds + Keenan + Reynolds + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29416 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/.qw7m1MEJXD6DfTyncJj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29416.png + small + + https://s.yimg.com/iu/api/res/1.2/.qw7m1MEJXD6DfTyncJj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29416.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31347 + 31347 + + Christian Blake + Christian + Blake + Christian + Blake + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31347 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/Qa44q9ECd_FjTKsTw78JaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31347.png + small + + https://s.yimg.com/iu/api/res/1.2/Qa44q9ECd_FjTKsTw78JaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31347.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30511 + 30511 + + Tim Patrick + Tim + Patrick + Tim + Patrick + + nfl.p.30511 + nfl.t.7 + Denver Broncos + Den + + 10 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/TEwm18Y0aD7ultplswb8Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30511.png + small + + https://s.yimg.com/iu/api/res/1.2/TEwm18Y0aD7ultplswb8Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30511.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30827 + 30827 + + Reggie Davis + Reggie + Davis + Reggie + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30827 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/Mvdd66yOLyaVHbxkQ5j1sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30827.png + small + + https://s.yimg.com/iu/api/res/1.2/Mvdd66yOLyaVHbxkQ5j1sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30827.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26859 + 26859 + + Marquess Wilson + Marquess + Wilson + Marquess + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26859 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/xJNVrP1KLEv18c7VXA0rtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26859.png + small + + https://s.yimg.com/iu/api/res/1.2/xJNVrP1KLEv18c7VXA0rtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26859.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30767 + 30767 + + Dontez Ford + Dontez + Ford + Dontez + Ford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30767 + nfl.t.8 + Detroit Lions + Det + + 6 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/tIg_jqDTghK04MPcFRKkow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30767.png + small + + https://s.yimg.com/iu/api/res/1.2/tIg_jqDTghK04MPcFRKkow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30767.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29961 + 29961 + + Max McCaffrey + Max + McCaffrey + Max + McCaffrey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29961 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/.Qbp4GFjShk85Y4V7HdlTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29961.png + small + + https://s.yimg.com/iu/api/res/1.2/.Qbp4GFjShk85Y4V7HdlTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29961.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29472 + 29472 + + Devin Fuller + Devin + Fuller + Devin + Fuller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29472 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/eE3VJvVBEvlUaptNOx9tFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/29472.png + small + + https://s.yimg.com/iu/api/res/1.2/eE3VJvVBEvlUaptNOx9tFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/29472.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27305 + 27305 + + Rashad Ross + Rashad + Ross + Rashad + Ross + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27305 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/Z.IqfnRbdiJRQTWeFCeNvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27305.png + small + + https://s.yimg.com/iu/api/res/1.2/Z.IqfnRbdiJRQTWeFCeNvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27305.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29464 + 29464 + + Daniel Braverman + Daniel + Braverman + Daniel + Braverman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29464 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/jbEw5_yO.c0PrJZThFqcRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29464.png + small + + https://s.yimg.com/iu/api/res/1.2/jbEw5_yO.c0PrJZThFqcRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29464.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28425 + 28425 + + Devin Smith + Devin + Smith + Devin + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28425 + nfl.t.20 + New York Jets + NYJ + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/XL16na120FCtv1rnrMvFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28425.1.png + small + + https://s.yimg.com/iu/api/res/1.2/XL16na120FCtv1rnrMvFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28425.1.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31391 + 31391 + + Steven Mitchell Jr. + Steven + Mitchell Jr. + Steven + Mitchell Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31391 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/ggq.9JS8QWMbZpmkormaHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31391.png + small + + https://s.yimg.com/iu/api/res/1.2/ggq.9JS8QWMbZpmkormaHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31391.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31462 + 31462 + + Derrick Willies + Derrick + Willies + Derrick + Willies + + nfl.p.31462 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30019 + 30019 + + Marquis Bundy + Marquis + Bundy + Marquis + Bundy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30019 + nfl.t.19 + New York Giants + NYG + + 9 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/EzRWpnsQXT5nJJ5_gpPGXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30019.png + small + + https://s.yimg.com/iu/api/res/1.2/EzRWpnsQXT5nJJ5_gpPGXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30019.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31782 + 31782 + + Marcus Peterson + Marcus + Peterson + Marcus + Peterson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31782 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31194 + 31194 + + Javon Wims + Javon + Wims + Javon + Wims + + nfl.p.31194 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/5UdMtYH12ebQMYTM8mNXDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31194.png + small + + https://s.yimg.com/iu/api/res/1.2/5UdMtYH12ebQMYTM8mNXDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31194.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27976 + 27976 + + Jeremy Butler + Jeremy + Butler + Jeremy + Butler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27976 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/RmNvhY_6R7em59XDYg4P9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27976.png + small + + https://s.yimg.com/iu/api/res/1.2/RmNvhY_6R7em59XDYg4P9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27976.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31557 + 31557 + + Devonte Boyd + Devonte + Boyd + Devonte + Boyd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31557 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30598 + 30598 + + Brandon Reilly + Brandon + Reilly + Brandon + Reilly + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30598 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/NF6in_li0yUpz4uy4bmjDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30598.png + small + + https://s.yimg.com/iu/api/res/1.2/NF6in_li0yUpz4uy4bmjDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30598.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31281 + 31281 + + Malik Earl + Malik + Earl + Malik + Earl + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31281 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30111 + 30111 + + Cyril Grayson Jr. + Cyril + Grayson Jr. + Cyril + Grayson Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30111 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/4M8W_HrAsL0OxxwI4b.Zhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30111.png + small + + https://s.yimg.com/iu/api/res/1.2/4M8W_HrAsL0OxxwI4b.Zhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30111.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31177 + 31177 + + Equanimeous St. Brown + Equanimeous + St. Brown + Equanimeous + St. Brown + + nfl.p.31177 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/ga0OIgAj8QendGAbBM8j8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31177.png + small + + https://s.yimg.com/iu/api/res/1.2/ga0OIgAj8QendGAbBM8j8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31177.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31492 + 31492 + + Elijah Marks + Elijah + Marks + Elijah + Marks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31492 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31793 + 31793 + + Austin Wolf + Austin + Wolf + Austin + Wolf + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31793 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31014 + 31014 + + Dante Pettis + Dante + Pettis + Dante + Pettis + + Q + Questionable + nfl.p.31014 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/QC5fqGY9bNuZq8wT8h3k_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31014.png + small + + https://s.yimg.com/iu/api/res/1.2/QC5fqGY9bNuZq8wT8h3k_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31014.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30570 + 30570 + + Brisly Estime + Brisly + Estime + Brisly + Estime + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30570 + nfl.t.20 + New York Jets + NYJ + + 11 + + 3 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24846 + 24846 + + Greg Little + Greg + Little + Greg + Little + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24846 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/P17RCCrbf2Z2VaWriz6O3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24846.png + small + + https://s.yimg.com/iu/api/res/1.2/P17RCCrbf2Z2VaWriz6O3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24846.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31275 + 31275 + + Erv Philips + Erv + Philips + Erv + Philips + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31275 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/13OCr9HxQZQmlDifCpIyoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31275.png + small + + https://s.yimg.com/iu/api/res/1.2/13OCr9HxQZQmlDifCpIyoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31275.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29038 + 29038 + + Darius Jennings + Darius + Jennings + Darius + Jennings + + nfl.p.29038 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/migdBS9e_lOzgNWa.WUE7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29038.png + small + + https://s.yimg.com/iu/api/res/1.2/migdBS9e_lOzgNWa.WUE7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29038.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31129 + 31129 + + Reece Fountain + Reece + Fountain + Reece + Fountain + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31129 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/DBGioAxxno3tcsx04jiYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31129.png + small + + https://s.yimg.com/iu/api/res/1.2/DBGioAxxno3tcsx04jiYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31129.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31508 + 31508 + + Chad Beebe + Chad + Beebe + Chad + Beebe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31508 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29496 + 29496 + + Canaan Severin + Canaan + Severin + Canaan + Severin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29496 + nfl.t.19 + New York Giants + NYG + + 9 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/qhQap30cS.CEzvj8FLfASw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29496.png + small + + https://s.yimg.com/iu/api/res/1.2/qhQap30cS.CEzvj8FLfASw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29496.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31401 + 31401 + + Mikah Holder + Mikah + Holder + Mikah + Holder + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31401 + nfl.t.28 + Washington Redskins + Was + + 4 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29533 + 29533 + + Dom Williams + Dom + Williams + Dom + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29533 + nfl.t.8 + Detroit Lions + Det + + 6 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/0BKTslKRhyX_1hKqiU_CAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29533.png + small + + https://s.yimg.com/iu/api/res/1.2/0BKTslKRhyX_1hKqiU_CAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29533.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29795 + 29795 + + Tevin Jones + Tevin + Jones + Tevin + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29795 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/wp50yh8pVosH_nkN4_bpkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29795.png + small + + https://s.yimg.com/iu/api/res/1.2/wp50yh8pVosH_nkN4_bpkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29795.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31103 + 31103 + + J'Mon Moore + J'Mon + Moore + J'Mon + Moore + + nfl.p.31103 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/89FUCFR94cYfC_zCTCRYkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31103.png + small + + https://s.yimg.com/iu/api/res/1.2/89FUCFR94cYfC_zCTCRYkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31103.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31450 + 31450 + + Evan Berry + Evan + Berry + Evan + Berry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31450 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31464 + 31464 + + Caleb Scott + Caleb + Scott + Caleb + Scott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31464 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31651 + 31651 + + Chris Lacy + Chris + Lacy + Chris + Lacy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31651 + nfl.t.8 + Detroit Lions + Det + + 6 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31351 + 31351 + + Lamar Jordan + Lamar + Jordan + Lamar + Jordan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31351 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/uQr4xm1CCmDl.oWdELz0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31351.png + small + + https://s.yimg.com/iu/api/res/1.2/uQr4xm1CCmDl.oWdELz0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31351.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31397 + 31397 + + Simmie Cobbs Jr. + Simmie + Cobbs Jr. + Simmie + Cobbs Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31397 + nfl.t.28 + Washington Redskins + Was + + 4 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/euxBmhF13wJo0HtyoM1poA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31397.png + small + + https://s.yimg.com/iu/api/res/1.2/euxBmhF13wJo0HtyoM1poA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31397.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31608 + 31608 + + Elijaah Goins + Elijaah + Goins + Elijaah + Goins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31608 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30553 + 30553 + + K.D. Cannon + K.D. + Cannon + K.D. + Cannon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30553 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/AIpRVhBCDXkwmWiCbGyDSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30553.png + small + + https://s.yimg.com/iu/api/res/1.2/AIpRVhBCDXkwmWiCbGyDSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30553.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31705 + 31705 + + Deontez Alexander + Deontez + Alexander + Deontez + Alexander + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31705 + nfl.t.8 + Detroit Lions + Det + + 6 + + 3 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31525 + 31525 + + Jordan Smallwood + Jordan + Smallwood + Jordan + Smallwood + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31525 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31148 + 31148 + + Damion Ratley + Damion + Ratley + Damion + Ratley + + nfl.p.31148 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/HcUd5d0NHnqJASxhLyV0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31148.png + small + + https://s.yimg.com/iu/api/res/1.2/HcUd5d0NHnqJASxhLyV0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31148.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30942 + 30942 + + Justice Liggins + Justice + Liggins + Justice + Liggins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30942 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/M3DaYKWC9DcWoghOG1Ls4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30942.png + small + + https://s.yimg.com/iu/api/res/1.2/M3DaYKWC9DcWoghOG1Ls4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30942.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29069 + 29069 + + Donteea Dye + Donteea + Dye + Donteea + Dye + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29069 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/2gcZ14UzrIIrU6r4y9rTYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29069.png + small + + https://s.yimg.com/iu/api/res/1.2/2gcZ14UzrIIrU6r4y9rTYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29069.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31178 + 31178 + + Cedrick Wilson + Cedrick + Wilson + Cedrick + Wilson + + IR + Injured Reserve + shoulder + nfl.p.31178 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/O_hsCEg2e1LEz3VqeM21ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31178.png + small + + https://s.yimg.com/iu/api/res/1.2/O_hsCEg2e1LEz3VqeM21ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31178.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29868 + 29868 + + Darius Powe + Darius + Powe + Darius + Powe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29868 + nfl.t.19 + New York Giants + NYG + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/0eCbKa0ti7yV.DYMHMOcZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29868.png + small + + https://s.yimg.com/iu/api/res/1.2/0eCbKa0ti7yV.DYMHMOcZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29868.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31320 + 31320 + + Trent Sherfield + Trent + Sherfield + Trent + Sherfield + + nfl.p.31320 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/xv0TN9fgtDNMu2I29iJEwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31320.png + small + + https://s.yimg.com/iu/api/res/1.2/xv0TN9fgtDNMu2I29iJEwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31320.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31327 + 31327 + + Corey Willis + Corey + Willis + Corey + Willis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31327 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/Wt_TJGaQS4lQQ6m3ZE9MLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31327.png + small + + https://s.yimg.com/iu/api/res/1.2/Wt_TJGaQS4lQQ6m3ZE9MLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31327.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30510 + 30510 + + Tim White + Tim + White + Tim + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30510 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/YFJAwjoyJ9IH9KdyHMN52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30510.png + small + + https://s.yimg.com/iu/api/res/1.2/YFJAwjoyJ9IH9KdyHMN52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30510.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31797 + 31797 + + Allenzae Staggers + Allenzae + Staggers + Allenzae + Staggers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31797 + nfl.t.28 + Washington Redskins + Was + + 4 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29426 + 29426 + + Kolby Listenbee + Kolby + Listenbee + Kolby + Listenbee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29426 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/sYD_xIcoqgbq3heqqtZDaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29426.1.png + small + + https://s.yimg.com/iu/api/res/1.2/sYD_xIcoqgbq3heqqtZDaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29426.1.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31799 + 31799 + + Julian Williams + Julian + Williams + Julian + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31799 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30430 + 30430 + + Andre Patton + Andre + Patton + Andre + Patton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30430 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/4BQz1a99ijLrimlqdIOhiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30430.png + small + + https://s.yimg.com/iu/api/res/1.2/4BQz1a99ijLrimlqdIOhiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30430.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31623 + 31623 + + Cameron Batson + Cameron + Batson + Cameron + Batson + + nfl.p.31623 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31775 + 31775 + + Blake Jackson + Blake + Jackson + Blake + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31775 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28574 + 28574 + + Geremy Davis + Geremy + Davis + Geremy + Davis + + nfl.p.28574 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/CA4bE5CgMNkBZKv3GxTXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28574.png + small + + https://s.yimg.com/iu/api/res/1.2/CA4bE5CgMNkBZKv3GxTXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28574.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31405 + 31405 + + Cam Sims + Cam + Sims + Cam + Sims + + nfl.p.31405 + nfl.t.28 + Washington Redskins + Was + + 4 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/xv1QthX6i8XZhRpyy1ShVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31405.png + small + + https://s.yimg.com/iu/api/res/1.2/xv1QthX6i8XZhRpyy1ShVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31405.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30808 + 30808 + + Riley McCarron + Riley + McCarron + Riley + McCarron + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30808 + nfl.t.17 + New England Patriots + NE + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/4VFunyTRSB7Zoe6ovWA4pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30808.png + small + + https://s.yimg.com/iu/api/res/1.2/4VFunyTRSB7Zoe6ovWA4pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30808.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31794 + 31794 + + Darren Carrington II + Darren + Carrington II + Darren + Carrington II + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31794 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31271 + 31271 + + Dorren Miller + Dorren + Miller + Dorren + Miller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31271 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/N80BmltGVRaBrMwhOUrDWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31271.png + small + + https://s.yimg.com/iu/api/res/1.2/N80BmltGVRaBrMwhOUrDWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31271.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30964 + 30964 + + Lamar Atkins + Lamar + Atkins + Lamar + Atkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30964 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 45 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31155 + 31155 + + Deon Cain + Deon + Cain + Deon + Cain + + IR + Injured Reserve + torn ACL + nfl.p.31155 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/D99kY0arNW2G99PbF77z4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31155.png + small + + https://s.yimg.com/iu/api/res/1.2/D99kY0arNW2G99PbF77z4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31155.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31711 + 31711 + + Matt Fleming + Matt + Fleming + Matt + Fleming + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31711 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31349 + 31349 + + Devin Gray + Devin + Gray + Devin + Gray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31349 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 7 + WR + + https://s.yimg.com/iu/api/res/1.2/1k5xhe3q3UGpbDK3FCLD.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31349.png + small + + https://s.yimg.com/iu/api/res/1.2/1k5xhe3q3UGpbDK3FCLD.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31349.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31769 + 31769 + + KhaDarel Hodge + KhaDarel + Hodge + KhaDarel + Hodge + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31769 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30648 + 30648 + + Francis Owusu + Francis + Owusu + Francis + Owusu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30648 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/neg72B5sUMdKHxO.XHQTRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30648.png + small + + https://s.yimg.com/iu/api/res/1.2/neg72B5sUMdKHxO.XHQTRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30648.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31073 + 31073 + + Keke Coutee + Keke + Coutee + Keke + Coutee + + Q + Questionable + nfl.p.31073 + nfl.t.34 + Houston Texans + Hou + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/VdM4JA.Ml8JS2mI2tfHmbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31073.png + small + + https://s.yimg.com/iu/api/res/1.2/VdM4JA.Ml8JS2mI2tfHmbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31073.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31323 + 31323 + + Jonah Trinnaman + Jonah + Trinnaman + Jonah + Trinnaman + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31323 + nfl.t.20 + New York Jets + NYJ + + 11 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/rcDI9OxhdJJVPkQgAdjp9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31323.png + small + + https://s.yimg.com/iu/api/res/1.2/rcDI9OxhdJJVPkQgAdjp9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31323.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31144 + 31144 + + Marquez Valdes-Scantling + Marquez + Valdes-Scantling + Marquez + Valdes-Scantling + + nfl.p.31144 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/4TvrpPxrvGaBRPY68LLTvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31144.png + small + + https://s.yimg.com/iu/api/res/1.2/4TvrpPxrvGaBRPY68LLTvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31144.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29772 + 29772 + + Jace Billingsley + Jace + Billingsley + Jace + Billingsley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29772 + nfl.t.17 + New England Patriots + NE + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/3f2Igm1h_8S7IBWGUxc_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29772.png + small + + https://s.yimg.com/iu/api/res/1.2/3f2Igm1h_8S7IBWGUxc_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29772.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31282 + 31282 + + Marchie Murdock + Marchie + Murdock + Marchie + Murdock + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31282 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/u_Nfu.71EWLqeTMStex4mg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31282.png + small + + https://s.yimg.com/iu/api/res/1.2/u_Nfu.71EWLqeTMStex4mg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31282.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31223 + 31223 + + Auden Tate + Auden + Tate + Auden + Tate + + nfl.p.31223 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/zGSdDwHV2N13lwUIXBQfcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31223.png + small + + https://s.yimg.com/iu/api/res/1.2/zGSdDwHV2N13lwUIXBQfcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31223.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31388 + 31388 + + Ricky Jeune + Ricky + Jeune + Ricky + Jeune + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31388 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/gMhEEObTHJDLEQdZgH190g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31388.png + small + + https://s.yimg.com/iu/api/res/1.2/gMhEEObTHJDLEQdZgH190g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31388.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31242 + 31242 + + Jake Wieneke + Jake + Wieneke + Jake + Wieneke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31242 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/R93_Idn2ecNFDvT9prZTTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31242.png + small + + https://s.yimg.com/iu/api/res/1.2/R93_Idn2ecNFDvT9prZTTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31242.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27422 + 27422 + + Marlon Brown + Marlon + Brown + Marlon + Brown + + IR + Injured Reserve + undisclosed + nfl.p.27422 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/ESjNGTXsQJirKpwBnmU5PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27422.png + small + + https://s.yimg.com/iu/api/res/1.2/ESjNGTXsQJirKpwBnmU5PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27422.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30526 + 30526 + + Bug Howard + Bug + Howard + Bug + Howard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30526 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/FuGRt3x28RaghQJu8y38Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30526.png + small + + https://s.yimg.com/iu/api/res/1.2/FuGRt3x28RaghQJu8y38Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30526.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31642 + 31642 + + Teo Redding + Teo + Redding + Teo + Redding + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31642 + nfl.t.8 + Detroit Lions + Det + + 6 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27103 + 27103 + + Brandon Williams + Brandon + Williams + Brandon + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27103 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/HJ.221ncEUlniHTGrmd2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27103.png + small + + https://s.yimg.com/iu/api/res/1.2/HJ.221ncEUlniHTGrmd2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27103.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28617 + 28617 + + Ben Koyack + Ben + Koyack + Ben + Koyack + + IR + Injured Reserve + undisclosed + nfl.p.28617 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/uL.tWc9IYDbluE6.6j4BOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28617.png + small + + https://s.yimg.com/iu/api/res/1.2/uL.tWc9IYDbluE6.6j4BOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28617.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27614 + 27614 + + Josh Huff + Josh + Huff + Josh + Huff + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27614 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/VUt5bXAdO.E9JYekUgKCWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27614.png + small + + https://s.yimg.com/iu/api/res/1.2/VUt5bXAdO.E9JYekUgKCWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27614.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29791 + 29791 + + Jalin Marshall + Jalin + Marshall + Jalin + Marshall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29791 + nfl.t.20 + New York Jets + NYJ + + 11 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/W6bkXGkal3aHsEINtW5JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29791.png + small + + https://s.yimg.com/iu/api/res/1.2/W6bkXGkal3aHsEINtW5JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29791.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.24932 + 24932 + + Jacquizz Rodgers + Jacquizz + Rodgers + Jacquizz + Rodgers + + nfl.p.24932 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/5._MHO_DZrjKUTdDY0SZaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24932.png + small + + https://s.yimg.com/iu/api/res/1.2/5._MHO_DZrjKUTdDY0SZaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24932.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28714 + 28714 + + Thomas Rawls + Thomas + Rawls + Thomas + Rawls + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28714 + nfl.t.20 + New York Jets + NYJ + + 11 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/3dXS8mM.RksF8BzQ.tUypQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28714.png + small + + https://s.yimg.com/iu/api/res/1.2/3dXS8mM.RksF8BzQ.tUypQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28714.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26631 + 26631 + + Tavon Austin + Tavon + Austin + Tavon + Austin + + nfl.p.26631 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 10 + WR,RB + + https://s.yimg.com/iu/api/res/1.2/HbQqn0bg_TfqrI2AnK1mNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26631.png + small + + https://s.yimg.com/iu/api/res/1.2/HbQqn0bg_TfqrI2AnK1mNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26631.png + 0 + O + + WR + RB + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.24946 + 24946 + + Lee Smith + Lee + Smith + Lee + Smith + + nfl.p.24946 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/WwU54ByJrceP3rJPsSGdSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24946.png + small + + https://s.yimg.com/iu/api/res/1.2/WwU54ByJrceP3rJPsSGdSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24946.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26428 + 26428 + + Rod Streater + Rod + Streater + Rod + Streater + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26428 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/394mkg2tfnPUBh6fEih52A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26428.png + small + + https://s.yimg.com/iu/api/res/1.2/394mkg2tfnPUBh6fEih52A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26428.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27055 + 27055 + + Russell Shepard + Russell + Shepard + Russell + Shepard + + nfl.p.27055 + nfl.t.19 + New York Giants + NYG + + 9 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/JiiIwX4o85.KcF.bYLbizA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27055.png + small + + https://s.yimg.com/iu/api/res/1.2/JiiIwX4o85.KcF.bYLbizA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27055.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28458 + 28458 + + Jaelen Strong + Jaelen + Strong + Jaelen + Strong + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28458 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/YHFBZbEg4RlftjmBxRb4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28458.png + small + + https://s.yimg.com/iu/api/res/1.2/YHFBZbEg4RlftjmBxRb4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28458.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30153 + 30153 + + Curtis Samuel + Curtis + Samuel + Curtis + Samuel + + D + Doubtful + nfl.p.30153 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/xFyRRdF35.hM.yvSpzxzPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30153.png + small + + https://s.yimg.com/iu/api/res/1.2/xFyRRdF35.hM.yvSpzxzPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30153.png + 0 + O + + WR + + 1 + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27938 + 27938 + + Philly Brown + Philly + Brown + Philly + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27938 + nfl.t.7 + Denver Broncos + Den + + 10 + + 5 + WR + + https://s.yimg.com/iu/api/res/1.2/iJFtVhlIcqHy.mCtqqTq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27938.png + small + + https://s.yimg.com/iu/api/res/1.2/iJFtVhlIcqHy.mCtqqTq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27938.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29348 + 29348 + + Ricardo Louis + Ricardo + Louis + Ricardo + Louis + + IR + Injured Reserve + neck + nfl.p.29348 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/AIPvLV_Y9CsCwC4B8vv93Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29348.png + small + + https://s.yimg.com/iu/api/res/1.2/AIPvLV_Y9CsCwC4B8vv93Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29348.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28026 + 28026 + + Willie Snead IV + Willie + Snead IV + Willie + Snead IV + + nfl.p.28026 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/2DwRwiX.R..UV00nFJfrsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28026.png + small + + https://s.yimg.com/iu/api/res/1.2/2DwRwiX.R..UV00nFJfrsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28026.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.8850 + 8850 + + Jamaal Charles + Jamaal + Charles + Jamaal + Charles + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8850 + nfl.t.7 + Denver Broncos + Den + + 10 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/S4SjLNfACzpTOES85YFeCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/8850.png + small + + https://s.yimg.com/iu/api/res/1.2/S4SjLNfACzpTOES85YFeCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/8850.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26264 + 26264 + + Giorgio Tavecchio + Giorgio + Tavecchio + Giorgio + Tavecchio + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26264 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/TueGEitRqUBx._cV1XGl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26264.png + small + + https://s.yimg.com/iu/api/res/1.2/TueGEitRqUBx._cV1XGl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26264.png + 0 + K + + K + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28561 + 28561 + + James O'Shaughnessy + James + O'Shaughnessy + James + O'Shaughnessy + + nfl.p.28561 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/VRcEFSE2J3QpTF_BFGVXDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28561.png + small + + https://s.yimg.com/iu/api/res/1.2/VRcEFSE2J3QpTF_BFGVXDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28561.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29475 + 29475 + + Charone Peake + Charone + Peake + Charone + Peake + + nfl.p.29475 + nfl.t.20 + New York Jets + NYJ + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/R3BaEfBmfvNJK_U._kkV.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29475.png + small + + https://s.yimg.com/iu/api/res/1.2/R3BaEfBmfvNJK_U._kkV.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29475.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29571 + 29571 + + Alan Cross + Alan + Cross + Alan + Cross + + nfl.p.29571 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 45 + TE + + https://s.yimg.com/iu/api/res/1.2/sGSniKWmhkhOchmgUXkw0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29571.png + small + + https://s.yimg.com/iu/api/res/1.2/sGSniKWmhkhOchmgUXkw0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29571.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26497 + 26497 + + Phillip Supernaw + Phillip + Supernaw + Phillip + Supernaw + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26497 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/.WYcHKELyev1jc2W21CEzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26497.png + small + + https://s.yimg.com/iu/api/res/1.2/.WYcHKELyev1jc2W21CEzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26497.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29978 + 29978 + + Jaydon Mickens + Jaydon + Mickens + Jaydon + Mickens + + nfl.p.29978 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/bkXfq9gOC_dn0hlHwBSa_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29978.png + small + + https://s.yimg.com/iu/api/res/1.2/bkXfq9gOC_dn0hlHwBSa_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29978.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25816 + 25816 + + Robert Turbin + Robert + Turbin + Robert + Turbin + + SUSP + Suspended + nfl.p.25816 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/00fGRHTGy_vm_ZwlMAIFVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25816.png + small + + https://s.yimg.com/iu/api/res/1.2/00fGRHTGy_vm_ZwlMAIFVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25816.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26096 + 26096 + + Brenton Bersin + Brenton + Bersin + Brenton + Bersin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26096 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/ipEb1t0xH4XqeS0m3kkqkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26096.png + small + + https://s.yimg.com/iu/api/res/1.2/ipEb1t0xH4XqeS0m3kkqkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26096.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26839 + 26839 + + Charles Johnson + Charles + Johnson + Charles + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26839 + nfl.t.20 + New York Jets + NYJ + + 11 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/_LdmNAlBNb7WEaDqXtT9CA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26839.png + small + + https://s.yimg.com/iu/api/res/1.2/_LdmNAlBNb7WEaDqXtT9CA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26839.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27597 + 27597 + + Charles Sims + Charles + Sims + Charles + Sims + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.27597 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/pqkjaWIE0_GOsYT2i2ganw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27597.png + small + + https://s.yimg.com/iu/api/res/1.2/pqkjaWIE0_GOsYT2i2ganw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27597.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26416 + 26416 + + Derek Carrier + Derek + Carrier + Derek + Carrier + + nfl.p.26416 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/7CY29GqE5aLVwrGH2Te.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26416.png + small + + https://s.yimg.com/iu/api/res/1.2/7CY29GqE5aLVwrGH2Te.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26416.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25992 + 25992 + + Sean McGrath + Sean + McGrath + Sean + McGrath + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25992 + nfl.t.8 + Detroit Lions + Det + + 6 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/2N74fP_osJs1dh1Gj4BNmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25992.png + small + + https://s.yimg.com/iu/api/res/1.2/2N74fP_osJs1dh1Gj4BNmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25992.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30240 + 30240 + + Michael Roberts + Michael + Roberts + Michael + Roberts + + nfl.p.30240 + nfl.t.8 + Detroit Lions + Det + + 6 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/T_u9HRcuDEoZTa1y8Gb0dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30240.png + small + + https://s.yimg.com/iu/api/res/1.2/T_u9HRcuDEoZTa1y8Gb0dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30240.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28494 + 28494 + + Jeremy Langford + Jeremy + Langford + Jeremy + Langford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28494 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/.MOyOlOyQbh7_47OHM8Cew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28494.png + small + + https://s.yimg.com/iu/api/res/1.2/.MOyOlOyQbh7_47OHM8Cew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28494.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26657 + 26657 + + Justin Hunter + Justin + Hunter + Justin + Hunter + + nfl.p.26657 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/QzeCLhcBJWcdTeyFTJ8DwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26657.png + small + + https://s.yimg.com/iu/api/res/1.2/QzeCLhcBJWcdTeyFTJ8DwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26657.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26789 + 26789 + + Caleb Sturgis + Caleb + Sturgis + Caleb + Sturgis + + nfl.p.26789 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/aamIm.l8u7BGC48k2ncA1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26789.png + small + + https://s.yimg.com/iu/api/res/1.2/aamIm.l8u7BGC48k2ncA1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26789.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.30023 + 30023 + + Marvin Hall + Marvin + Hall + Marvin + Hall + + nfl.p.30023 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/aWVK70GBJCxGk2ZvkEpeNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30023.png + small + + https://s.yimg.com/iu/api/res/1.2/aWVK70GBJCxGk2ZvkEpeNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30023.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9271 + 9271 + + Darrius Heyward-Bey + Darrius + Heyward-Bey + Darrius + Heyward-Bey + + nfl.p.9271 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/HwVvwXhRqq.jv6.qs49T_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9271.png + small + + https://s.yimg.com/iu/api/res/1.2/HwVvwXhRqq.jv6.qs49T_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9271.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29319 + 29319 + + Braxton Miller + Braxton + Miller + Braxton + Miller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29319 + nfl.t.34 + Houston Texans + Hou + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/kBzp6TEQqW4Wa.LDgoR4Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29319.png + small + + https://s.yimg.com/iu/api/res/1.2/kBzp6TEQqW4Wa.LDgoR4Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29319.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26024 + 26024 + + Travaris Cadet + Travaris + Cadet + Travaris + Cadet + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26024 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/dwRabwkN5XfiXygIMsx5pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26024.png + small + + https://s.yimg.com/iu/api/res/1.2/dwRabwkN5XfiXygIMsx5pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26024.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27767 + 27767 + + James Wright + James + Wright + James + Wright + + IR + Injured Reserve + undisclosed + nfl.p.27767 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/gLjBsZOu4vUixXgYYqvuKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27767.png + small + + https://s.yimg.com/iu/api/res/1.2/gLjBsZOu4vUixXgYYqvuKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27767.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24942 + 24942 + + Niles Paul + Niles + Paul + Niles + Paul + + nfl.p.24942 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/pBZorpF6bwoeLisvgYDwQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24942.png + small + + https://s.yimg.com/iu/api/res/1.2/pBZorpF6bwoeLisvgYDwQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24942.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24843 + 24843 + + Shane Vereen + Shane + Vereen + Shane + Vereen + + IR + Injured Reserve + undisclosed + nfl.p.24843 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/D5OxZ8pz_Qmc4cH2W5aU_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/24843.png + small + + https://s.yimg.com/iu/api/res/1.2/D5OxZ8pz_Qmc4cH2W5aU_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/24843.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29024 + 29024 + + Lucky Whitehead + Lucky + Whitehead + Lucky + Whitehead + + foot + nfl.p.29024 + nfl.t.20 + New York Jets + NYJ + + 11 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/km7ooyqyXbM2oZRE_z1hBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29024.png + small + + https://s.yimg.com/iu/api/res/1.2/km7ooyqyXbM2oZRE_z1hBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29024.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28511 + 28511 + + Vince Mayle + Vince + Mayle + Vince + Mayle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28511 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/k8Egg7yWzBuDy05EBzDjeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28511.png + small + + https://s.yimg.com/iu/api/res/1.2/k8Egg7yWzBuDy05EBzDjeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28511.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.5046 + 5046 + + Sebastian Janikowski + Sebastian + Janikowski + Sebastian + Janikowski + + nfl.p.5046 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 11 + K + + https://s.yimg.com/iu/api/res/1.2/mhfKWGBUl94sMoTvWV96Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5046.png + small + + https://s.yimg.com/iu/api/res/1.2/mhfKWGBUl94sMoTvWV96Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5046.png + 0 + K + + K + + + 124.3 + 13.1 + 1.2 + 0.04 + + + week + 1 + 7 + 0 + + + + 380.p.29949 + 29949 + + Aldrick Rosas + Aldrick + Rosas + Aldrick + Rosas + + nfl.p.29949 + nfl.t.19 + New York Giants + NYG + + 9 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/B4PjpdutSiUn1dnrAAmi_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29949.png + small + + https://s.yimg.com/iu/api/res/1.2/B4PjpdutSiUn1dnrAAmi_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29949.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.26218 + 26218 + + Griff Whalen + Griff + Whalen + Griff + Whalen + + NA + Inactive: Coach's Decision or Not on Roster + turf toe + nfl.p.26218 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/93p5LIZkSKu5ais8tV3DKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26218.png + small + + https://s.yimg.com/iu/api/res/1.2/93p5LIZkSKu5ais8tV3DKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26218.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29447 + 29447 + + Aaron Burbridge + Aaron + Burbridge + Aaron + Burbridge + + IR + Injured Reserve + undisclosed + nfl.p.29447 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/i62EZNbk2IDyNUNUTyG8zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29447.png + small + + https://s.yimg.com/iu/api/res/1.2/i62EZNbk2IDyNUNUTyG8zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29447.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29001 + 29001 + + Bradley Marquez + Bradley + Marquez + Bradley + Marquez + + nfl.p.29001 + nfl.t.8 + Detroit Lions + Det + + 6 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/sx7jiVQdMTXu4qOiV08sNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29001.png + small + + https://s.yimg.com/iu/api/res/1.2/sx7jiVQdMTXu4qOiV08sNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29001.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25743 + 25743 + + Brian Quick + Brian + Quick + Brian + Quick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25743 + nfl.t.28 + Washington Redskins + Was + + 4 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/ba2EeWdaL01NTRr3kGPSmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25743.png + small + + https://s.yimg.com/iu/api/res/1.2/ba2EeWdaL01NTRr3kGPSmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25743.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31238 + 31238 + + Kamryn Pettway + Kamryn + Pettway + Kamryn + Pettway + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31238 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30355 + 30355 + + Khalfani Muhammad + Khalfani + Muhammad + Khalfani + Muhammad + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30355 + nfl.t.17 + New England Patriots + NE + + 11 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/nYd14o4LvZMRuIWmRCNUkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30355.png + small + + https://s.yimg.com/iu/api/res/1.2/nYd14o4LvZMRuIWmRCNUkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30355.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31622 + 31622 + + Akrum Wadley + Akrum + Wadley + Akrum + Wadley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31622 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30292 + 30292 + + T.J. Logan + T.J. + Logan + T.J. + Logan + + nfl.p.30292 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/dqNMNM8AhsXGng_1SnTtDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30292.png + small + + https://s.yimg.com/iu/api/res/1.2/dqNMNM8AhsXGng_1SnTtDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30292.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31379 + 31379 + + Phillip Lindsay + Phillip + Lindsay + Phillip + Lindsay + + nfl.p.31379 + nfl.t.7 + Denver Broncos + Den + + 10 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/XSC2pTJSe1wb9ycADaSajQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31379.png + small + + https://s.yimg.com/iu/api/res/1.2/XSC2pTJSe1wb9ycADaSajQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31379.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31510 + 31510 + + Johnny Stanton + Johnny + Stanton + Johnny + Stanton + + IR + Injured Reserve + left knee + nfl.p.31510 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 48 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31335 + 31335 + + Chris Ezeala + Chris + Ezeala + Chris + Ezeala + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31335 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/2_6F8Bx.I0iqF_rfGBoJPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31335.png + small + + https://s.yimg.com/iu/api/res/1.2/2_6F8Bx.I0iqF_rfGBoJPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31335.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29476 + 29476 + + Keith Marshall + Keith + Marshall + Keith + Marshall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29476 + nfl.t.28 + Washington Redskins + Was + + 4 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/UQBdZzAMBmvnd4PAS1Se_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29476.png + small + + https://s.yimg.com/iu/api/res/1.2/UQBdZzAMBmvnd4PAS1Se_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29476.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31396 + 31396 + + Martez Carter + Martez + Carter + Martez + Carter + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31396 + nfl.t.28 + Washington Redskins + Was + + 4 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/5nR7DMxK5VjNIp2kD5LaiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31396.png + small + + https://s.yimg.com/iu/api/res/1.2/5nR7DMxK5VjNIp2kD5LaiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31396.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30398 + 30398 + + Tim Cook + Tim + Cook + Tim + Cook + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30398 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/KKCT0LWwBkyqTFwnewQ3xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30398.png + small + + https://s.yimg.com/iu/api/res/1.2/KKCT0LWwBkyqTFwnewQ3xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30398.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29184 + 29184 + + Bronson Hill + Bronson + Hill + Bronson + Hill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29184 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/qr11wjeuqVI3InrMeXvwxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29184.1.png + small + + https://s.yimg.com/iu/api/res/1.2/qr11wjeuqVI3InrMeXvwxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29184.1.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30516 + 30516 + + Taquan Mizzell + Taquan + Mizzell + Taquan + Mizzell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30516 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/hboi6qJMcNgD2z80Ql5ezQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30516.png + small + + https://s.yimg.com/iu/api/res/1.2/hboi6qJMcNgD2z80Ql5ezQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30516.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27312 + 27312 + + George Winn + George + Winn + George + Winn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27312 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/jq5y2i_gpDp3PltbTBrQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27312.png + small + + https://s.yimg.com/iu/api/res/1.2/jq5y2i_gpDp3PltbTBrQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27312.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30319 + 30319 + + De'Angelo Henderson + De'Angelo + Henderson + De'Angelo + Henderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30319 + nfl.t.20 + New York Jets + NYJ + + 11 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/xm_kVWxx5u1Cbt90LDXJag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30319.png + small + + https://s.yimg.com/iu/api/res/1.2/xm_kVWxx5u1Cbt90LDXJag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30319.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30234 + 30234 + + Joe Williams + Joe + Williams + Joe + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30234 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/oaZFsrOUCBLqSIp0cFkE6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30234.png + small + + https://s.yimg.com/iu/api/res/1.2/oaZFsrOUCBLqSIp0cFkE6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30234.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31467 + 31467 + + Khalid Hill + Khalid + Hill + Khalid + Hill + + IR + Injured Reserve + undisclosed + nfl.p.31467 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26601 + 26601 + + Austin Johnson + Austin + Johnson + Austin + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26601 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/crKJLcCJYxrnfiTfzoxb9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26601.png + small + + https://s.yimg.com/iu/api/res/1.2/crKJLcCJYxrnfiTfzoxb9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26601.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31074 + 31074 + + Nyheim Hines + Nyheim + Hines + Nyheim + Hines + + nfl.p.31074 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/o7lUYc_33tLMcGxptX_.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31074.png + small + + https://s.yimg.com/iu/api/res/1.2/o7lUYc_33tLMcGxptX_.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31074.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.28922 + 28922 + + John Crockett + John + Crockett + John + Crockett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28922 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/lcuRVHnex2FGLLOh1w7CYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28922.png + small + + https://s.yimg.com/iu/api/res/1.2/lcuRVHnex2FGLLOh1w7CYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28922.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31795 + 31795 + + Justin Stockton + Justin + Stockton + Justin + Stockton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31795 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31514 + 31514 + + Chris Warren III + Chris + Warren III + Chris + Warren III + + IR + Injured Reserve + undisclosed + nfl.p.31514 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.31278 + 31278 + + Shaun Wilson + Shaun + Wilson + Shaun + Wilson + + nfl.p.31278 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/3nQtUyBQS6qUDwFiu2G8_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31278.png + small + + https://s.yimg.com/iu/api/res/1.2/3nQtUyBQS6qUDwFiu2G8_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31278.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28953 + 28953 + + Terrence Magee + Terrence + Magee + Terrence + Magee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28953 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/nJyGVTmsQe_qfAPEI9yybg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28953.png + small + + https://s.yimg.com/iu/api/res/1.2/nJyGVTmsQe_qfAPEI9yybg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28953.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30873 + 30873 + + Lenard Tillery + Lenard + Tillery + Lenard + Tillery + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30873 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/FPf5H1N.8jDKCK2b.Ch25A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30873.png + small + + https://s.yimg.com/iu/api/res/1.2/FPf5H1N.8jDKCK2b.Ch25A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30873.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31096 + 31096 + + Ito Smith + Ito + Smith + Ito + Smith + + nfl.p.31096 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/xzgiErw3KMDpBfcJNUZw1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31096.png + small + + https://s.yimg.com/iu/api/res/1.2/xzgiErw3KMDpBfcJNUZw1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31096.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30650 + 30650 + + De'Veon Smith + De'Veon + Smith + De'Veon + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30650 + nfl.t.28 + Washington Redskins + Was + + 4 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/I7KXzQGV9abi9ayZGZuDAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30650.png + small + + https://s.yimg.com/iu/api/res/1.2/I7KXzQGV9abi9ayZGZuDAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30650.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31319 + 31319 + + Austin Ramesh + Austin + Ramesh + Austin + Ramesh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31319 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31423 + 31423 + + Mark Thompson + Mark + Thompson + Mark + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31423 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31228 + 31228 + + Mike Boone + Mike + Boone + Mike + Boone + + nfl.p.31228 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/pKXO5mzuP7wn6YMGJohGBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31228.png + small + + https://s.yimg.com/iu/api/res/1.2/pKXO5mzuP7wn6YMGJohGBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31228.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30275 + 30275 + + Jeremy McNichols + Jeremy + McNichols + Jeremy + McNichols + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30275 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/JU_G.7gln2V6JnF_MXt_5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30275.png + small + + https://s.yimg.com/iu/api/res/1.2/JU_G.7gln2V6JnF_MXt_5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30275.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31174 + 31174 + + Trenton Cannon + Trenton + Cannon + Trenton + Cannon + + nfl.p.31174 + nfl.t.20 + New York Jets + NYJ + + 11 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/l2tAi_CfJCUspOMch3URfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31174.png + small + + https://s.yimg.com/iu/api/res/1.2/l2tAi_CfJCUspOMch3URfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31174.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31567 + 31567 + + Josh Adams + Josh + Adams + Josh + Adams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31567 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31787 + 31787 + + Gerald Holmes + Gerald + Holmes + Gerald + Holmes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31787 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31241 + 31241 + + Roc Thomas + Roc + Thomas + Roc + Thomas + + Q + Questionable + nfl.p.31241 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/RTctrwmXetZ6VYcP98CvTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31241.png + small + + https://s.yimg.com/iu/api/res/1.2/RTctrwmXetZ6VYcP98CvTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31241.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31221 + 31221 + + Justin Jackson + Justin + Jackson + Justin + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31221 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/HEm6xKQOdJPpKfwbOJ5Uwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31221.png + small + + https://s.yimg.com/iu/api/res/1.2/HEm6xKQOdJPpKfwbOJ5Uwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31221.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31662 + 31662 + + Ryan Nall + Ryan + Nall + Ryan + Nall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31662 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29085 + 29085 + + Mack Brown + Mack + Brown + Mack + Brown + + IR + Injured Reserve + undisclosed + nfl.p.29085 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/xwJ.zcoH4SJESFUmen51zA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29085.png + small + + https://s.yimg.com/iu/api/res/1.2/xwJ.zcoH4SJESFUmen51zA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29085.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31621 + 31621 + + Larry Rose III + Larry + Rose III + Larry + Rose III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31621 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29661 + 29661 + + Brandon Wilds + Brandon + Wilds + Brandon + Wilds + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29661 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/VeC.CygXZjtcpRK6gGTTmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29661.png + small + + https://s.yimg.com/iu/api/res/1.2/VeC.CygXZjtcpRK6gGTTmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29661.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31637 + 31637 + + Kyle Lewis + Kyle + Lewis + Kyle + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31637 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 1 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31280 + 31280 + + Jordan Chunn + Jordan + Chunn + Jordan + Chunn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31280 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/PbxNOBiSxpdmnbr_kRrIOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31280.png + small + + https://s.yimg.com/iu/api/res/1.2/PbxNOBiSxpdmnbr_kRrIOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31280.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30587 + 30587 + + Jarveon Williams + Jarveon + Williams + Jarveon + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30587 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/68SAl1cd2PCspIbulpWBLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30587.png + small + + https://s.yimg.com/iu/api/res/1.2/68SAl1cd2PCspIbulpWBLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30587.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31171 + 31171 + + Boston Scott + Boston + Scott + Boston + Scott + + nfl.p.31171 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/VX3Uywd58H0ulHTqKgtByA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31171.png + small + + https://s.yimg.com/iu/api/res/1.2/VX3Uywd58H0ulHTqKgtByA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31171.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.30533 + 30533 + + Brandon Radcliff + Brandon + Radcliff + Brandon + Radcliff + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30533 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/98ORuxRiy0.7mWT.f8qGrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30533.png + small + + https://s.yimg.com/iu/api/res/1.2/98ORuxRiy0.7mWT.f8qGrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30533.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30318 + 30318 + + Sam Rogers + Sam + Rogers + Sam + Rogers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30318 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/k9.jOqKQ0iITSereXh_eYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30318.png + small + + https://s.yimg.com/iu/api/res/1.2/k9.jOqKQ0iITSereXh_eYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30318.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31537 + 31537 + + Gregory Howell + Gregory + Howell + Gregory + Howell + + nfl.p.31537 + nfl.t.34 + Houston Texans + Hou + + 10 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29715 + 29715 + + Aaron Green + Aaron + Green + Aaron + Green + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29715 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/cKNxBgUsqKn7nzy_t2Rj5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29715.png + small + + https://s.yimg.com/iu/api/res/1.2/cKNxBgUsqKn7nzy_t2Rj5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29715.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31595 + 31595 + + Keith Ford + Keith + Ford + Keith + Ford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31595 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31100 + 31100 + + Kalen Ballage + Kalen + Ballage + Kalen + Ballage + + nfl.p.31100 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/RzE.lKHiMIHnNbBTF3V_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31100.png + small + + https://s.yimg.com/iu/api/res/1.2/RzE.lKHiMIHnNbBTF3V_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31100.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.26812 + 26812 + + Mike James + Mike + James + Mike + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26812 + nfl.t.8 + Detroit Lions + Det + + 6 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/oLjBaVn8FABkDRnNWFxV_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/26812.png + small + + https://s.yimg.com/iu/api/res/1.2/oLjBaVn8FABkDRnNWFxV_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/26812.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31620 + 31620 + + Dalyn Dawkins + Dalyn + Dawkins + Dalyn + Dawkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31620 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31339 + 31339 + + Malik Williams + Malik + Williams + Malik + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31339 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/c4oMoRUGfPnNnW9gIYgLmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31339.png + small + + https://s.yimg.com/iu/api/res/1.2/c4oMoRUGfPnNnW9gIYgLmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31339.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30245 + 30245 + + Donnel Pumphrey + Donnel + Pumphrey + Donnel + Pumphrey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30245 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/u9M9g8C9DW_c9BHvChSSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30245.png + small + + https://s.yimg.com/iu/api/res/1.2/u9M9g8C9DW_c9BHvChSSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30245.png + 0 + O + + RB + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30860 + 30860 + + Dare Ogunbowale + Dare + Ogunbowale + Dare + Ogunbowale + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30860 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/2rpPhktZDOxXjCPXlp4V5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30860.png + small + + https://s.yimg.com/iu/api/res/1.2/2rpPhktZDOxXjCPXlp4V5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30860.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31407 + 31407 + + Elijah Wellman + Elijah + Wellman + Elijah + Wellman + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31407 + nfl.t.28 + Washington Redskins + Was + + 4 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/umdL_fiXiis_6SJVXfFQ1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31407.png + small + + https://s.yimg.com/iu/api/res/1.2/umdL_fiXiis_6SJVXfFQ1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31407.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29575 + 29575 + + Russell Hansbrough + Russell + Hansbrough + Russell + Hansbrough + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29575 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/fUFNxsnxmPZLbP_dONSMdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29575.png + small + + https://s.yimg.com/iu/api/res/1.2/fUFNxsnxmPZLbP_dONSMdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29575.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30496 + 30496 + + James Summers + James + Summers + James + Summers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30496 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/Zar_X4bOnD0fNGgbTnlpnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30496.png + small + + https://s.yimg.com/iu/api/res/1.2/Zar_X4bOnD0fNGgbTnlpnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30496.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31704 + 31704 + + Robert Martin + Robert + Martin + Robert + Martin + + Q + Questionable + nfl.p.31704 + nfl.t.19 + New York Giants + NYG + + 9 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31590 + 31590 + + Terry Swanson + Terry + Swanson + Terry + Swanson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31590 + nfl.t.34 + Houston Texans + Hou + + 10 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29450 + 29450 + + Darius Jackson + Darius + Jackson + Darius + Jackson + + nfl.p.29450 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/Fi3W5kdx0Bm4g8M7CQv8lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29450.png + small + + https://s.yimg.com/iu/api/res/1.2/Fi3W5kdx0Bm4g8M7CQv8lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29450.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30751 + 30751 + + Akeem Judd + Akeem + Judd + Akeem + Judd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30751 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/ugSnObrsK_3VkJOOBNCVBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30751.png + small + + https://s.yimg.com/iu/api/res/1.2/ugSnObrsK_3VkJOOBNCVBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30751.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31513 + 31513 + + Henry Poggi + Henry + Poggi + Henry + Poggi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31513 + nfl.t.17 + New England Patriots + NE + + 11 + + 48 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30757 + 30757 + + Algernon Brown + Algernon + Brown + Algernon + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30757 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/wLHdzHy5GL4X0M.cPdDVfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30757.png + small + + https://s.yimg.com/iu/api/res/1.2/wLHdzHy5GL4X0M.cPdDVfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30757.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30353 + 30353 + + Marquez Williams + Marquez + Williams + Marquez + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30353 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/EQzHjCiCbWkee2c4fbTO4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30353.png + small + + https://s.yimg.com/iu/api/res/1.2/EQzHjCiCbWkee2c4fbTO4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30353.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31798 + 31798 + + Kobe McCrary + Kobe + McCrary + Kobe + McCrary + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31798 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 48 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31485 + 31485 + + Jarvion Franklin + Jarvion + Franklin + Jarvion + Franklin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31485 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30351 + 30351 + + Devante Mays + Devante + Mays + Devante + Mays + + IR + Injured Reserve + hamstring + nfl.p.30351 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/6rEuoiptH42zvctx79yYog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30351.png + small + + https://s.yimg.com/iu/api/res/1.2/6rEuoiptH42zvctx79yYog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30351.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31104 + 31104 + + Chase Edmonds + Chase + Edmonds + Chase + Edmonds + + nfl.p.31104 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/Sy4UlBSzMjYxDoxsqacqJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31104.png + small + + https://s.yimg.com/iu/api/res/1.2/Sy4UlBSzMjYxDoxsqacqJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31104.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.28618 + 28618 + + Marcus Murphy + Marcus + Murphy + Marcus + Murphy + + nfl.p.28618 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/SaquxHWTg5lK4d2DXKOmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28618.png + small + + https://s.yimg.com/iu/api/res/1.2/SaquxHWTg5lK4d2DXKOmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28618.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31748 + 31748 + + Sherman Badie + Sherman + Badie + Sherman + Badie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31748 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31560 + 31560 + + Quinton Flowers + Quinton + Flowers + Quinton + Flowers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31560 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31805 + 31805 + + Ja'Quan Gardner + Ja'Quan + Gardner + Ja'Quan + Gardner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31805 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31341 + 31341 + + Luke McNitt + Luke + McNitt + Luke + McNitt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31341 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/SsQTVK1U1Pe3mbcv6DENkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31341.png + small + + https://s.yimg.com/iu/api/res/1.2/SsQTVK1U1Pe3mbcv6DENkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31341.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31653 + 31653 + + Ralph Webb + Ralph + Webb + Ralph + Webb + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31653 + nfl.t.17 + New England Patriots + NE + + 11 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31781 + 31781 + + James Butler + James + Butler + James + Butler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31781 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31302 + 31302 + + Reggie Bonnafon + Reggie + Bonnafon + Reggie + Bonnafon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31302 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/SRtfMw7eLIJI8rFsCCwayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31302.png + small + + https://s.yimg.com/iu/api/res/1.2/SRtfMw7eLIJI8rFsCCwayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31302.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31564 + 31564 + + Ray Lawry + Ray + Lawry + Ray + Lawry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31564 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31338 + 31338 + + Justin Crawford + Justin + Crawford + Justin + Crawford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31338 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/L._LeNk9X2ynaIoDCfnhzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31338.png + small + + https://s.yimg.com/iu/api/res/1.2/L._LeNk9X2ynaIoDCfnhzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31338.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31206 + 31206 + + Bo Scarbrough + Bo + Scarbrough + Bo + Scarbrough + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31206 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/2qGR1lC5nkwdQahzZHpCjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31206.png + small + + https://s.yimg.com/iu/api/res/1.2/2qGR1lC5nkwdQahzZHpCjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31206.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30703 + 30703 + + Devine Redding + Devine + Redding + Devine + Redding + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30703 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/BGsr_pWVh.Ck_vRY17BFaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30703.png + small + + https://s.yimg.com/iu/api/res/1.2/BGsr_pWVh.Ck_vRY17BFaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30703.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31500 + 31500 + + Darrel Williams + Darrel + Williams + Darrel + Williams + + nfl.p.31500 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31685 + 31685 + + Detrez Newsome + Detrez + Newsome + Detrez + Newsome + + nfl.p.31685 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.30305 + 30305 + + Alex Armah + Alex + Armah + Alex + Armah + + nfl.p.30305 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/ZaHoYnYbkeDIFIs80bBfyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30305.png + small + + https://s.yimg.com/iu/api/res/1.2/ZaHoYnYbkeDIFIs80bBfyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30305.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31466 + 31466 + + Marcus Martin + Marcus + Martin + Marcus + Martin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31466 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 56 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31457 + 31457 + + Dontrell Hilliard + Dontrell + Hilliard + Dontrell + Hilliard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31457 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29700 + 29700 + + Tra Carson + Tra + Carson + Tra + Carson + + nfl.p.29700 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/PKRLsEr6QrKAqM6Lc0k9Zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29700.png + small + + https://s.yimg.com/iu/api/res/1.2/PKRLsEr6QrKAqM6Lc0k9Zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29700.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31700 + 31700 + + Zach Olstad + Zach + Olstad + Zach + Olstad + + NA + Inactive: Coach's Decision or Not on Roster + ankle + nfl.p.31700 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31715 + 31715 + + Ryan Yurachek + Ryan + Yurachek + Ryan + Yurachek + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31715 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31394 + 31394 + + Jeff Wilson + Jeff + Wilson + Jeff + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31394 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/oPOfbkWyRGsZKJaOKzlJ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31394.png + small + + https://s.yimg.com/iu/api/res/1.2/oPOfbkWyRGsZKJaOKzlJ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31394.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29542 + 29542 + + Jhurell Pressley + Jhurell + Pressley + Jhurell + Pressley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29542 + nfl.t.19 + New York Giants + NYG + + 9 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/ARMU_s9bJ1Xi8yTEkoWP_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29542.png + small + + https://s.yimg.com/iu/api/res/1.2/ARMU_s9bJ1Xi8yTEkoWP_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29542.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30354 + 30354 + + Elijah Hood + Elijah + Hood + Elijah + Hood + + IR + Injured Reserve + undisclosed + nfl.p.30354 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/dBNAzTRrA9DPJ7KL2dKi0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30354.png + small + + https://s.yimg.com/iu/api/res/1.2/dBNAzTRrA9DPJ7KL2dKi0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30354.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28865 + 28865 + + Trey Williams + Trey + Williams + Trey + Williams + + IR + Injured Reserve + undisclosed + nfl.p.28865 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/XY5IytaaG4tOyNI4HOLcSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28865.png + small + + https://s.yimg.com/iu/api/res/1.2/XY5IytaaG4tOyNI4HOLcSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28865.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30522 + 30522 + + Dalton Crossan + Dalton + Crossan + Dalton + Crossan + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30522 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/0_OIJCq2ZuFjdaGYM5Pkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30522.png + small + + https://s.yimg.com/iu/api/res/1.2/0_OIJCq2ZuFjdaGYM5Pkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30522.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30370 + 30370 + + Justin Davis + Justin + Davis + Justin + Davis + + nfl.p.30370 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/YP12BN3HIHC6bi0eZQ4LdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30370.png + small + + https://s.yimg.com/iu/api/res/1.2/YP12BN3HIHC6bi0eZQ4LdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30370.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30717 + 30717 + + Joel Bouagnon + Joel + Bouagnon + Joel + Bouagnon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30717 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/aaXmzqkW4oON74k6PVPYtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30717.png + small + + https://s.yimg.com/iu/api/res/1.2/aaXmzqkW4oON74k6PVPYtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30717.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30915 + 30915 + + Darius Victor + Darius + Victor + Darius + Victor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30915 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31196 + 31196 + + David Williams + David + Williams + David + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31196 + nfl.t.7 + Denver Broncos + Den + + 10 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/yJPZMGHPBZWTpnul8_u_tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31196.png + small + + https://s.yimg.com/iu/api/res/1.2/yJPZMGHPBZWTpnul8_u_tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31196.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29993 + 29993 + + Jalen Simmons + Jalen + Simmons + Jalen + Simmons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29993 + nfl.t.19 + New York Giants + NYG + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/qff.3KWbb_u9Fioax5Jrlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29993.png + small + + https://s.yimg.com/iu/api/res/1.2/qff.3KWbb_u9Fioax5Jrlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29993.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31082 + 31082 + + Mark Walton + Mark + Walton + Mark + Walton + + Q + Questionable + nfl.p.31082 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/ooq6D1Bh685We_1XSEpoyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31082.png + small + + https://s.yimg.com/iu/api/res/1.2/ooq6D1Bh685We_1XSEpoyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31082.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30517 + 30517 + + Ricky Ortiz + Ricky + Ortiz + Ricky + Ortiz + + nfl.p.30517 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/J14Is.B_yihErqSI65glnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30517.png + small + + https://s.yimg.com/iu/api/res/1.2/J14Is.B_yihErqSI65glnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30517.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31340 + 31340 + + Daniel Marx + Daniel + Marx + Daniel + Marx + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31340 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/BbIQAqIJyIg6agL.ftj7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31340.png + small + + https://s.yimg.com/iu/api/res/1.2/BbIQAqIJyIg6agL.ftj7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31340.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31425 + 31425 + + De'Lance Turner + De'Lance + Turner + De'Lance + Turner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31425 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 47 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31493 + 31493 + + J.D. Moore + J.D. + Moore + J.D. + Moore + + IR + Injured Reserve + undisclosed + nfl.p.31493 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31443 + 31443 + + Dimitri Flowers + Dimitri + Flowers + Dimitri + Flowers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31443 + nfl.t.20 + New York Jets + NYJ + + 11 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31483 + 31483 + + Nick Sharga + Nick + Sharga + Nick + Sharga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31483 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31575 + 31575 + + Lavon Coleman + Lavon + Coleman + Lavon + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31575 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31207 + 31207 + + Nick Bawden + Nick + Bawden + Nick + Bawden + + IR + Injured Reserve + torn right ACL + nfl.p.31207 + nfl.t.8 + Detroit Lions + Det + + 6 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/wMg4Vvx_gyucz4EPPsYYqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31207.png + small + + https://s.yimg.com/iu/api/res/1.2/wMg4Vvx_gyucz4EPPsYYqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31207.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.24860 + 24860 + + Stevan Ridley + Stevan + Ridley + Stevan + Ridley + + nfl.p.24860 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/fwcC_ioFssaQXD8GsCy0Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24860.png + small + + https://s.yimg.com/iu/api/res/1.2/fwcC_ioFssaQXD8GsCy0Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24860.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31337 + 31337 + + Demario Richard + Demario + Richard + Demario + Richard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31337 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/irFQ6QJ80M9n23NS9C2sCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31337.png + small + + https://s.yimg.com/iu/api/res/1.2/irFQ6QJ80M9n23NS9C2sCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31337.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29695 + 29695 + + Joe Kerridge + Joe + Kerridge + Joe + Kerridge + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29695 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/blnW0o4SnaHYjKTmUr6c6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29695.png + small + + https://s.yimg.com/iu/api/res/1.2/blnW0o4SnaHYjKTmUr6c6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29695.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30658 + 30658 + + LeShun Daniels Jr. + LeShun + Daniels Jr. + LeShun + Daniels Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30658 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/.l3wdlEvmGvIwhpWD6AtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/30658.png + small + + https://s.yimg.com/iu/api/res/1.2/.l3wdlEvmGvIwhpWD6AtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/30658.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31684 + 31684 + + Anthony Manzo-Lewis + Anthony + Manzo-Lewis + Anthony + Manzo-Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31684 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31424 + 31424 + + Gus Edwards + Gus + Edwards + Gus + Edwards + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31424 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31730 + 31730 + + Nick Holley + Nick + Holley + Nick + Holley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31730 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.100020 + 100020 + + New York + New York + + New York + + + nfl.p.100020 + nfl.t.20 + New York Jets + NYJ + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyj.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyj.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28527 + 28527 + + Rashad Greene Sr. + Rashad + Greene Sr. + Rashad + Greene Sr. + + nfl.p.28527 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/RhHM6U6X1WUF.hqPfsxcKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28527.png + small + + https://s.yimg.com/iu/api/res/1.2/RhHM6U6X1WUF.hqPfsxcKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28527.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30002 + 30002 + + Jake Lampman + Jake + Lampman + Jake + Lampman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30002 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/6SyCyvi.Ldbzn2PKfAqCyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30002.png + small + + https://s.yimg.com/iu/api/res/1.2/6SyCyvi.Ldbzn2PKfAqCyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30002.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30737 + 30737 + + Travis Rudolph + Travis + Rudolph + Travis + Rudolph + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30737 + nfl.t.19 + New York Giants + NYG + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/qphJtiOWytVOvab4Jpae3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30737.png + small + + https://s.yimg.com/iu/api/res/1.2/qphJtiOWytVOvab4Jpae3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30737.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29208 + 29208 + + Ross Travis + Ross + Travis + Ross + Travis + + IR + Injured Reserve + undisclosed + nfl.p.29208 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 43 + TE + + https://s.yimg.com/iu/api/res/1.2/lZPG19GOLYjddffpSP3s7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29208.png + small + + https://s.yimg.com/iu/api/res/1.2/lZPG19GOLYjddffpSP3s7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29208.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30523 + 30523 + + Darrell Daniels + Darrell + Daniels + Darrell + Daniels + + nfl.p.30523 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/oNTm9dQkVKSdGsfauPdmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30523.png + small + + https://s.yimg.com/iu/api/res/1.2/oNTm9dQkVKSdGsfauPdmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30523.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27821 + 27821 + + Kapri Bibbs + Kapri + Bibbs + Kapri + Bibbs + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27821 + nfl.t.28 + Washington Redskins + Was + + 4 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/9YzpYysv7Eja2rF_lJXcMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27821.png + small + + https://s.yimg.com/iu/api/res/1.2/9YzpYysv7Eja2rF_lJXcMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27821.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30661 + 30661 + + Jacob Hollister + Jacob + Hollister + Jacob + Hollister + + Q + Questionable + nfl.p.30661 + nfl.t.17 + New England Patriots + NE + + 11 + + 47 + TE + + https://s.yimg.com/iu/api/res/1.2/F5ux6qy1hQ1DHw36OBfCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30661.png + small + + https://s.yimg.com/iu/api/res/1.2/F5ux6qy1hQ1DHw36OBfCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30661.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30230 + 30230 + + Josh Reynolds + Josh + Reynolds + Josh + Reynolds + + Q + Questionable + nfl.p.30230 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/z3AoWDhVtf_UDZZ0yKnNPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30230.png + small + + https://s.yimg.com/iu/api/res/1.2/z3AoWDhVtf_UDZZ0yKnNPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30230.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29906 + 29906 + + Elijhaa Penny + Elijhaa + Penny + Elijhaa + Penny + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29906 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/cLlvG50lg2NBf.a1RH9BnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29906.png + small + + https://s.yimg.com/iu/api/res/1.2/cLlvG50lg2NBf.a1RH9BnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29906.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27213 + 27213 + + MarQueis Gray + MarQueis + Gray + MarQueis + Gray + + nfl.p.27213 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/i1KocxH960qwWqHHS0Vz7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27213.png + small + + https://s.yimg.com/iu/api/res/1.2/i1KocxH960qwWqHHS0Vz7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27213.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25723 + 25723 + + Michael Floyd + Michael + Floyd + Michael + Floyd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25723 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/qGJGOZdn_Jim35IIEthl7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25723.png + small + + https://s.yimg.com/iu/api/res/1.2/qGJGOZdn_Jim35IIEthl7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25723.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29420 + 29420 + + Jakeem Grant + Jakeem + Grant + Jakeem + Grant + + Q + Questionable + nfl.p.29420 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/bXlNw_UBUpnzhHWymCWTaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29420.png + small + + https://s.yimg.com/iu/api/res/1.2/bXlNw_UBUpnzhHWymCWTaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29420.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.29320 + 29320 + + Leonte Carroo + Leonte + Carroo + Leonte + Carroo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29320 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/hdhfIT3RTneT5qYjhK71BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29320.png + small + + https://s.yimg.com/iu/api/res/1.2/hdhfIT3RTneT5qYjhK71BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29320.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29518 + 29518 + + Kenneth Farrow + Kenneth + Farrow + Kenneth + Farrow + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29518 + nfl.t.17 + New England Patriots + NE + + 11 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/L_MlxVOche10psCoOs1a.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/29518.png + small + + https://s.yimg.com/iu/api/res/1.2/L_MlxVOche10psCoOs1a.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/29518.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30337 + 30337 + + Zane Gonzalez + Zane + Gonzalez + Zane + Gonzalez + + nfl.p.30337 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/l8Yys4C3G3FNygqTZZMkqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30337.png + small + + https://s.yimg.com/iu/api/res/1.2/l8Yys4C3G3FNygqTZZMkqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30337.png + 0 + K + + K + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28727 + 28727 + + Jordan Taylor + Jordan + Taylor + Jordan + Taylor + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.28727 + nfl.t.7 + Denver Broncos + Den + + 10 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/fRXPK6IGVajzyRr18Xx7YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28727.png + small + + https://s.yimg.com/iu/api/res/1.2/fRXPK6IGVajzyRr18Xx7YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28727.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29360 + 29360 + + Demarcus Robinson + Demarcus + Robinson + Demarcus + Robinson + + nfl.p.29360 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/HLp_ktZ1oEzQBjoyErElOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29360.png + small + + https://s.yimg.com/iu/api/res/1.2/HLp_ktZ1oEzQBjoyErElOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29360.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28475 + 28475 + + Sammie Coates + Sammie + Coates + Sammie + Coates + + nfl.p.28475 + nfl.t.34 + Houston Texans + Hou + + 10 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/BvwjBXtIjsDdEVNd78ZyAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28475.png + small + + https://s.yimg.com/iu/api/res/1.2/BvwjBXtIjsDdEVNd78ZyAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28475.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28060 + 28060 + + Freddie Martino + Freddie + Martino + Freddie + Martino + + nfl.p.28060 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/_ueddcYAltnFjXQ4aABSOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28060.png + small + + https://s.yimg.com/iu/api/res/1.2/_ueddcYAltnFjXQ4aABSOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28060.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28990 + 28990 + + Malcolm Brown + Malcolm + Brown + Malcolm + Brown + + nfl.p.28990 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/Z49DKz9ZFlc4YSIURejBtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28990.png + small + + https://s.yimg.com/iu/api/res/1.2/Z49DKz9ZFlc4YSIURejBtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28990.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9043 + 9043 + + Mike Tolbert + Mike + Tolbert + Mike + Tolbert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9043 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/k0zWH4wGCK9AaNc0lCy7eA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9043.png + small + + https://s.yimg.com/iu/api/res/1.2/k0zWH4wGCK9AaNc0lCy7eA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9043.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29152 + 29152 + + Kasen Williams + Kasen + Williams + Kasen + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29152 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/0KTie6XUQZO882oR.m5VlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29152.png + small + + https://s.yimg.com/iu/api/res/1.2/0KTie6XUQZO882oR.m5VlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29152.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27652 + 27652 + + De'Anthony Thomas + De'Anthony + Thomas + De'Anthony + Thomas + + nfl.p.27652 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/mZcriI9n07yaaCrZaunLqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27652.png + small + + https://s.yimg.com/iu/api/res/1.2/mZcriI9n07yaaCrZaunLqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27652.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30241 + 30241 + + Josh Malone + Josh + Malone + Josh + Malone + + nfl.p.30241 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/r3xtacaRYLMQ6rMGcC7Mxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30241.png + small + + https://s.yimg.com/iu/api/res/1.2/r3xtacaRYLMQ6rMGcC7Mxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30241.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26064 + 26064 + + Lance Dunbar + Lance + Dunbar + Lance + Dunbar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26064 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/z_Sb07depTgUPjEjrqr9aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26064.png + small + + https://s.yimg.com/iu/api/res/1.2/z_Sb07depTgUPjEjrqr9aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26064.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28021 + 28021 + + Ryan Hewitt + Ryan + Hewitt + Ryan + Hewitt + + nfl.p.28021 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 45 + TE + + https://s.yimg.com/iu/api/res/1.2/rdY0H2wDbZ2S3Nqxjlilfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28021.png + small + + https://s.yimg.com/iu/api/res/1.2/rdY0H2wDbZ2S3Nqxjlilfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28021.png + 0 + O + + TE + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30577 + 30577 + + Cethan Carter + Cethan + Carter + Cethan + Carter + + IR + Injured Reserve + shoulder + nfl.p.30577 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/zkwFtld4HwpLtZnzwLArSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30577.png + small + + https://s.yimg.com/iu/api/res/1.2/zkwFtld4HwpLtZnzwLArSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30577.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30211 + 30211 + + Chad Williams + Chad + Williams + Chad + Williams + + nfl.p.30211 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/NBdyEgzbLis53S4XVT7DvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30211.png + small + + https://s.yimg.com/iu/api/res/1.2/NBdyEgzbLis53S4XVT7DvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30211.png + 0 + O + + WR + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29293 + 29293 + + Roberto Aguayo + Roberto + Aguayo + Roberto + Aguayo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29293 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/knW_qTXoQLOpjph3nthQ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29293.png + small + + https://s.yimg.com/iu/api/res/1.2/knW_qTXoQLOpjph3nthQ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29293.png + 0 + K + + K + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29440 + 29440 + + Michael Thomas + Michael + Thomas + Michael + Thomas + + nfl.p.29440 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/veXnMKGj8p6kRtwoLAitSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29440.png + small + + https://s.yimg.com/iu/api/res/1.2/veXnMKGj8p6kRtwoLAitSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29440.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30061 + 30061 + + Troymaine Pope + Troymaine + Pope + Troymaine + Pope + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30061 + nfl.t.34 + Houston Texans + Hou + + 10 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/sERvsK4r1pFRnVlYy77yCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30061.png + small + + https://s.yimg.com/iu/api/res/1.2/sERvsK4r1pFRnVlYy77yCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30061.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28185 + 28185 + + George Atkinson III + George + Atkinson III + George + Atkinson III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28185 + nfl.t.20 + New York Jets + NYJ + + 11 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/5lORoA94vb0tR79yuLNZ5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28185.png + small + + https://s.yimg.com/iu/api/res/1.2/5lORoA94vb0tR79yuLNZ5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28185.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30254 + 30254 + + Chad Hansen + Chad + Hansen + Chad + Hansen + + nfl.p.30254 + nfl.t.17 + New England Patriots + NE + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/qWjg4JKG.SVQLpyOxDuLzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30254.png + small + + https://s.yimg.com/iu/api/res/1.2/qWjg4JKG.SVQLpyOxDuLzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30254.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28572 + 28572 + + Kaelin Clay + Kaelin + Clay + Kaelin + Clay + + nfl.p.28572 + nfl.t.19 + New York Giants + NYG + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/6zyuYAnRm.NRBMTEApBrxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28572.png + small + + https://s.yimg.com/iu/api/res/1.2/6zyuYAnRm.NRBMTEApBrxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28572.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28414 + 28414 + + Breshad Perriman + Breshad + Perriman + Breshad + Perriman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28414 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/2QDoqWh7TwmQ8AdGF_1zAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28414.png + small + + https://s.yimg.com/iu/api/res/1.2/2QDoqWh7TwmQ8AdGF_1zAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28414.png + 0 + O + + WR + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26753 + 26753 + + Kyle Juszczyk + Kyle + Juszczyk + Kyle + Juszczyk + + nfl.p.26753 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/41ClwzwwAZl2PG2qYEcryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26753.png + small + + https://s.yimg.com/iu/api/res/1.2/41ClwzwwAZl2PG2qYEcryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26753.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29471 + 29471 + + Daniel Lasco II + Daniel + Lasco II + Daniel + Lasco II + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.29471 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/0_VxwC._6FoPzRcs7xc_oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/29471.png + small + + https://s.yimg.com/iu/api/res/1.2/0_VxwC._6FoPzRcs7xc_oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/29471.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28283 + 28283 + + Fitzgerald Toussaint + Fitzgerald + Toussaint + Fitzgerald + Toussaint + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28283 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/Qy.UYWuGD2hfgturEKSd9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28283.png + small + + https://s.yimg.com/iu/api/res/1.2/Qy.UYWuGD2hfgturEKSd9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28283.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29825 + 29825 + + Tanner McEvoy + Tanner + McEvoy + Tanner + McEvoy + + nfl.p.29825 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/O1JiPEfMDyyAMDETcukg_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29825.png + small + + https://s.yimg.com/iu/api/res/1.2/O1JiPEfMDyyAMDETcukg_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29825.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26719 + 26719 + + Knile Davis + Knile + Davis + Knile + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26719 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/zi24f_3ujvYlUhUtLTBY2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26719.png + small + + https://s.yimg.com/iu/api/res/1.2/zi24f_3ujvYlUhUtLTBY2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26719.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28583 + 28583 + + Malcolm Johnson + Malcolm + Johnson + Malcolm + Johnson + + IR + Injured Reserve + undisclosed + nfl.p.28583 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/dLLyHkUMYx3nFZaa.Wj8kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28583.png + small + + https://s.yimg.com/iu/api/res/1.2/dLLyHkUMYx3nFZaa.Wj8kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28583.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27167 + 27167 + + Benny Cunningham + Benny + Cunningham + Benny + Cunningham + + nfl.p.27167 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/Y6X2VA98d7af.r2Io7hziw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27167.png + small + + https://s.yimg.com/iu/api/res/1.2/Y6X2VA98d7af.r2Io7hziw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27167.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28562 + 28562 + + Cameron Artis-Payne + Cameron + Artis-Payne + Cameron + Artis-Payne + + nfl.p.28562 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/UPx5ANu6OhS_OPFN33.H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28562.png + small + + https://s.yimg.com/iu/api/res/1.2/UPx5ANu6OhS_OPFN33.H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28562.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9449 + 9449 + + Cedric Peerman + Cedric + Peerman + Cedric + Peerman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9449 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/nGKKC3PExFpnXHmv.b7rjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/9449.png + small + + https://s.yimg.com/iu/api/res/1.2/nGKKC3PExFpnXHmv.b7rjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/9449.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29913 + 29913 + + Ben Braunecker + Ben + Braunecker + Ben + Braunecker + + nfl.p.29913 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/_9c4v0Q27mT_07e.1gvbLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29913.png + small + + https://s.yimg.com/iu/api/res/1.2/_9c4v0Q27mT_07e.1gvbLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29913.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28496 + 28496 + + Jalston Fowler + Jalston + Fowler + Jalston + Fowler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28496 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/imhttFm77PLVowOQFO_j_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28496.png + small + + https://s.yimg.com/iu/api/res/1.2/imhttFm77PLVowOQFO_j_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28496.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29872 + 29872 + + D.J. Foster + D.J. + Foster + D.J. + Foster + + IR + Injured Reserve + knee + nfl.p.29872 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/4c1A6QI0_rBQVce2TVE8Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29872.png + small + + https://s.yimg.com/iu/api/res/1.2/4c1A6QI0_rBQVce2TVE8Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29872.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29257 + 29257 + + Laquon Treadwell + Laquon + Treadwell + Laquon + Treadwell + + nfl.p.29257 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/Wih.zUJAlPp.whMyTnujmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29257.png + small + + https://s.yimg.com/iu/api/res/1.2/Wih.zUJAlPp.whMyTnujmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29257.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.25379 + 25379 + + Kamar Aiken + Kamar + Aiken + Kamar + Aiken + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25379 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/G31bB44eKfTXMsyPHGF_Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25379.png + small + + https://s.yimg.com/iu/api/res/1.2/G31bB44eKfTXMsyPHGF_Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25379.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29703 + 29703 + + Alex Erickson + Alex + Erickson + Alex + Erickson + + nfl.p.29703 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/Ycy3QM9HWRYJxT_20Q8HAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29703.png + small + + https://s.yimg.com/iu/api/res/1.2/Ycy3QM9HWRYJxT_20Q8HAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29703.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28887 + 28887 + + Zach Zenner + Zach + Zenner + Zach + Zenner + + IR + Injured Reserve + undisclosed + nfl.p.28887 + nfl.t.8 + Detroit Lions + Det + + 6 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/4LSaSiUgu7LNnFJo5eqE3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28887.png + small + + https://s.yimg.com/iu/api/res/1.2/4LSaSiUgu7LNnFJo5eqE3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28887.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30192 + 30192 + + ArDarius Stewart + ArDarius + Stewart + ArDarius + Stewart + + SUSP + Suspended + nfl.p.30192 + nfl.t.20 + New York Jets + NYJ + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/UU2gwtrHIGr.7IPjqZLuLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30192.png + small + + https://s.yimg.com/iu/api/res/1.2/UU2gwtrHIGr.7IPjqZLuLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30192.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30219 + 30219 + + Amara Darboh + Amara + Darboh + Amara + Darboh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30219 + nfl.t.17 + New England Patriots + NE + + 11 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/G2pEqvLL1qbiTT3FTAg9lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30219.png + small + + https://s.yimg.com/iu/api/res/1.2/G2pEqvLL1qbiTT3FTAg9lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30219.png + 0 + O + + WR + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30720 + 30720 + + Tanner Gentry + Tanner + Gentry + Tanner + Gentry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30720 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/o9ZlJ5cpu.cN62KYqf0zIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30720.png + small + + https://s.yimg.com/iu/api/res/1.2/o9ZlJ5cpu.cN62KYqf0zIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30720.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29383 + 29383 + + Paul Perkins + Paul + Perkins + Paul + Perkins + + O + Out + nfl.p.29383 + nfl.t.19 + New York Giants + NYG + + 9 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/8eL3OO5WSyikKgP2xS97dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29383.png + small + + https://s.yimg.com/iu/api/res/1.2/8eL3OO5WSyikKgP2xS97dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29383.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8497 + 8497 + + Clark Harris + Clark + Harris + Clark + Harris + + nfl.p.8497 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 46 + TE + + https://s.yimg.com/iu/api/res/1.2/037vmO3opGUQrRxFkajAlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8497.png + small + + https://s.yimg.com/iu/api/res/1.2/037vmO3opGUQrRxFkajAlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8497.png + 0 + O + + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26535 + 26535 + + Jamize Olawale + Jamize + Olawale + Jamize + Olawale + + nfl.p.26535 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 49 + RB + + https://s.yimg.com/iu/api/res/1.2/Zuv8cF16INaysOy5OhrHPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26535.png + small + + https://s.yimg.com/iu/api/res/1.2/Zuv8cF16INaysOy5OhrHPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26535.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29775 + 29775 + + Bryce Treggs + Bryce + Treggs + Bryce + Treggs + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29775 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/A3360y6IDkM43ULIIZT6tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29775.png + small + + https://s.yimg.com/iu/api/res/1.2/A3360y6IDkM43ULIIZT6tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29775.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26702 + 26702 + + Markus Wheaton + Markus + Wheaton + Markus + Wheaton + + nfl.p.26702 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/nUmOy9Cn4Gv29YY4.XzSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26702.png + small + + https://s.yimg.com/iu/api/res/1.2/nUmOy9Cn4Gv29YY4.XzSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26702.png + 0 + O + + WR + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29854 + 29854 + + Tommylee Lewis + Tommylee + Lewis + Tommylee + Lewis + + nfl.p.29854 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/gGZ9uk2wFAHgyO2NEHEfzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29854.png + small + + https://s.yimg.com/iu/api/res/1.2/gGZ9uk2wFAHgyO2NEHEfzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29854.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30861 + 30861 + + Chris Thompson + Chris + Thompson + Chris + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30861 + nfl.t.34 + Houston Texans + Hou + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/trsKTQsvmzFb4R7VoOKP7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30861.png + small + + https://s.yimg.com/iu/api/res/1.2/trsKTQsvmzFb4R7VoOKP7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30861.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26838 + 26838 + + Tommy Bohanon + Tommy + Bohanon + Tommy + Bohanon + + nfl.p.26838 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lJnVKjkJy_gV7W89DrWIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26838.png + small + + https://s.yimg.com/iu/api/res/1.2/lJnVKjkJy_gV7W89DrWIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26838.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27369 + 27369 + + Brett Maher + Brett + Maher + Brett + Maher + + nfl.p.27369 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/BwOW9TRNIJKjOBvrOld58g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27369.png + small + + https://s.yimg.com/iu/api/res/1.2/BwOW9TRNIJKjOBvrOld58g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27369.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31482 + 31482 + + Eddy Pineiro + Eddy + Pineiro + Eddy + Pineiro + + IR + Injured Reserve + undisclosed + nfl.p.31482 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + K + + K + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31606 + 31606 + + Tyler Davis + Tyler + Davis + Tyler + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31606 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31361 + 31361 + + David Marvin + David + Marvin + David + Marvin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31361 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 1 + K + + https://s.yimg.com/iu/api/res/1.2/ro9s7msPRY5kRiEKGDy4aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31361.png + small + + https://s.yimg.com/iu/api/res/1.2/ro9s7msPRY5kRiEKGDy4aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31361.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31265 + 31265 + + Trevor Moore + Trevor + Moore + Trevor + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31265 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/UUGPF1K4L4Ug9ceTKvIokA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31265.png + small + + https://s.yimg.com/iu/api/res/1.2/UUGPF1K4L4Ug9ceTKvIokA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31265.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31366 + 31366 + + Michael Badgley + Michael + Badgley + Michael + Badgley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31366 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 1 + K + + https://s.yimg.com/iu/api/res/1.2/jiET0oTBW3fK0ToOHesKLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31366.png + small + + https://s.yimg.com/iu/api/res/1.2/jiET0oTBW3fK0ToOHesKLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31366.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31310 + 31310 + + Matt McCrane + Matt + McCrane + Matt + McCrane + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31310 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 1 + K + + https://s.yimg.com/iu/api/res/1.2/WCiF3cgePJkqPXpXpbFmgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31310.png + small + + https://s.yimg.com/iu/api/res/1.2/WCiF3cgePJkqPXpXpbFmgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31310.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29834 + 29834 + + Marshall Koehn + Marshall + Koehn + Marshall + Koehn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29834 + nfl.t.19 + New York Giants + NYG + + 9 + + 8 + K + + https://s.yimg.com/iu/api/res/1.2/EXaNFleyJRoCnuf8XGD6hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29834.png + small + + https://s.yimg.com/iu/api/res/1.2/EXaNFleyJRoCnuf8XGD6hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29834.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31538 + 31538 + + Greg Joseph + Greg + Joseph + Greg + Joseph + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31538 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29915 + 29915 + + Jonathan Brown + Jonathan + Brown + Jonathan + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29915 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/gq6Vt7sNHHdvB3DyGkw7ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29915.png + small + + https://s.yimg.com/iu/api/res/1.2/gq6Vt7sNHHdvB3DyGkw7ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29915.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31199 + 31199 + + Jason Sanders + Jason + Sanders + Jason + Sanders + + nfl.p.31199 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/dCtblAjcHBiItC3wBxyEaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31199.png + small + + https://s.yimg.com/iu/api/res/1.2/dCtblAjcHBiItC3wBxyEaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31199.png + 0 + K + + K + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29712 + 29712 + + Taylor Bertolet + Taylor + Bertolet + Taylor + Bertolet + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29712 + nfl.t.20 + New York Jets + NYJ + + 11 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/nmmEoYnWflevlM_qV2ky5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29712.png + small + + https://s.yimg.com/iu/api/res/1.2/nmmEoYnWflevlM_qV2ky5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29712.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29793 + 29793 + + Ross Martin + Ross + Martin + Ross + Martin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29793 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/Ucg5hehVJIKHFk8ZJkkZWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29793.png + small + + https://s.yimg.com/iu/api/res/1.2/Ucg5hehVJIKHFk8ZJkkZWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29793.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30038 + 30038 + + Sam Ficken + Sam + Ficken + Sam + Ficken + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30038 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/A8Qiab7o88uKcy2Qaee98w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30038.png + small + + https://s.yimg.com/iu/api/res/1.2/A8Qiab7o88uKcy2Qaee98w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30038.png + 0 + K + + K + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9347 + 9347 + + Brandon Tate + Brandon + Tate + Brandon + Tate + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9347 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/q9ImKnfWIrOECEvF0B5AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9347.png + small + + https://s.yimg.com/iu/api/res/1.2/q9ImKnfWIrOECEvF0B5AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9347.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30269 + 30269 + + Brian Hill + Brian + Hill + Brian + Hill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30269 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/CvUtZqHYwBSQDNC0CEWBiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30269.png + small + + https://s.yimg.com/iu/api/res/1.2/CvUtZqHYwBSQDNC0CEWBiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30269.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30246 + 30246 + + Ryan Switzer + Ryan + Switzer + Ryan + Switzer + + nfl.p.30246 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/04eME3VfVmSCWM0vQyX6hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30246.png + small + + https://s.yimg.com/iu/api/res/1.2/04eME3VfVmSCWM0vQyX6hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30246.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29680 + 29680 + + Byron Marshall + Byron + Marshall + Byron + Marshall + + Q + Questionable + nfl.p.29680 + nfl.t.28 + Washington Redskins + Was + + 4 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/q2QjfAwrMHSouiqxGmUcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29680.png + small + + https://s.yimg.com/iu/api/res/1.2/q2QjfAwrMHSouiqxGmUcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29680.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30531 + 30531 + + JoJo Natson Jr. + JoJo + Natson Jr. + JoJo + Natson Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30531 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/nHpfez5X_dbAMLGCtfghhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30531.png + small + + https://s.yimg.com/iu/api/res/1.2/nHpfez5X_dbAMLGCtfghhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30531.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30352 + 30352 + + Noah Brown + Noah + Brown + Noah + Brown + + IR + Injured Reserve + hamstring + nfl.p.30352 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/wXOQq5sawcpqV0d3ewvo4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30352.png + small + + https://s.yimg.com/iu/api/res/1.2/wXOQq5sawcpqV0d3ewvo4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30352.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29678 + 29678 + + Marcus Johnson + Marcus + Johnson + Marcus + Johnson + + nfl.p.29678 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/ToDETSh_H0fVSdEPhaLRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29678.png + small + + https://s.yimg.com/iu/api/res/1.2/ToDETSh_H0fVSdEPhaLRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29678.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29351 + 29351 + + Pharoh Cooper + Pharoh + Cooper + Pharoh + Cooper + + nfl.p.29351 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/WF3MDmzrEaU2MDwY3j7mQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29351.png + small + + https://s.yimg.com/iu/api/res/1.2/WF3MDmzrEaU2MDwY3j7mQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29351.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.25970 + 25970 + + Brittan Golden + Brittan + Golden + Brittan + Golden + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25970 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/EP6iaSoztJBPj7NupqybTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25970.png + small + + https://s.yimg.com/iu/api/res/1.2/EP6iaSoztJBPj7NupqybTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25970.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30252 + 30252 + + Jehu Chesson + Jehu + Chesson + Jehu + Chesson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30252 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/XLRspgy85TEmpLJy_HFVrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30252.png + small + + https://s.yimg.com/iu/api/res/1.2/XLRspgy85TEmpLJy_HFVrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30252.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28071 + 28071 + + Bernard Reedy + Bernard + Reedy + Bernard + Reedy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28071 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/xSnOU8gcMYfIfOxencOfwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28071.png + small + + https://s.yimg.com/iu/api/res/1.2/xSnOU8gcMYfIfOxencOfwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28071.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30850 + 30850 + + Trey Edmunds + Trey + Edmunds + Trey + Edmunds + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30850 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/8ImP0oah4KyHOFzljslpCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30850.png + small + + https://s.yimg.com/iu/api/res/1.2/8ImP0oah4KyHOFzljslpCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30850.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28272 + 28272 + + Branden Oliver + Branden + Oliver + Branden + Oliver + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28272 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/aCJGDiaP4M9UClELe3Gxpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/28272.png + small + + https://s.yimg.com/iu/api/res/1.2/aCJGDiaP4M9UClELe3Gxpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/28272.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24923 + 24923 + + Anthony Sherman + Anthony + Sherman + Anthony + Sherman + + nfl.p.24923 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/qmIuIr17M_y9HdXGN2A0ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24923.png + small + + https://s.yimg.com/iu/api/res/1.2/qmIuIr17M_y9HdXGN2A0ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24923.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29821 + 29821 + + Tre Madden + Tre + Madden + Tre + Madden + + nfl.p.29821 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/EXVFGf_xmNQcszshtviJQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29821.png + small + + https://s.yimg.com/iu/api/res/1.2/EXVFGf_xmNQcszshtviJQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29821.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29397 + 29397 + + Trevor Davis + Trevor + Davis + Trevor + Davis + + nfl.p.29397 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/7uYN6ZzKOskUxJtJTgNV_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29397.png + small + + https://s.yimg.com/iu/api/res/1.2/7uYN6ZzKOskUxJtJTgNV_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29397.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.28535 + 28535 + + Brett Hundley + Brett + Hundley + Brett + Hundley + + nfl.p.28535 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/jskwWIFRz_.ZKK2KHGzxYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28535.png + small + + https://s.yimg.com/iu/api/res/1.2/jskwWIFRz_.ZKK2KHGzxYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28535.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30739 + 30739 + + Shane Smith + Shane + Smith + Shane + Smith + + nfl.p.30739 + nfl.t.19 + New York Giants + NYG + + 9 + + 43 + RB,TE + + https://s.yimg.com/iu/api/res/1.2/hUH_vbZoDT6G2WuJKhSo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30739.png + small + + https://s.yimg.com/iu/api/res/1.2/hUH_vbZoDT6G2WuJKhSo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30739.png + 0 + O + + RB + TE + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29433 + 29433 + + Cody Core + Cody + Core + Cody + Core + + Q + Questionable + nfl.p.29433 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/WVM6rWAT_oG6T59yC4jllQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29433.png + small + + https://s.yimg.com/iu/api/res/1.2/WVM6rWAT_oG6T59yC4jllQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29433.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29470 + 29470 + + Dwayne Washington + Dwayne + Washington + Dwayne + Washington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29470 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/hbFHWf83IYAn9OrDSxGR8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29470.png + small + + https://s.yimg.com/iu/api/res/1.2/hbFHWf83IYAn9OrDSxGR8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29470.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30550 + 30550 + + Victor Bolden Jr. + Victor + Bolden Jr. + Victor + Bolden Jr. + + SUSP + Suspended + nfl.p.30550 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/VwwC8JWDbBAwrZqPwu_Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30550.png + small + + https://s.yimg.com/iu/api/res/1.2/VwwC8JWDbBAwrZqPwu_Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30550.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24014 + 24014 + + Arrelious Benn + Arrelious + Benn + Arrelious + Benn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24014 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/39ksBKwiEdN7Q5vdC.ypxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/24014.png + small + + https://s.yimg.com/iu/api/res/1.2/39ksBKwiEdN7Q5vdC.ypxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/24014.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27764 + 27764 + + Jeff Janis + Jeff + Janis + Jeff + Janis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27764 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/1UvRAsUA8D4fKFTdL7dlgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27764.png + small + + https://s.yimg.com/iu/api/res/1.2/1UvRAsUA8D4fKFTdL7dlgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27764.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26805 + 26805 + + Kenjon Barner + Kenjon + Barner + Kenjon + Barner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26805 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/495djpUkEb7wL2wonJsPjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26805.png + small + + https://s.yimg.com/iu/api/res/1.2/495djpUkEb7wL2wonJsPjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26805.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26596 + 26596 + + Fozzy Whittaker + Fozzy + Whittaker + Fozzy + Whittaker + + IR + Injured Reserve + torn right ACL + nfl.p.26596 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/fu_ifFJoR.vPPaaj0_aROQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26596.png + small + + https://s.yimg.com/iu/api/res/1.2/fu_ifFJoR.vPPaaj0_aROQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26596.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28740 + 28740 + + Quan Bray + Quan + Bray + Quan + Bray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28740 + nfl.t.34 + Houston Texans + Hou + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/tlcbUd_O_dTE1LJv.0QRSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28740.png + small + + https://s.yimg.com/iu/api/res/1.2/tlcbUd_O_dTE1LJv.0QRSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28740.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30285 + 30285 + + Isaiah McKenzie + Isaiah + McKenzie + Isaiah + McKenzie + + nfl.p.30285 + nfl.t.7 + Denver Broncos + Den + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/uLkKcRNpJ.Q5Of9OsFlr3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30285.png + small + + https://s.yimg.com/iu/api/res/1.2/uLkKcRNpJ.Q5Of9OsFlr3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30285.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24063 + 24063 + + Andre Roberts + Andre + Roberts + Andre + Roberts + + nfl.p.24063 + nfl.t.20 + New York Jets + NYJ + + 11 + + 3 + WR + + https://s.yimg.com/iu/api/res/1.2/SvAx3XpVZNjLTOJslW.n5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24063.png + small + + https://s.yimg.com/iu/api/res/1.2/SvAx3XpVZNjLTOJslW.n5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24063.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29951 + 29951 + + C.J. Ham + C.J. + Ham + C.J. + Ham + + nfl.p.29951 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/OI6xb0T27TqFiDH083wW8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29951.png + small + + https://s.yimg.com/iu/api/res/1.2/OI6xb0T27TqFiDH083wW8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29951.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8297 + 8297 + + Drew Stanton + Drew + Stanton + Drew + Stanton + + nfl.p.8297 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/FqMSV8gDmaPBjWSGK4pT4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8297.png + small + + https://s.yimg.com/iu/api/res/1.2/FqMSV8gDmaPBjWSGK4pT4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8297.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29396 + 29396 + + Kevin Hogan + Kevin + Hogan + Kevin + Hogan + + nfl.p.29396 + nfl.t.7 + Denver Broncos + Den + + 10 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/gAWSWZbH.5Pdp7nBg8c1NQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29396.png + small + + https://s.yimg.com/iu/api/res/1.2/gAWSWZbH.5Pdp7nBg8c1NQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29396.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24963 + 24963 + + Dwayne Harris + Dwayne + Harris + Dwayne + Harris + + nfl.p.24963 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/tTv4LUn1cA0WpRuw0shc.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24963.png + small + + https://s.yimg.com/iu/api/res/1.2/tTv4LUn1cA0WpRuw0shc.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24963.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26696 + 26696 + + Mike Glennon + Mike + Glennon + Mike + Glennon + + nfl.p.26696 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/MK.9gpsQAsOac89crUVnbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26696.png + small + + https://s.yimg.com/iu/api/res/1.2/MK.9gpsQAsOac89crUVnbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26696.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28594 + 28594 + + Aaron Ripkowski + Aaron + Ripkowski + Aaron + Ripkowski + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28594 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/_zaNmGXfEKZcb4mx7.aj_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28594.png + small + + https://s.yimg.com/iu/api/res/1.2/_zaNmGXfEKZcb4mx7.aj_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28594.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8609 + 8609 + + Eric Weems + Eric + Weems + Eric + Weems + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8609 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/v9m2bp8t9GiTWhHBVTxzmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8609.png + small + + https://s.yimg.com/iu/api/res/1.2/v9m2bp8t9GiTWhHBVTxzmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8609.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29805 + 29805 + + Lawrence Thomas + Lawrence + Thomas + Lawrence + Thomas + + nfl.p.29805 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/ev8VxDLaQSLkmf1cqqYRjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29805.png + small + + https://s.yimg.com/iu/api/res/1.2/ev8VxDLaQSLkmf1cqqYRjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29805.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8930 + 8930 + + Matthew Slater + Matthew + Slater + Matthew + Slater + + Q + Questionable + nfl.p.8930 + nfl.t.17 + New England Patriots + NE + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/nlazJ.KVLJ_3RoaE0jlbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8930.png + small + + https://s.yimg.com/iu/api/res/1.2/nlazJ.KVLJ_3RoaE0jlbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8930.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28068 + 28068 + + Roosevelt Nix + Roosevelt + Nix + Roosevelt + Nix + + nfl.p.28068 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/ApDYXCZkZgqs90hdQCUWNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28068.png + small + + https://s.yimg.com/iu/api/res/1.2/ApDYXCZkZgqs90hdQCUWNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28068.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29410 + 29410 + + Andy Janovich + Andy + Janovich + Andy + Janovich + + nfl.p.29410 + nfl.t.7 + Denver Broncos + Den + + 10 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/q8gKWHCoM8icqIb8gX9Drw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29410.png + small + + https://s.yimg.com/iu/api/res/1.2/q8gKWHCoM8icqIb8gX9Drw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29410.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27135 + 27135 + + Zach Line + Zach + Line + Zach + Line + + nfl.p.27135 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/mRGyQl8bSBtv6dkHQIHajA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27135.png + small + + https://s.yimg.com/iu/api/res/1.2/mRGyQl8bSBtv6dkHQIHajA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27135.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28223 + 28223 + + Senorise Perry + Senorise + Perry + Senorise + Perry + + nfl.p.28223 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/u9gprorfyYRRzjNUsq_6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28223.png + small + + https://s.yimg.com/iu/api/res/1.2/u9gprorfyYRRzjNUsq_6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28223.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29353 + 29353 + + Tyler Ervin + Tyler + Ervin + Tyler + Ervin + + nfl.p.29353 + nfl.t.34 + Houston Texans + Hou + + 10 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/HWlakvoYfDx4G2.wSr9FlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29353.png + small + + https://s.yimg.com/iu/api/res/1.2/HWlakvoYfDx4G2.wSr9FlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29353.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30365 + 30365 + + Matthew Dayes + Matthew + Dayes + Matthew + Dayes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30365 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/0_zseACsfB.nsgxyn8Goow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30365.png + small + + https://s.yimg.com/iu/api/res/1.2/0_zseACsfB.nsgxyn8Goow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30365.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27790 + 27790 + + David Fluellen + David + Fluellen + David + Fluellen + + nfl.p.27790 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/jsJvscyD1gxtbyoIOHuFnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27790.png + small + + https://s.yimg.com/iu/api/res/1.2/jsJvscyD1gxtbyoIOHuFnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27790.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29631 + 29631 + + Kalif Raymond + Kalif + Raymond + Kalif + Raymond + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29631 + nfl.t.19 + New York Giants + NYG + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/JEO1p2xEaXYAAVcUq47M9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29631.png + small + + https://s.yimg.com/iu/api/res/1.2/JEO1p2xEaXYAAVcUq47M9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29631.png + 0 + O + + WR + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26299 + 26299 + + Derrick Coleman + Derrick + Coleman + Derrick + Coleman + + nfl.p.26299 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/RQ7Oki360uwSHTRRmeNyHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26299.png + small + + https://s.yimg.com/iu/api/res/1.2/RQ7Oki360uwSHTRRmeNyHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26299.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28556 + 28556 + + Michael Burton + Michael + Burton + Michael + Burton + + nfl.p.28556 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/yCtWOrxfJamFTkcPppvCvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28556.png + small + + https://s.yimg.com/iu/api/res/1.2/yCtWOrxfJamFTkcPppvCvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28556.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24939 + 24939 + + T.J. Yates + T.J. + Yates + T.J. + Yates + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24939 + nfl.t.34 + Houston Texans + Hou + + 10 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/v2v8WVFriAIKtrCcRkae7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24939.png + small + + https://s.yimg.com/iu/api/res/1.2/v2v8WVFriAIKtrCcRkae7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24939.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29178 + 29178 + + Terrell Watson + Terrell + Watson + Terrell + Watson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29178 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/30PDQCN2QsgAY8q6EN70JA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29178.png + small + + https://s.yimg.com/iu/api/res/1.2/30PDQCN2QsgAY8q6EN70JA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29178.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28654 + 28654 + + Raheem Mostert + Raheem + Mostert + Raheem + Mostert + + nfl.p.28654 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/2mc8zfZAk10fu5IYBl1ILg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28654.png + small + + https://s.yimg.com/iu/api/res/1.2/2mc8zfZAk10fu5IYBl1ILg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28654.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26389 + 26389 + + Brandon Bolden + Brandon + Bolden + Brandon + Bolden + + nfl.p.26389 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/JHOSfFYoObpgW3_fuVSsQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26389.png + small + + https://s.yimg.com/iu/api/res/1.2/JHOSfFYoObpgW3_fuVSsQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26389.png + 0 + O + + RB + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28874 + 28874 + + Akeem Hunt + Akeem + Hunt + Akeem + Hunt + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28874 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/QsMzEXwiD25mhorFmcvHLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28874.png + small + + https://s.yimg.com/iu/api/res/1.2/QsMzEXwiD25mhorFmcvHLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28874.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25712 + 25712 + + Robert Griffin III + Robert + Griffin III + Robert + Griffin III + + nfl.p.25712 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/47NtbvitvbFBMlzyS.sJgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25712.png + small + + https://s.yimg.com/iu/api/res/1.2/47NtbvitvbFBMlzyS.sJgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25712.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29432 + 29432 + + Derek Watt + Derek + Watt + Derek + Watt + + nfl.p.29432 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/WhSItqza2GwQwcbhrufkkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29432.png + small + + https://s.yimg.com/iu/api/res/1.2/WhSItqza2GwQwcbhrufkkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29432.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29599 + 29599 + + Josh Ferguson + Josh + Ferguson + Josh + Ferguson + + IR + Injured Reserve + undisclosed + nfl.p.29599 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/ABZFJV0b0BRyRz94K4ApZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29599.png + small + + https://s.yimg.com/iu/api/res/1.2/ABZFJV0b0BRyRz94K4ApZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29599.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27739 + 27739 + + Jay Prosch + Jay + Prosch + Jay + Prosch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27739 + nfl.t.34 + Houston Texans + Hou + + 10 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/.4MqtLGYM.1m9ERkt90mFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27739.png + small + + https://s.yimg.com/iu/api/res/1.2/.4MqtLGYM.1m9ERkt90mFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27739.png + 0 + O + + RB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25158 + 25158 + + Patrick DiMarco + Patrick + DiMarco + Patrick + DiMarco + + nfl.p.25158 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/pza5rMuAeJSQ51_jTE0m3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25158.png + small + + https://s.yimg.com/iu/api/res/1.2/pza5rMuAeJSQ51_jTE0m3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25158.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24760 + 24760 + + James Develin + James + Develin + James + Develin + + nfl.p.24760 + nfl.t.17 + New England Patriots + NE + + 11 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/CdtFSWekjP4MgnIzMiVv8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24760.png + small + + https://s.yimg.com/iu/api/res/1.2/CdtFSWekjP4MgnIzMiVv8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24760.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28141 + 28141 + + Keith Smith + Keith + Smith + Keith + Smith + + nfl.p.28141 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/PsHYEFJrKuO_l2hwPp9nVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28141.png + small + + https://s.yimg.com/iu/api/res/1.2/PsHYEFJrKuO_l2hwPp9nVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28141.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26721 + 26721 + + Matt Barkley + Matt + Barkley + Matt + Barkley + + IR + Injured Reserve + knee + nfl.p.26721 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/Yw4hJyESGXbuW0yYZ1i11A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26721.png + small + + https://s.yimg.com/iu/api/res/1.2/Yw4hJyESGXbuW0yYZ1i11A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26721.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29431 + 29431 + + Danny Vitale + Danny + Vitale + Danny + Vitale + + IR + Injured Reserve + undisclosed + nfl.p.29431 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/_iFd2BZkHJz42cTIVxgvzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29431.png + small + + https://s.yimg.com/iu/api/res/1.2/_iFd2BZkHJz42cTIVxgvzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29431.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24912 + 24912 + + Taiwan Jones + Taiwan + Jones + Taiwan + Jones + + nfl.p.24912 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/Qb7oHmtjAoi4pUCdphThvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24912.png + small + + https://s.yimg.com/iu/api/res/1.2/Qb7oHmtjAoi4pUCdphThvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24912.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24970 + 24970 + + Jordan Todman + Jordan + Todman + Jordan + Todman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24970 + nfl.t.34 + Houston Texans + Hou + + 10 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/h8Sw5mRfYe05MsAPX9Iiqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24970.png + small + + https://s.yimg.com/iu/api/res/1.2/h8Sw5mRfYe05MsAPX9Iiqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24970.png + 0 + O + + RB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9547 + 9547 + + Brian Hoyer + Brian + Hoyer + Brian + Hoyer + + nfl.p.9547 + nfl.t.17 + New England Patriots + NE + + 11 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/SFdTBUdRYBv5UAQo4xAcJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9547.png + small + + https://s.yimg.com/iu/api/res/1.2/SFdTBUdRYBv5UAQo4xAcJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9547.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29327 + 29327 + + Cody Kessler + Cody + Kessler + Cody + Kessler + + nfl.p.29327 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/8RSHixm.w1enn79K0u7Lbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29327.png + small + + https://s.yimg.com/iu/api/res/1.2/8RSHixm.w1enn79K0u7Lbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29327.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30614 + 30614 + + Taysom Hill + Taysom + Hill + Taysom + Hill + + nfl.p.30614 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/ABf8hjN3mSNXcm_Xa9L1Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30614.png + small + + https://s.yimg.com/iu/api/res/1.2/ABf8hjN3mSNXcm_Xa9L1Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30614.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.27692 + 27692 + + AJ McCarron + AJ + McCarron + AJ + McCarron + + nfl.p.27692 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 15 + QB + + https://s.yimg.com/iu/api/res/1.2/_BFqv32sOMm.b.UafvwoHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27692.png + small + + https://s.yimg.com/iu/api/res/1.2/_BFqv32sOMm.b.UafvwoHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27692.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30977 + 30977 + + Josh Allen + Josh + Allen + Josh + Allen + + nfl.p.30977 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/Wstxxgt3AXMTkPHC512ZcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30977.png + small + + https://s.yimg.com/iu/api/res/1.2/Wstxxgt3AXMTkPHC512ZcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30977.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.27742 + 27742 + + Garrett Gilbert + Garrett + Gilbert + Garrett + Gilbert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27742 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/0MRsEIDMDmVvIFRjYPitwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27742.png + small + + https://s.yimg.com/iu/api/res/1.2/0MRsEIDMDmVvIFRjYPitwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27742.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26346 + 26346 + + Austin Davis + Austin + Davis + Austin + Davis + + IR + Injured Reserve + undisclosed + nfl.p.26346 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/_CtGX5ohz5.gmTrZhuXeZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26346.png + small + + https://s.yimg.com/iu/api/res/1.2/_CtGX5ohz5.gmTrZhuXeZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26346.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27878 + 27878 + + Stephen Morris + Stephen + Morris + Stephen + Morris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27878 + nfl.t.34 + Houston Texans + Hou + + 10 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/GwyCjsmwzCEbCMOjsPz9wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27878.png + small + + https://s.yimg.com/iu/api/res/1.2/GwyCjsmwzCEbCMOjsPz9wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27878.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31002 + 31002 + + Lamar Jackson + Lamar + Jackson + Lamar + Jackson + + nfl.p.31002 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/b1_.C3MFj_IPGthRm7_Xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31002.png + small + + https://s.yimg.com/iu/api/res/1.2/b1_.C3MFj_IPGthRm7_Xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31002.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 3 + 0 + + + + 380.p.31365 + 31365 + + J.T. Barrett + J.T. + Barrett + J.T. + Barrett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31365 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/w0etNm8uYNKXiZV3coS0bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31365.png + small + + https://s.yimg.com/iu/api/res/1.2/w0etNm8uYNKXiZV3coS0bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31365.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31189 + 31189 + + Danny Etling + Danny + Etling + Danny + Etling + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31189 + nfl.t.17 + New England Patriots + NE + + 11 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/RU95PtO1FKrj.SrtDlglhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31189.png + small + + https://s.yimg.com/iu/api/res/1.2/RU95PtO1FKrj.SrtDlglhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31189.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31190 + 31190 + + Alex McGough + Alex + McGough + Alex + McGough + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31190 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/ry4GT8RBHxsHlhjcrkmOHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31190.png + small + + https://s.yimg.com/iu/api/res/1.2/ry4GT8RBHxsHlhjcrkmOHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31190.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30822 + 30822 + + Kyle Sloter + Kyle + Sloter + Kyle + Sloter + + nfl.p.30822 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 1 + QB + + https://s.yimg.com/iu/api/res/1.2/URaZe1o3kkn1_7kcZL7XMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30822.png + small + + https://s.yimg.com/iu/api/res/1.2/URaZe1o3kkn1_7kcZL7XMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30822.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30980 + 30980 + + Josh Rosen + Josh + Rosen + Josh + Rosen + + Q + Questionable + nfl.p.30980 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/rdNROScDktvnHR9qwksQnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30980.png + small + + https://s.yimg.com/iu/api/res/1.2/rdNROScDktvnHR9qwksQnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30980.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 2 + 0 + + + + 380.p.30366 + 30366 + + Chad Kelly + Chad + Kelly + Chad + Kelly + + nfl.p.30366 + nfl.t.7 + Denver Broncos + Den + + 10 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/HuWloRaOE3wB0mJgV.85pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30366.png + small + + https://s.yimg.com/iu/api/res/1.2/HuWloRaOE3wB0mJgV.85pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30366.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31141 + 31141 + + Mike White + Mike + White + Mike + White + + nfl.p.31141 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/g.2f5hZft_GP9hjCwD1zyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31141.png + small + + https://s.yimg.com/iu/api/res/1.2/g.2f5hZft_GP9hjCwD1zyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31141.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28839 + 28839 + + Taylor Heinicke + Taylor + Heinicke + Taylor + Heinicke + + nfl.p.28839 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/UwXZkaSWJNBM5P3V5rCStA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28839.png + small + + https://s.yimg.com/iu/api/res/1.2/UwXZkaSWJNBM5P3V5rCStA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28839.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31239 + 31239 + + Peter Pujals + Peter + Pujals + Peter + Pujals + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31239 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/6DlA8GAlRvV_lUCXD3Q2jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31239.png + small + + https://s.yimg.com/iu/api/res/1.2/6DlA8GAlRvV_lUCXD3Q2jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31239.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29441 + 29441 + + Jeff Driskel + Jeff + Driskel + Jeff + Driskel + + nfl.p.29441 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/VxnqeQjOK9r0nW0GyxMKew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29441.png + small + + https://s.yimg.com/iu/api/res/1.2/VxnqeQjOK9r0nW0GyxMKew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29441.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27170 + 27170 + + Tyler Bray + Tyler + Bray + Tyler + Bray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27170 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/qTZiyoha6pIwCl0nf5i4oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27170.png + small + + https://s.yimg.com/iu/api/res/1.2/qTZiyoha6pIwCl0nf5i4oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27170.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26949 + 26949 + + Ryan Griffin + Ryan + Griffin + Ryan + Griffin + + nfl.p.26949 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/MKqDdmAwJ9e.OeBSThz0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26949.png + small + + https://s.yimg.com/iu/api/res/1.2/MKqDdmAwJ9e.OeBSThz0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26949.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8834 + 8834 + + Chad Henne + Chad + Henne + Chad + Henne + + nfl.p.8834 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/1HtutgNEqhgj3kU8oAjpyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/8834.png + small + + https://s.yimg.com/iu/api/res/1.2/1HtutgNEqhgj3kU8oAjpyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/8834.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31490 + 31490 + + Chase Litton + Chase + Litton + Chase + Litton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31490 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30466 + 30466 + + Alek Torgersen + Alek + Torgersen + Alek + Torgersen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30466 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/J51uVSfV0WopGhjDue_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30466.png + small + + https://s.yimg.com/iu/api/res/1.2/J51uVSfV0WopGhjDue_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30466.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31078 + 31078 + + Kyle Lauletta + Kyle + Lauletta + Kyle + Lauletta + + nfl.p.31078 + nfl.t.19 + New York Giants + NYG + + 9 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/SyTQSpHAgFveNgexjUYXlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31078.png + small + + https://s.yimg.com/iu/api/res/1.2/SyTQSpHAgFveNgexjUYXlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31078.png + 0 + O + + QB + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30788 + 30788 + + Cooper Rush + Cooper + Rush + Cooper + Rush + + nfl.p.30788 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/A6FXltSK.cSD0gyICvN7Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30788.png + small + + https://s.yimg.com/iu/api/res/1.2/A6FXltSK.cSD0gyICvN7Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30788.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31301 + 31301 + + Kyle Allen + Kyle + Allen + Kyle + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31301 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/bdvckEZX86pIXEybnMD6Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31301.png + small + + https://s.yimg.com/iu/api/res/1.2/bdvckEZX86pIXEybnMD6Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31301.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26662 + 26662 + + Geno Smith + Geno + Smith + Geno + Smith + + nfl.p.26662 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/ngo7vbxebu9GTNDo5rEAEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26662.png + small + + https://s.yimg.com/iu/api/res/1.2/ngo7vbxebu9GTNDo5rEAEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26662.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.31741 + 31741 + + Nick Stevens + Nick + Stevens + Nick + Stevens + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31741 + nfl.t.7 + Denver Broncos + Den + + 10 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31803 + 31803 + + John Wolford + John + Wolford + John + Wolford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31803 + nfl.t.20 + New York Jets + NYJ + + 11 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31688 + 31688 + + Nic Shimonek + Nic + Shimonek + Nic + Shimonek + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31688 + nfl.t.28 + Washington Redskins + Was + + 4 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29545 + 29545 + + Joel Stave + Joel + Stave + Joel + Stave + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29545 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/duM9gK4l1rzBTG_LHm9Nog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29545.png + small + + https://s.yimg.com/iu/api/res/1.2/duM9gK4l1rzBTG_LHm9Nog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29545.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31169 + 31169 + + Luke Falk + Luke + Falk + Luke + Falk + + nfl.p.31169 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/bUT466h3iPU0kGGw.cXqOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31169.png + small + + https://s.yimg.com/iu/api/res/1.2/bUT466h3iPU0kGGw.cXqOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31169.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27711 + 27711 + + David Fales + David + Fales + David + Fales + + nfl.p.27711 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/36U2PbQB9NQZCsQsIzjJdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/27711.png + small + + https://s.yimg.com/iu/api/res/1.2/36U2PbQB9NQZCsQsIzjJdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/27711.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9269 + 9269 + + Mark Sanchez + Mark + Sanchez + Mark + Sanchez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9269 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/EfqEmvp8lkmMz3PVVNICkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/9269.png + small + + https://s.yimg.com/iu/api/res/1.2/EfqEmvp8lkmMz3PVVNICkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/9269.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29373 + 29373 + + Cardale Jones + Cardale + Jones + Cardale + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29373 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/l2Sz7pRbGIKQ4L.j5NQJeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29373.png + small + + https://s.yimg.com/iu/api/res/1.2/l2Sz7pRbGIKQ4L.j5NQJeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29373.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30328 + 30328 + + Brad Kaaya + Brad + Kaaya + Brad + Kaaya + + IR + Injured Reserve + undisclosed + nfl.p.30328 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/fVSiwFoMv9pjEh4peaZX4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30328.png + small + + https://s.yimg.com/iu/api/res/1.2/fVSiwFoMv9pjEh4peaZX4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30328.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24060 + 24060 + + Colt McCoy + Colt + McCoy + Colt + McCoy + + Q + Questionable + nfl.p.24060 + nfl.t.28 + Washington Redskins + Was + + 4 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/MHKtdIoT70Fyl15E6iUSrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24060.png + small + + https://s.yimg.com/iu/api/res/1.2/MHKtdIoT70Fyl15E6iUSrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24060.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29421 + 29421 + + Nate Sudfeld + Nate + Sudfeld + Nate + Sudfeld + + nfl.p.29421 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/sWMT37uR9BbMYj_rWgiN4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29421.png + small + + https://s.yimg.com/iu/api/res/1.2/sWMT37uR9BbMYj_rWgiN4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29421.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31279 + 31279 + + Dalton Sturm + Dalton + Sturm + Dalton + Sturm + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31279 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 1 + QB + + https://s.yimg.com/iu/api/res/1.2/DNoO8sRUh09iy5bT0jYH7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31279.png + small + + https://s.yimg.com/iu/api/res/1.2/DNoO8sRUh09iy5bT0jYH7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31279.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25171 + 25171 + + Scott Tolzien + Scott + Tolzien + Scott + Tolzien + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25171 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 16 + QB + + https://s.yimg.com/iu/api/res/1.2/oUUwFU4fQC12PqjojXO20g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25171.png + small + + https://s.yimg.com/iu/api/res/1.2/oUUwFU4fQC12PqjojXO20g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25171.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27429 + 27429 + + Matt McGloin + Matt + McGloin + Matt + McGloin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27429 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/IlCkF73SA0R0qQACtj7C7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27429.png + small + + https://s.yimg.com/iu/api/res/1.2/IlCkF73SA0R0qQACtj7C7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27429.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.8937 + 8937 + + Josh Johnson + Josh + Johnson + Josh + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8937 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/PVwYZk.7IRqaHJZTp0GO.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8937.png + small + + https://s.yimg.com/iu/api/res/1.2/PVwYZk.7IRqaHJZTp0GO.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8937.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29457 + 29457 + + Brandon Doughty + Brandon + Doughty + Brandon + Doughty + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29457 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/uMBVivrciouJ_PiBG6qaMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/29457.png + small + + https://s.yimg.com/iu/api/res/1.2/uMBVivrciouJ_PiBG6qaMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/29457.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.6849 + 6849 + + Matt Schaub + Matt + Schaub + Matt + Schaub + + nfl.p.6849 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/Q.bscrOxpwlM8nrDAXNo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6849.png + small + + https://s.yimg.com/iu/api/res/1.2/Q.bscrOxpwlM8nrDAXNo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6849.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31695 + 31695 + + Brogan Roback + Brogan + Roback + Brogan + Roback + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31695 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30563 + 30563 + + Nick Mullens + Nick + Mullens + Nick + Mullens + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30563 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/dK6Tk7c14RC_9Z4nIRsyrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30563.png + small + + https://s.yimg.com/iu/api/res/1.2/dK6Tk7c14RC_9Z4nIRsyrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30563.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29260 + 29260 + + Paxton Lynch + Paxton + Lynch + Paxton + Lynch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29260 + nfl.t.7 + Denver Broncos + Den + + 10 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/5dxNjc5q07iWIQZSu_lKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29260.png + small + + https://s.yimg.com/iu/api/res/1.2/5dxNjc5q07iWIQZSu_lKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29260.png + 0 + O + + QB + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26547 + 26547 + + Alex Tanney + Alex + Tanney + Alex + Tanney + + nfl.p.26547 + nfl.t.19 + New York Giants + NYG + + 9 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/ry8lxKnDTz5OAxj06FakRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26547.png + small + + https://s.yimg.com/iu/api/res/1.2/ry8lxKnDTz5OAxj06FakRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26547.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31252 + 31252 + + Austin Allen + Austin + Allen + Austin + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31252 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/4UIQWw17iFVA8.f6i3NNTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31252.png + small + + https://s.yimg.com/iu/api/res/1.2/4UIQWw17iFVA8.f6i3NNTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31252.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31804 + 31804 + + Connor Jessop + Connor + Jessop + Connor + Jessop + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31804 + nfl.t.28 + Washington Redskins + Was + + 4 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29425 + 29425 + + Jake Rudock + Jake + Rudock + Jake + Rudock + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29425 + nfl.t.8 + Detroit Lions + Det + + 6 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/p1rNaePkSO5rgQaVW_9bZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29425.png + small + + https://s.yimg.com/iu/api/res/1.2/p1rNaePkSO5rgQaVW_9bZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29425.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31330 + 31330 + + Jack Heneghan + Jack + Heneghan + Jack + Heneghan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31330 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/sFBYTZGWTa_SFhfaWcbxDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31330.png + small + + https://s.yimg.com/iu/api/res/1.2/sFBYTZGWTa_SFhfaWcbxDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31330.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.29284 + 29284 + + Christian Hackenberg + Christian + Hackenberg + Christian + Hackenberg + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29284 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/3IcNIpz0OER0m7yw38GItw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29284.png + small + + https://s.yimg.com/iu/api/res/1.2/3IcNIpz0OER0m7yw38GItw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29284.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7798 + 7798 + + Kellen Clemens + Kellen + Clemens + Kellen + Clemens + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7798 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/vZrnJI2lGixNDBllqXtr0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7798.png + small + + https://s.yimg.com/iu/api/res/1.2/vZrnJI2lGixNDBllqXtr0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7798.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29334 + 29334 + + Connor Cook + Connor + Cook + Connor + Cook + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29334 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 18 + QB + + https://s.yimg.com/iu/api/res/1.2/ResHqd1WsAqscs_WJ8mhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29334.png + small + + https://s.yimg.com/iu/api/res/1.2/ResHqd1WsAqscs_WJ8mhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29334.png + 0 + O + + QB + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31046 + 31046 + + Mason Rudolph + Mason + Rudolph + Mason + Rudolph + + nfl.p.31046 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/U9c_8BqF_Yb0._ymLbYNGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31046.png + small + + https://s.yimg.com/iu/api/res/1.2/U9c_8BqF_Yb0._ymLbYNGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31046.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27560 + 27560 + + Teddy Bridgewater + Teddy + Bridgewater + Teddy + Bridgewater + + nfl.p.27560 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/lqIMTw4.R9AxvaXvltYjMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27560.png + small + + https://s.yimg.com/iu/api/res/1.2/lqIMTw4.R9AxvaXvltYjMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27560.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28463 + 28463 + + Garrett Grayson + Garrett + Grayson + Garrett + Grayson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28463 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/Q4YTHYp9lKBbLTaqggkJFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28463.png + small + + https://s.yimg.com/iu/api/res/1.2/Q4YTHYp9lKBbLTaqggkJFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28463.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30248 + 30248 + + Joshua Dobbs + Joshua + Dobbs + Joshua + Dobbs + + nfl.p.30248 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/eOAbf2yuV4N.dcAInW1_DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30248.png + small + + https://s.yimg.com/iu/api/res/1.2/eOAbf2yuV4N.dcAInW1_DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30248.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31336 + 31336 + + Kurt Benkert + Kurt + Benkert + Kurt + Benkert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31336 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/Kwjgnz8lIAUQKEgRUqbNLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31336.png + small + + https://s.yimg.com/iu/api/res/1.2/Kwjgnz8lIAUQKEgRUqbNLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31336.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.9678 + 9678 + + Chase Daniel + Chase + Daniel + Chase + Daniel + + nfl.p.9678 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/GkvhlppuNerAjtNYzu03JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/9678.png + small + + https://s.yimg.com/iu/api/res/1.2/GkvhlppuNerAjtNYzu03JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/9678.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30200 + 30200 + + Davis Webb + Davis + Webb + Davis + Webb + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30200 + nfl.t.20 + New York Jets + NYJ + + 11 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/VEmgps2AYWLmhhDOlJXoxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30200.png + small + + https://s.yimg.com/iu/api/res/1.2/VEmgps2AYWLmhhDOlJXoxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30200.png + 0 + O + + QB + + 1 + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29435 + 29435 + + Brandon Allen + Brandon + Allen + Brandon + Allen + + nfl.p.29435 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/grfh74zHj8JIjPTFxGT2ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29435.png + small + + https://s.yimg.com/iu/api/res/1.2/grfh74zHj8JIjPTFxGT2ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29435.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31431 + 31431 + + Tim Boyle + Tim + Boyle + Tim + Boyle + + nfl.p.31431 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31734 + 31734 + + Luis Perez + Luis + Perez + Luis + Perez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31734 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31173 + 31173 + + Tanner Lee + Tanner + Lee + Tanner + Lee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31173 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/rrJlYm4rzCJOyWi.iM9u8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31173.png + small + + https://s.yimg.com/iu/api/res/1.2/rrJlYm4rzCJOyWi.iM9u8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31173.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30538 + 30538 + + Phillip Walker + Phillip + Walker + Phillip + Walker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30538 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/V6R029l3hx8Z6phxHCOX9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30538.png + small + + https://s.yimg.com/iu/api/res/1.2/V6R029l3hx8Z6phxHCOX9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30538.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25732 + 25732 + + Brandon Weeden + Brandon + Weeden + Brandon + Weeden + + nfl.p.25732 + nfl.t.34 + Houston Texans + Hou + + 10 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/5cf4PD7HL9weAS67E_NORQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25732.png + small + + https://s.yimg.com/iu/api/res/1.2/5cf4PD7HL9weAS67E_NORQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25732.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.30747 + 30747 + + Tyler Ferguson + Tyler + Ferguson + Tyler + Ferguson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30747 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/rVfPg_Kd3.WIqFDzZ0qZPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30747.png + small + + https://s.yimg.com/iu/api/res/1.2/rVfPg_Kd3.WIqFDzZ0qZPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30747.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29722 + 29722 + + Joe Callahan + Joe + Callahan + Joe + Callahan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29722 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/estsdAjViQPbZRDqtOqC8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29722.png + small + + https://s.yimg.com/iu/api/res/1.2/estsdAjViQPbZRDqtOqC8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29722.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31308 + 31308 + + Chad Kanoff + Chad + Kanoff + Chad + Kanoff + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31308 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/QYOwxHOW6YFg4PFJqy_6rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31308.png + small + + https://s.yimg.com/iu/api/res/1.2/QYOwxHOW6YFg4PFJqy_6rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31308.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.29870 + 29870 + + Josh Woodrum + Josh + Woodrum + Josh + Woodrum + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29870 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/hzn8.UgLDTj.gBCaeALT2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29870.png + small + + https://s.yimg.com/iu/api/res/1.2/hzn8.UgLDTj.gBCaeALT2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29870.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31219 + 31219 + + Logan Woodside + Logan + Woodside + Logan + Woodside + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31219 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/.jM2wZBedHCFzkiECn7xfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31219.png + small + + https://s.yimg.com/iu/api/res/1.2/.jM2wZBedHCFzkiECn7xfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31219.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.27663 + 27663 + + Tom Savage + Tom + Savage + Tom + Savage + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27663 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/HaRO2V2Y5KkIHlSL3oABuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27663.png + small + + https://s.yimg.com/iu/api/res/1.2/HaRO2V2Y5KkIHlSL3oABuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27663.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.7389 + 7389 + + Derek Anderson + Derek + Anderson + Derek + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7389 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/1aqFSRoFhs4c_4UYJx1teQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7389.png + small + + https://s.yimg.com/iu/api/res/1.2/1aqFSRoFhs4c_4UYJx1teQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7389.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26738 + 26738 + + Landry Jones + Landry + Jones + Landry + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26738 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/e7kLhIJiWZA7KVeYJt2vRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26738.png + small + + https://s.yimg.com/iu/api/res/1.2/e7kLhIJiWZA7KVeYJt2vRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26738.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.28491 + 28491 + + Bryce Petty + Bryce + Petty + Bryce + Petty + + undisclosed + nfl.p.28491 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/.Do8Fa7E5O3_B.XFXUjUHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28491.png + small + + https://s.yimg.com/iu/api/res/1.2/.Do8Fa7E5O3_B.XFXUjUHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28491.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + 380.p.7406 + 7406 + + Matt Cassel + Matt + Cassel + Matt + Cassel + + nfl.p.7406 + nfl.t.8 + Detroit Lions + Det + + 6 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/fw2GxKuyaLq.0dvfexkYSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7406.png + small + + https://s.yimg.com/iu/api/res/1.2/fw2GxKuyaLq.0dvfexkYSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7406.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.26639 + 26639 + + EJ Manuel + EJ + Manuel + EJ + Manuel + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26639 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/1RCFikXGNFYyCg84n0YHtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26639.png + small + + https://s.yimg.com/iu/api/res/1.2/1RCFikXGNFYyCg84n0YHtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26639.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24861 + 24861 + + Ryan Mallett + Ryan + Mallett + Ryan + Mallett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24861 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 15 + QB + + https://s.yimg.com/iu/api/res/1.2/kFPCWCPGwgy5nDr8JLzPGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/24861.png + small + + https://s.yimg.com/iu/api/res/1.2/kFPCWCPGwgy5nDr8JLzPGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/24861.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.25798 + 25798 + + Nick Foles + Nick + Foles + Nick + Foles + + nfl.p.25798 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/vWP73Sl4_MnjevDux2Jp8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25798.png + small + + https://s.yimg.com/iu/api/res/1.2/vWP73Sl4_MnjevDux2Jp8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25798.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 5 + 0 + + + + 380.p.30284 + 30284 + + Nathan Peterman + Nathan + Peterman + Nathan + Peterman + + nfl.p.30284 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/1oaHInRR.3cdVhLAGa_fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30284.png + small + + https://s.yimg.com/iu/api/res/1.2/1oaHInRR.3cdVhLAGa_fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30284.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.28477 + 28477 + + Sean Mannion + Sean + Mannion + Sean + Mannion + + nfl.p.28477 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/oyHKQePokNYbu8.XNI7wuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28477.png + small + + https://s.yimg.com/iu/api/res/1.2/oyHKQePokNYbu8.XNI7wuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28477.png + 0 + O + + QB + + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.24175 + 24175 + + Joe Webb III + Joe + Webb III + Joe + Webb III + + nfl.p.24175 + nfl.t.34 + Houston Texans + Hou + + 10 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/ghrLZk9_qwt_wsr3XWMfnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24175.png + small + + https://s.yimg.com/iu/api/res/1.2/ghrLZk9_qwt_wsr3XWMfnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24175.png + 0 + O + + QB + + 1 + + - + - + - + - + + + week + 1 + 0 + + + + 380.p.31029 + 31029 + + Derrius Guice + Derrius + Guice + Derrius + Guice + + IR + Injured Reserve + torn left ACL + nfl.p.31029 + nfl.t.28 + Washington Redskins + Was + + 4 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/QkJ8p37wX_7uERxUbTAt9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31029.png + small + + https://s.yimg.com/iu/api/res/1.2/QkJ8p37wX_7uERxUbTAt9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31029.png + 0 + O + + RB + + + 49.7 + 5.6 + 9.6 + 0.26 + + + week + 1 + 6 + 0 + + + + 380.p.24858 + 24858 + + DeMarco Murray + DeMarco + Murray + DeMarco + Murray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24858 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/kZVJaGr212KuELIqkXLYew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24858.png + small + + https://s.yimg.com/iu/api/res/1.2/kZVJaGr212KuELIqkXLYew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24858.png + 0 + O + + RB + + + 57.8 + 6.4 + 1.6 + 0.08 + + + week + 1 + 1 + 0 + + + + 380.p.25648 + 25648 + + Kai Forbath + Kai + Forbath + Kai + Forbath + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25648 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/0SimSvpWpAM1StHFS3DTrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25648.png + small + + https://s.yimg.com/iu/api/res/1.2/0SimSvpWpAM1StHFS3DTrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25648.png + 0 + K + + K + + + 137.7 + 14.3 + 1.1 + 0.09 + + + week + 1 + 2 + 0 + + + + 380.p.27570 + 27570 + + Jordan Matthews + Jordan + Matthews + Jordan + Matthews + + NA + Inactive: Coach's Decision or Not on Roster + right hamstring + nfl.p.27570 + nfl.t.17 + New England Patriots + NE + + 11 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/OLdHu0gLhVUai0kKN4LNFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27570.png + small + + https://s.yimg.com/iu/api/res/1.2/OLdHu0gLhVUai0kKN4LNFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27570.png + 0 + O + + WR + + + - + - + - + - + + + week + 1 + 1 + 0 + + + + 380.p.27567 + 27567 + + Marqise Lee + Marqise + Lee + Marqise + Lee + + IR + Injured Reserve + left knee + nfl.p.27567 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/UytH2yH.As4Up.HlerlvsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27567.png + small + + https://s.yimg.com/iu/api/res/1.2/UytH2yH.As4Up.HlerlvsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27567.png + 0 + O + + WR + + 1 + + 130.7 + 13.8 + 1.3 + 0.12 + + + week + 1 + 6 + 0 + + + + 380.p.27624 + 27624 + + Jerick McKinnon + Jerick + McKinnon + Jerick + McKinnon + + IR + Injured Reserve + torn right ACL + nfl.p.27624 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/pNvJv736xkZPXGG3x2u7Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27624.png + small + + https://s.yimg.com/iu/api/res/1.2/pNvJv736xkZPXGG3x2u7Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27624.png + 0 + O + + RB + + 1 + + 33.5 + 3.9 + 27.7 + 0.84 + + + week + 1 + 33 + 0 + + + + 380.p.25427 + 25427 + + Dan Bailey + Dan + Bailey + Dan + Bailey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25427 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/i1G6VtymXH_Um5pyX9bXUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25427.png + small + + https://s.yimg.com/iu/api/res/1.2/i1G6VtymXH_Um5pyX9bXUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25427.png + 0 + K + + K + + 1 + + 117.5 + 12.5 + 1.2 + 0.71 + + + week + 1 + 24 + 0 + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 0 + 0 + 0 + + + diff --git a/data/all_players_after_2018_season_with_stats.txt b/data/all_players_after_2018_season_with_stats.txt new file mode 100644 index 0000000..5536cb6 --- /dev/null +++ b/data/all_players_after_2018_season_with_stats.txt @@ -0,0 +1,371097 @@ + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28398 + 28398 + + Todd Gurley II + Todd + Gurley II + Todd + Gurley II + + knee + nfl.p.28398 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/R0dS3WGRW9RFJadp.KihwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28398.png + small + + https://s.yimg.com/iu/api/res/1.2/R0dS3WGRW9RFJadp.KihwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28398.png + 0 + O + + RB + + 1 + 1 + 1548081000 + + 1.3 + 1.0 + 68.6 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 256 + + + 9 + 1251 + + + 10 + 17 + + + 11 + 59 + + + 12 + 580 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 3 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 81 + + + 79 + 0 + + + 80 + 26 + + + 81 + 70 + + + + + + 380.p.26671 + 26671 + + Le'Veon Bell + Le'Veon + Bell + Le'Veon + Bell + + O + Out + nfl.p.26671 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/7ctYzETVTHzBLMN5nPsZOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26671.png + small + + https://s.yimg.com/iu/api/res/1.2/7ctYzETVTHzBLMN5nPsZOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26671.png + 0 + O + + RB + + + 2.5 + 1.0 + 65.3 + 1.00 + + + week + 17 + 32 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28474 + 28474 + + David Johnson + David + Johnson + David + Johnson + + nfl.p.28474 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/bVYbyRhr4G4DV0jCJ_W4DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28474.png + small + + https://s.yimg.com/iu/api/res/1.2/bVYbyRhr4G4DV0jCJ_W4DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28474.png + 0 + O + + RB + + 1 + 1547751180 + + 3.9 + 1.0 + 64.0 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 258 + + + 9 + 940 + + + 10 + 7 + + + 11 + 50 + + + 12 + 446 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 3 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 76 + + + 79 + 0 + + + 80 + 22 + + + 81 + 51 + + + + + + 380.p.29238 + 29238 + + Ezekiel Elliott + Ezekiel + Elliott + Ezekiel + Elliott + + nfl.p.29238 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/vrBGt.B2FH8OfY9k7nJInQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29238.png + small + + https://s.yimg.com/iu/api/res/1.2/vrBGt.B2FH8OfY9k7nJInQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29238.png + 0 + O + + RB + + 1 + 1547354340 + + 4.3 + 1.0 + 64.4 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 304 + + + 9 + 1434 + + + 10 + 6 + + + 11 + 77 + + + 12 + 567 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 6 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 95 + + + 79 + 0 + + + 80 + 22 + + + 81 + 74 + + + + + + 380.p.24171 + 24171 + + Antonio Brown + Antonio + Brown + Antonio + Brown + + not injury related, knee + nfl.p.24171 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/ImJACC_rt5ql2NHxT40_gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24171.png + small + + https://s.yimg.com/iu/api/res/1.2/ImJACC_rt5ql2NHxT40_gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24171.png + 0 + O + + WR + + 1 + 1547490540 + + 5.1 + 1.0 + 61.3 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 104 + + + 12 + 1297 + + + 13 + 15 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 6 + + + 64 + 4 + + + 78 + 168 + + + 79 + 0 + + + 80 + 63 + + + 81 + 0 + + + + + + 380.p.30180 + 30180 + + Alvin Kamara + Alvin + Kamara + Alvin + Kamara + + nfl.p.30180 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/7A96_Mp9YBaFvXY59Uipew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30180.png + small + + https://s.yimg.com/iu/api/res/1.2/7A96_Mp9YBaFvXY59Uipew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30180.png + 0 + O + + RB + + 1 + 1 + 1548030600 + + 6.4 + 1.1 + 60.3 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 194 + + + 9 + 883 + + + 10 + 14 + + + 11 + 81 + + + 12 + 709 + + + 13 + 4 + + + 14 + 208 + + + 15 + 0 + + + 16 + 3 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 1 + + + 63 + 1 + + + 64 + 0 + + + 78 + 105 + + + 79 + 0 + + + 80 + 31 + + + 81 + 57 + + + + + + 380.p.30972 + 30972 + + Saquon Barkley + Saquon + Barkley + Saquon + Barkley + + nfl.p.30972 + nfl.t.19 + New York Giants + NYG + + 9 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/2AQdNxGMmdgYOcCyVwTtOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30972.png + small + + https://s.yimg.com/iu/api/res/1.2/2AQdNxGMmdgYOcCyVwTtOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30972.png + 0 + O + + RB + + + 7.3 + 1.1 + 57.7 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 261 + + + 9 + 1307 + + + 10 + 11 + + + 11 + 91 + + + 12 + 721 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 7 + + + 62 + 4 + + + 63 + 2 + + + 64 + 1 + + + 78 + 121 + + + 79 + 0 + + + 80 + 30 + + + 81 + 50 + + + + + + 380.p.26650 + 26650 + + DeAndre Hopkins + DeAndre + Hopkins + DeAndre + Hopkins + + Q + Questionable + ankle + nfl.p.26650 + nfl.t.34 + Houston Texans + Hou + + 10 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/yZDrmUs3Sg2oIrO4x3Pf0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26650.png + small + + https://s.yimg.com/iu/api/res/1.2/yZDrmUs3Sg2oIrO4x3Pf0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26650.png + 0 + O + + WR + + + 8.8 + 1.2 + 56.6 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -7 + + + 10 + 0 + + + 11 + 115 + + + 12 + 1572 + + + 13 + 11 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 2 + + + 78 + 163 + + + 79 + 0 + + + 80 + 81 + + + 81 + 0 + + + + + + 380.p.28403 + 28403 + + Melvin Gordon III + Melvin + Gordon III + Melvin + Gordon III + + knee + nfl.p.28403 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/bMoDjDdF0xmJ3ChALe7dSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/28403.png + small + + https://s.yimg.com/iu/api/res/1.2/bMoDjDdF0xmJ3ChALe7dSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/28403.png + 0 + O + + RB + + 1 + 1547416500 + + 11.8 + 1.7 + 52.0 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 175 + + + 9 + 885 + + + 10 + 10 + + + 11 + 50 + + + 12 + 490 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 66 + + + 79 + 0 + + + 80 + 21 + + + 81 + 47 + + + + + + 380.p.27540 + 27540 + + Odell Beckham Jr. + Odell + Beckham Jr. + Odell + Beckham Jr. + + Q + Questionable + quadriceps + nfl.p.27540 + nfl.t.19 + New York Giants + NYG + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/DA64XDX.D21m3GQ0MIaMTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27540.png + small + + https://s.yimg.com/iu/api/res/1.2/DA64XDX.D21m3GQ0MIaMTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27540.png + 0 + O + + WR + + + 10.1 + 1.4 + 54.4 + 1.00 + + + week + 17 + 95 + -1 + + + season + 2018 + + + 0 + 12 + + + 1 + 2 + + + 2 + 2 + + + 3 + 0 + + + 4 + 106 + + + 5 + 2 + + + 6 + 0 + + + 7 + 0 + + + 8 + 5 + + + 9 + 19 + + + 10 + 0 + + + 11 + 77 + + + 12 + 1052 + + + 13 + 6 + + + 14 + 60 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 2 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 0 + + + 78 + 124 + + + 79 + 2 + + + 80 + 51 + + + 81 + 2 + + + + + + 380.p.24793 + 24793 + + Julio Jones + Julio + Jones + Julio + Jones + + hip, ribs + nfl.p.24793 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/1dSy_kq454iOPS7WubUk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24793.png + small + + https://s.yimg.com/iu/api/res/1.2/1dSy_kq454iOPS7WubUk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24793.png + 0 + O + + WR + + + 11.7 + 1.8 + 52.7 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 12 + + + 10 + 0 + + + 11 + 113 + + + 12 + 1677 + + + 13 + 8 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 170 + + + 79 + 0 + + + 80 + 80 + + + 81 + 1 + + + + + + 380.p.30117 + 30117 + + Leonard Fournette + Leonard + Fournette + Leonard + Fournette + + Q + Questionable + ankle, foot + nfl.p.30117 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/PxIVNC6zaw20NDHFH5duAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30117.png + small + + https://s.yimg.com/iu/api/res/1.2/PxIVNC6zaw20NDHFH5duAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30117.png + 0 + O + + RB + + 1 + 1547734980 + + 14.0 + 2.0 + 47.0 + 1.00 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 133 + + + 9 + 439 + + + 10 + 5 + + + 11 + 22 + + + 12 + 185 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 26 + + + 79 + 0 + + + 80 + 10 + + + 81 + 23 + + + + + + 380.p.30199 + 30199 + + Kareem Hunt + Kareem + Hunt + Kareem + Hunt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30199 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/yuO.eVIZo4KnBH63whFK2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30199.png + small + + https://s.yimg.com/iu/api/res/1.2/yuO.eVIZo4KnBH63whFK2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30199.png + 0 + O + + RB + + 1 + 1548004440 + + 11.7 + 1.7 + 54.2 + 1.00 + + + week + 17 + 38 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 181 + + + 9 + 824 + + + 10 + 7 + + + 11 + 26 + + + 12 + 378 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 35 + + + 79 + 0 + + + 80 + 17 + + + 81 + 46 + + + + + + 380.p.29281 + 29281 + + Michael Thomas + Michael + Thomas + Michael + Thomas + + nfl.p.29281 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/FAlfbFaDH6cPfTBBL9cP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29281.png + small + + https://s.yimg.com/iu/api/res/1.2/FAlfbFaDH6cPfTBBL9cP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29281.png + 0 + O + + WR + + 1 + 1 + 1548030720 + + 14.8 + 2.1 + 47.0 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 125 + + + 12 + 1405 + + + 13 + 9 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 147 + + + 79 + 0 + + + 80 + 75 + + + 81 + 0 + + + + + + 380.p.26699 + 26699 + + Keenan Allen + Keenan + Allen + Keenan + Allen + + hip + nfl.p.26699 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/UEud_xdjAangoqjW6GXluQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26699.png + small + + https://s.yimg.com/iu/api/res/1.2/UEud_xdjAangoqjW6GXluQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26699.png + 0 + O + + WR + + 1 + 1547416500 + + 17.1 + 2.2 + 44.1 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 1 + + + 8 + 9 + + + 9 + 75 + + + 10 + 0 + + + 11 + 97 + + + 12 + 1196 + + + 13 + 6 + + + 14 + 25 + + + 15 + 0 + + + 16 + 1 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 136 + + + 79 + 0 + + + 80 + 62 + + + 81 + 4 + + + + + + 380.p.27581 + 27581 + + Davante Adams + Davante + Adams + Davante + Adams + + Q + Questionable + knee + nfl.p.27581 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/sxqT8iZ8eyKBIdHAu61nMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/27581.png + small + + https://s.yimg.com/iu/api/res/1.2/sxqT8iZ8eyKBIdHAu61nMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/27581.png + 0 + O + + WR + + + 18.1 + 2.3 + 42.8 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 111 + + + 12 + 1386 + + + 13 + 13 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 5 + + + 64 + 0 + + + 78 + 169 + + + 79 + 0 + + + 80 + 64 + + + 81 + 0 + + + + + + 380.p.24791 + 24791 + + A.J. Green + A.J. + Green + A.J. + Green + + IR + Injured Reserve + toe + nfl.p.24791 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/IM8_hBPAyznTCwHbfqLptw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24791.png + small + + https://s.yimg.com/iu/api/res/1.2/IM8_hBPAyznTCwHbfqLptw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24791.png + 0 + O + + WR + + + 18.9 + 2.3 + 39.7 + 1.00 + + + week + 17 + 50 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 46 + + + 12 + 694 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 77 + + + 79 + 0 + + + 80 + 37 + + + 81 + 0 + + + + + + 380.p.24017 + 24017 + + Rob Gronkowski + Rob + Gronkowski + Rob + Gronkowski + + ankle, back + nfl.p.24017 + nfl.t.17 + New England Patriots + NE + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/Qnkswpez0N.a_H.RgWkN6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24017.png + small + + https://s.yimg.com/iu/api/res/1.2/Qnkswpez0N.a_H.RgWkN6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24017.png + 0 + O + + TE + + 1 + 1 + 1548044160 + + 19.1 + 2.4 + 39.9 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 47 + + + 12 + 682 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 72 + + + 79 + 0 + + + 80 + 34 + + + 81 + 0 + + + + + + 380.p.27535 + 27535 + + Mike Evans + Mike + Evans + Mike + Evans + + nfl.p.27535 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/MXZmB71fT3YjwU.Y57npMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27535.png + small + + https://s.yimg.com/iu/api/res/1.2/MXZmB71fT3YjwU.Y57npMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27535.png + 0 + O + + WR + + + 22.7 + 2.8 + 35.0 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 86 + + + 12 + 1524 + + + 13 + 8 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 1 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 6 + + + 64 + 3 + + + 78 + 138 + + + 79 + 0 + + + 80 + 69 + + + 81 + 0 + + + + + + 380.p.26686 + 26686 + + Travis Kelce + Travis + Kelce + Travis + Kelce + + nfl.p.26686 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/8a3tQ7GFVmjz5yFqGa6OWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26686.png + small + + https://s.yimg.com/iu/api/res/1.2/8a3tQ7GFVmjz5yFqGa6OWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26686.png + 0 + O + + TE + + 1 + 1 + 1548042600 + + 24.4 + 3.0 + 31.6 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 103 + + + 12 + 1336 + + + 13 + 10 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 150 + + + 79 + 0 + + + 80 + 68 + + + 81 + 0 + + + + + + 380.p.29399 + 29399 + + Tyreek Hill + Tyreek + Hill + Tyreek + Hill + + heel, wrist + nfl.p.29399 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/KGaqzv0n1HLlWNPV2NEetw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29399.png + small + + https://s.yimg.com/iu/api/res/1.2/KGaqzv0n1HLlWNPV2NEetw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29399.png + 0 + O + + WR + + 1 + 1 + 1548042420 + + 26.3 + 3.2 + 29.3 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 22 + + + 9 + 151 + + + 10 + 1 + + + 11 + 87 + + + 12 + 1479 + + + 13 + 12 + + + 14 + 213 + + + 15 + 1 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 8 + + + 64 + 4 + + + 78 + 137 + + + 79 + 0 + + + 80 + 60 + + + 81 + 8 + + + + + + 380.p.30121 + 30121 + + Christian McCaffrey + Christian + McCaffrey + Christian + McCaffrey + + nfl.p.30121 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/I2Nua3.SXdJraKJ8Sbz4hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30121.png + small + + https://s.yimg.com/iu/api/res/1.2/I2Nua3.SXdJraKJ8Sbz4hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30121.png + 0 + O + + RB + + + 23.3 + 2.9 + 36.5 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 50 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 219 + + + 9 + 1098 + + + 10 + 7 + + + 11 + 107 + + + 12 + 867 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 4 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 1 + + + 61 + 3 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 124 + + + 79 + 1 + + + 80 + 41 + + + 81 + 53 + + + + + + 380.p.27631 + 27631 + + Devonta Freeman + Devonta + Freeman + Devonta + Freeman + + IR + Injured Reserve + foot, groin + nfl.p.27631 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/._fMTmSt9DNlW5CuBXUrpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27631.png + small + + https://s.yimg.com/iu/api/res/1.2/._fMTmSt9DNlW5CuBXUrpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27631.png + 0 + O + + RB + + + 23.6 + 2.9 + 35.6 + 1.00 + + + week + 17 + 27 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 14 + + + 9 + 68 + + + 10 + 0 + + + 11 + 5 + + + 12 + 23 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.30154 + 30154 + + Dalvin Cook + Dalvin + Cook + Dalvin + Cook + + hamstring + nfl.p.30154 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/Q.RrjEoZWmMgYj.FbT6z0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30154.png + small + + https://s.yimg.com/iu/api/res/1.2/Q.RrjEoZWmMgYj.FbT6z0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30154.png + 0 + O + + RB + + + 19.5 + 2.5 + 43.9 + 1.00 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 133 + + + 9 + 615 + + + 10 + 2 + + + 11 + 40 + + + 12 + 305 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 49 + + + 79 + 0 + + + 80 + 15 + + + 81 + 22 + + + + + + 380.p.28534 + 28534 + + Stefon Diggs + Stefon + Diggs + Stefon + Diggs + + knee + nfl.p.28534 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/63b0CbC.WRpNNvGa74BpXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28534.png + small + + https://s.yimg.com/iu/api/res/1.2/63b0CbC.WRpNNvGa74BpXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28534.png + 0 + O + + WR + + + 28.3 + 3.4 + 25.5 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 10 + + + 9 + 62 + + + 10 + 0 + + + 11 + 102 + + + 12 + 1021 + + + 13 + 9 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 149 + + + 79 + 0 + + + 80 + 49 + + + 81 + 3 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29384 + 29384 + + Jordan Howard + Jordan + Howard + Jordan + Howard + + nfl.p.29384 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/DX64asZBlHmihxe55uM14A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29384.png + small + + https://s.yimg.com/iu/api/res/1.2/DX64asZBlHmihxe55uM14A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29384.png + 0 + O + + RB + + + 27.8 + 3.3 + 31.7 + 1.00 + + + week + 17 + 94 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 250 + + + 9 + 935 + + + 10 + 9 + + + 11 + 20 + + + 12 + 145 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 27 + + + 79 + 0 + + + 80 + 7 + + + 81 + 53 + + + + + + 380.p.27277 + 27277 + + Adam Thielen + Adam + Thielen + Adam + Thielen + + nfl.p.27277 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/_f7LGTo99FmWZBLzGRMQTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27277.png + small + + https://s.yimg.com/iu/api/res/1.2/_f7LGTo99FmWZBLzGRMQTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27277.png + 0 + O + + WR + + + 27.7 + 3.3 + 27.1 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 5 + + + 9 + 30 + + + 10 + 0 + + + 11 + 113 + + + 12 + 1373 + + + 13 + 9 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 1 + + + 78 + 153 + + + 79 + 0 + + + 80 + 74 + + + 81 + 1 + + + + + + 380.p.6762 + 6762 + + Larry Fitzgerald + Larry + Fitzgerald + Larry + Fitzgerald + + hamstring, back + nfl.p.6762 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/BVFjnEsa.pXKNub1aPBhAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/6762.png + small + + https://s.yimg.com/iu/api/res/1.2/BVFjnEsa.pXKNub1aPBhAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/6762.png + 0 + O + + WR + + 1 + 1547313960 + + 34.0 + 3.9 + 21.4 + 1.00 + + + week + 17 + 88 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 32 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 69 + + + 12 + 734 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 112 + + + 79 + 1 + + + 80 + 39 + + + 81 + 0 + + + + + + 380.p.26658 + 26658 + + Zach Ertz + Zach + Ertz + Zach + Ertz + + nfl.p.26658 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/BjwWIvaNttNHkFS78HSWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26658.png + small + + https://s.yimg.com/iu/api/res/1.2/BjwWIvaNttNHkFS78HSWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26658.png + 0 + O + + TE + + 1 + 1547430360 + + 32.3 + 3.8 + 23.5 + 1.00 + + + week + 17 + 100 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 116 + + + 12 + 1163 + + + 13 + 8 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 156 + + + 79 + 0 + + + 80 + 66 + + + 81 + 0 + + + + + + 380.p.25802 + 25802 + + T.Y. Hilton + T.Y. + Hilton + T.Y. + Hilton + + Q + Questionable + ankle + nfl.p.25802 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/glNTD7LTBS3vpYTW7wO9pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25802.png + small + + https://s.yimg.com/iu/api/res/1.2/glNTD7LTBS3vpYTW7wO9pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25802.png + 0 + O + + WR + + 1 + 1547341680 + + 35.1 + 4.1 + 22.3 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 76 + + + 12 + 1270 + + + 13 + 6 + + + 14 + 2 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 6 + + + 64 + 1 + + + 78 + 120 + + + 79 + 0 + + + 80 + 55 + + + 81 + 0 + + + + + + 380.p.30175 + 30175 + + JuJu Smith-Schuster + JuJu + Smith-Schuster + JuJu + Smith-Schuster + + groin + nfl.p.30175 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/P7Rx271GkUn0ldoZkDjjEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30175.png + small + + https://s.yimg.com/iu/api/res/1.2/P7Rx271GkUn0ldoZkDjjEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30175.png + 0 + O + + WR + + + 37.6 + 4.4 + 15.5 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 13 + + + 10 + 0 + + + 11 + 111 + + + 12 + 1426 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 5 + + + 64 + 2 + + + 78 + 166 + + + 79 + 0 + + + 80 + 68 + + + 81 + 1 + + + + + + 380.p.30161 + 30161 + + Joe Mixon + Joe + Mixon + Joe + Mixon + + knee + nfl.p.30161 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/rzubkS7PamCIBHasank8lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30161.png + small + + https://s.yimg.com/iu/api/res/1.2/rzubkS7PamCIBHasank8lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30161.png + 0 + O + + RB + + + 35.2 + 4.1 + 23.2 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 237 + + + 9 + 1168 + + + 10 + 8 + + + 11 + 43 + + + 12 + 296 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 3 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 55 + + + 79 + 0 + + + 80 + 14 + + + 81 + 60 + + + + + + 380.p.28392 + 28392 + + Amari Cooper + Amari + Cooper + Amari + Cooper + + nfl.p.28392 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/t7KktSAoBwL4Trr71unm7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28392.png + small + + https://s.yimg.com/iu/api/res/1.2/t7KktSAoBwL4Trr71unm7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28392.png + 0 + O + + WR + + 1 + 1547354640 + + 36.5 + 4.2 + 19.7 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 20 + + + 10 + 0 + + + 11 + 75 + + + 12 + 1005 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 3 + + + 78 + 107 + + + 79 + 0 + + + 80 + 53 + + + 81 + 1 + + + + + + 380.p.24035 + 24035 + + Golden Tate + Golden + Tate + Golden + Tate + + hip + nfl.p.24035 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/3R_u166V5sj6bjZcmDiKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24035.png + small + + https://s.yimg.com/iu/api/res/1.2/3R_u166V5sj6bjZcmDiKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24035.png + 0 + O + + WR + + 1 + 1547430900 + + 45.4 + 5.1 + 13.3 + 1.00 + + + week + 17 + 90 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 34 + + + 10 + 0 + + + 11 + 74 + + + 12 + 795 + + + 13 + 4 + + + 14 + 28 + + + 15 + 0 + + + 16 + 1 + + + 17 + 2 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 113 + + + 79 + 0 + + + 80 + 33 + + + 81 + 1 + + + + + + 380.p.7200 + 7200 + + Aaron Rodgers + Aaron + Rodgers + Aaron + Rodgers + + Q + Questionable + knee + nfl.p.7200 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/KAybTAwhxN0pAbtPslho1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7200.png + small + + https://s.yimg.com/iu/api/res/1.2/KAybTAwhxN0pAbtPslho1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7200.png + 0 + O + + QB + + + 23.3 + 2.9 + 26.6 + 1.00 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 597 + + + 2 + 372 + + + 3 + 225 + + + 4 + 4442 + + + 5 + 25 + + + 6 + 2 + + + 7 + 49 + + + 8 + 43 + + + 9 + 269 + + + 10 + 2 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 3 + + + 17 + 6 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 16 + + + 60 + 5 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 200 + + + 80 + 0 + + + 81 + 20 + + + + + + 380.p.29307 + 29307 + + Kenyan Drake + Kenyan + Drake + Kenyan + Drake + + nfl.p.29307 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/mPf_mdNY5XcDbsLCQO5v2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29307.png + small + + https://s.yimg.com/iu/api/res/1.2/mPf_mdNY5XcDbsLCQO5v2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29307.png + 0 + O + + RB + + + 38.9 + 4.5 + 17.9 + 1.00 + + + week + 17 + 90 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 120 + + + 9 + 535 + + + 10 + 4 + + + 11 + 53 + + + 12 + 477 + + + 13 + 5 + + + 14 + 213 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 1 + + + 63 + 1 + + + 64 + 1 + + + 78 + 73 + + + 79 + 0 + + + 80 + 23 + + + 81 + 23 + + + + + + 380.p.25105 + 25105 + + Doug Baldwin + Doug + Baldwin + Doug + Baldwin + + hip + nfl.p.25105 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/pcslXEt6lWz8Bg86Xf0Isw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25105.png + small + + https://s.yimg.com/iu/api/res/1.2/pcslXEt6lWz8Bg86Xf0Isw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25105.png + 0 + O + + WR + + + 36.0 + 4.1 + 21.2 + 1.00 + + + week + 17 + 90 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 50 + + + 12 + 618 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 73 + + + 79 + 0 + + + 80 + 32 + + + 81 + 0 + + + + + + 380.p.27591 + 27591 + + Jarvis Landry + Jarvis + Landry + Jarvis + Landry + + knee + nfl.p.27591 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/BnmHrIeNWEklUx4MuWKUTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27591.png + small + + https://s.yimg.com/iu/api/res/1.2/BnmHrIeNWEklUx4MuWKUTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27591.png + 0 + O + + WR + + + 47.1 + 5.3 + 10.2 + 1.00 + + + week + 17 + 97 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 2 + + + 2 + 1 + + + 3 + 1 + + + 4 + 63 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 60 + + + 10 + 1 + + + 11 + 81 + + + 12 + 976 + + + 13 + 4 + + + 14 + 32 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 149 + + + 79 + 1 + + + 80 + 44 + + + 81 + 2 + + + + + + 380.p.23997 + 23997 + + Demaryius Thomas + Demaryius + Thomas + Demaryius + Thomas + + IR + Injured Reserve + Achilles + nfl.p.23997 + nfl.t.34 + Houston Texans + Hou + + 10 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/i0h74aHXN7xoQkOKaSN5cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/23997.png + small + + https://s.yimg.com/iu/api/res/1.2/i0h74aHXN7xoQkOKaSN5cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/23997.png + 0 + O + + WR + + + 44.8 + 5.0 + 15.0 + 1.00 + + + week + 17 + 89 + -1 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 59 + + + 12 + 677 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 89 + + + 79 + 0 + + + 80 + 37 + + + 81 + 0 + + + + + + 380.p.24788 + 24788 + + Cam Newton + Cam + Newton + Cam + Newton + + Q + Questionable + right shoulder + nfl.p.24788 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 1 + QB + + https://s.yimg.com/iu/api/res/1.2/Q1ziSQG6UAf7iID63Nj9YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24788.png + small + + https://s.yimg.com/iu/api/res/1.2/Q1ziSQG6UAf7iID63Nj9YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24788.png + 0 + O + + QB + + 1 + 1547599020 + + 43.8 + 5.0 + 11.0 + 1.00 + + + week + 17 + 79 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 471 + + + 2 + 320 + + + 3 + 151 + + + 4 + 3395 + + + 5 + 24 + + + 6 + 13 + + + 7 + 29 + + + 8 + 101 + + + 9 + 488 + + + 10 + 4 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 6 + + + 18 + 0 + + + 57 + 0 + + + 58 + 1 + + + 59 + 3 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 180 + + + 80 + 0 + + + 81 + 36 + + + + + + 380.p.25178 + 25178 + + Chris Hogan + Chris + Hogan + Chris + Hogan + + thigh + nfl.p.25178 + nfl.t.17 + New England Patriots + NE + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/pM_Y4drjgQzGXyhOefVNEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25178.png + small + + https://s.yimg.com/iu/api/res/1.2/pM_Y4drjgQzGXyhOefVNEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25178.png + 0 + O + + WR + + 1 + 1 + 1548046080 + + 63.6 + 7.0 + 6.6 + 1.00 + + + week + 17 + 39 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 35 + + + 12 + 532 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 54 + + + 79 + 0 + + + 80 + 22 + + + 81 + 0 + + + + + + 380.p.29405 + 29405 + + Alex Collins + Alex + Collins + Alex + Collins + + IR + Injured Reserve + foot + nfl.p.29405 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/3PvtDLKsuXnVJlBJMcTWRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29405.png + small + + https://s.yimg.com/iu/api/res/1.2/3PvtDLKsuXnVJlBJMcTWRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29405.png + 0 + O + + RB + + + 45.6 + 5.2 + 14.0 + 1.00 + + + week + 17 + 38 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 114 + + + 9 + 411 + + + 10 + 7 + + + 11 + 15 + + + 12 + 105 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 21 + + + 79 + 0 + + + 80 + 6 + + + 81 + 22 + + + + + + 380.p.28537 + 28537 + + Jay Ajayi + Jay + Ajayi + Jay + Ajayi + + IR + Injured Reserve + torn ACL + nfl.p.28537 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/8_wBYAWL1yFaypSAH51Miw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28537.png + small + + https://s.yimg.com/iu/api/res/1.2/8_wBYAWL1yFaypSAH51Miw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28537.png + 0 + O + + RB + + + 46.8 + 5.3 + 12.2 + 1.00 + + + week + 17 + 15 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 45 + + + 9 + 184 + + + 10 + 3 + + + 11 + 5 + + + 12 + 20 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 1 + + + 81 + 11 + + + + + + 380.p.26561 + 26561 + + Josh Gordon + Josh + Gordon + Josh + Gordon + + SUSP + Suspended + hamstring + nfl.p.26561 + nfl.t.17 + New England Patriots + NE + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/B7oGCmKZfwDP5CwuosBZzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26561.png + small + + https://s.yimg.com/iu/api/res/1.2/B7oGCmKZfwDP5CwuosBZzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26561.png + 0 + O + + WR + + + 53.4 + 5.9 + 14.4 + 1.00 + + + week + 17 + 69 + -1 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 41 + + + 12 + 737 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 1 + + + 78 + 72 + + + 79 + 0 + + + 80 + 30 + + + 81 + 0 + + + + + + 380.p.29279 + 29279 + + Derrick Henry + Derrick + Henry + Derrick + Henry + + nfl.p.29279 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/BsK3qj71MxrCBdeBCCiGHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29279.png + small + + https://s.yimg.com/iu/api/res/1.2/BsK3qj71MxrCBdeBCCiGHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29279.png + 0 + O + + RB + + + 49.8 + 5.5 + 14.2 + 1.00 + + + week + 17 + 95 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 3 + + + 2 + 2 + + + 3 + 1 + + + 4 + 14 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 215 + + + 9 + 1059 + + + 10 + 12 + + + 11 + 15 + + + 12 + 99 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 2 + + + 62 + 2 + + + 63 + 0 + + + 64 + 0 + + + 78 + 18 + + + 79 + 1 + + + 80 + 4 + + + 81 + 51 + + + + + + 380.p.9317 + 9317 + + LeSean McCoy + LeSean + McCoy + LeSean + McCoy + + hamstring + nfl.p.9317 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/mdG7t5jI1vLr7ce71pRWmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9317.png + small + + https://s.yimg.com/iu/api/res/1.2/mdG7t5jI1vLr7ce71pRWmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9317.png + 0 + O + + RB + + + 41.9 + 4.7 + 19.0 + 1.00 + + + week + 17 + 80 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 161 + + + 9 + 514 + + + 10 + 3 + + + 11 + 34 + + + 12 + 238 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 46 + + + 79 + 0 + + + 80 + 10 + + + 81 + 22 + + + + + + 380.p.25785 + 25785 + + Russell Wilson + Russell + Wilson + Russell + Wilson + + nfl.p.25785 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/OxOjQVJkvUee70.hiV8ULg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25785.png + small + + https://s.yimg.com/iu/api/res/1.2/OxOjQVJkvUee70.hiV8ULg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25785.png + 0 + O + + QB + + + 44.6 + 5.1 + 13.1 + 1.00 + + + week + 17 + 97 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 427 + + + 2 + 280 + + + 3 + 147 + + + 4 + 3448 + + + 5 + 35 + + + 6 + 7 + + + 7 + 51 + + + 8 + 67 + + + 9 + 376 + + + 10 + 0 + + + 11 + 1 + + + 12 + -11 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 10 + + + 18 + 2 + + + 57 + 0 + + + 58 + 2 + + + 59 + 13 + + + 60 + 3 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 156 + + + 80 + 0 + + + 81 + 23 + + + + + + 380.p.25807 + 25807 + + Lamar Miller + Lamar + Miller + Lamar + Miller + + ankle + nfl.p.25807 + nfl.t.34 + Houston Texans + Hou + + 10 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/XrRO5ruqYu12Z5pTjMNICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25807.png + small + + https://s.yimg.com/iu/api/res/1.2/XrRO5ruqYu12Z5pTjMNICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25807.png + 0 + O + + RB + + + 59.0 + 6.5 + 9.3 + 1.00 + + + week + 17 + 88 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 210 + + + 9 + 973 + + + 10 + 5 + + + 11 + 25 + + + 12 + 163 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 2 + + + 62 + 1 + + + 63 + 0 + + + 64 + 0 + + + 78 + 35 + + + 79 + 0 + + + 80 + 8 + + + 81 + 36 + + + + + + 380.p.5228 + 5228 + + Tom Brady + Tom + Brady + Tom + Brady + + knee, illness + nfl.p.5228 + nfl.t.17 + New England Patriots + NE + + 11 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/K4TGf.cQSCiks4HMIB82Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5228.png + small + + https://s.yimg.com/iu/api/res/1.2/K4TGf.cQSCiks4HMIB82Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5228.png + 0 + O + + QB + + 1 + 1 + 1548040500 + + 35.9 + 4.2 + 15.0 + 1.00 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 570 + + + 2 + 375 + + + 3 + 195 + + + 4 + 4355 + + + 5 + 29 + + + 6 + 11 + + + 7 + 21 + + + 8 + 23 + + + 9 + 35 + + + 10 + 2 + + + 11 + 1 + + + 12 + 6 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 4 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 8 + + + 60 + 3 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 205 + + + 80 + 0 + + + 81 + 10 + + + + + + 380.p.30125 + 30125 + + Deshaun Watson + Deshaun + Watson + Deshaun + Watson + + chest + nfl.p.30125 + nfl.t.34 + Houston Texans + Hou + + 10 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/yOA5SB6GBjA0mkIbkAy1tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30125.png + small + + https://s.yimg.com/iu/api/res/1.2/yOA5SB6GBjA0mkIbkAy1tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30125.png + 0 + O + + QB + + + 41.0 + 4.7 + 12.7 + 1.00 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 505 + + + 2 + 345 + + + 3 + 160 + + + 4 + 4165 + + + 5 + 26 + + + 6 + 9 + + + 7 + 62 + + + 8 + 99 + + + 9 + 551 + + + 10 + 5 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 9 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 8 + + + 60 + 3 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 202 + + + 80 + 0 + + + 81 + 33 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.5479 + 5479 + + Drew Brees + Drew + Brees + Drew + Brees + + nfl.p.5479 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/Tes_HwTnPRpOWHjxwcMMrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/5479.png + small + + https://s.yimg.com/iu/api/res/1.2/Tes_HwTnPRpOWHjxwcMMrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/5479.png + 0 + O + + QB + + 1 + 1 + 1548080520 + + 49.8 + 5.6 + 8.3 + 1.00 + + + week + 17 + 99 + -1 + + + season + 2018 + + + 0 + 15 + + + 1 + 489 + + + 2 + 364 + + + 3 + 125 + + + 4 + 3992 + + + 5 + 32 + + + 6 + 5 + + + 7 + 17 + + + 8 + 31 + + + 9 + 22 + + + 10 + 4 + + + 11 + 1 + + + 12 + 1 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 5 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 6 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 199 + + + 80 + 0 + + + 81 + 11 + + + + + + 380.p.31041 + 31041 + + Royce Freeman + Royce + Freeman + Royce + Freeman + + ankle + nfl.p.31041 + nfl.t.7 + Denver Broncos + Den + + 10 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/T3dV2I_d9.8UrssEPihUZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31041.png + small + + https://s.yimg.com/iu/api/res/1.2/T3dV2I_d9.8UrssEPihUZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31041.png + 0 + O + + RB + + + 63.5 + 7.0 + 9.1 + 1.00 + + + week + 17 + 44 + 1 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 130 + + + 9 + 521 + + + 10 + 5 + + + 11 + 14 + + + 12 + 72 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 20 + + + 79 + 0 + + + 80 + 2 + + + 81 + 30 + + + + + + 380.p.27589 + 27589 + + Allen Robinson II + Allen + Robinson II + Allen + Robinson II + + ribs + nfl.p.27589 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/1J9gFPpR5AkL4qGa.kc0Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27589.png + small + + https://s.yimg.com/iu/api/res/1.2/1J9gFPpR5AkL4qGa.kc0Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27589.png + 0 + O + + WR + + + 55.2 + 6.1 + 9.0 + 1.00 + + + week + 17 + 88 + -1 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 9 + + + 10 + 0 + + + 11 + 55 + + + 12 + 754 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 94 + + + 79 + 0 + + + 80 + 36 + + + 81 + 0 + + + + + + 380.p.30118 + 30118 + + Corey Davis + Corey + Davis + Corey + Davis + + nfl.p.30118 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/WAVa3UCz5gE_1oPTokTMQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30118.png + small + + https://s.yimg.com/iu/api/res/1.2/WAVa3UCz5gE_1oPTokTMQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30118.png + 0 + O + + WR + + + 76.5 + 8.3 + 5.0 + 1.00 + + + week + 17 + 88 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 55 + + + 10 + 0 + + + 11 + 65 + + + 12 + 891 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 112 + + + 79 + 0 + + + 80 + 47 + + + 81 + 2 + + + + + + 380.p.24070 + 24070 + + Jimmy Graham + Jimmy + Graham + Jimmy + Graham + + knee, thumb + nfl.p.24070 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/wE2_bp_i.WleBvrwXmy4nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/24070.png + small + + https://s.yimg.com/iu/api/res/1.2/wE2_bp_i.WleBvrwXmy4nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/24070.png + 0 + O + + TE + + + 47.1 + 5.4 + 10.3 + 1.00 + + + week + 17 + 78 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 55 + + + 12 + 636 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 89 + + + 79 + 0 + + + 80 + 32 + + + 81 + 0 + + + + + + 380.p.24936 + 24936 + + Dion Lewis + Dion + Lewis + Dion + Lewis + + nfl.p.24936 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/UJICr7.Uc6dl81Ek9TiwFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24936.png + small + + https://s.yimg.com/iu/api/res/1.2/UJICr7.Uc6dl81Ek9TiwFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24936.png + 0 + O + + RB + + + 64.9 + 7.1 + 5.8 + 1.00 + + + week + 17 + 80 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 155 + + + 9 + 517 + + + 10 + 1 + + + 11 + 59 + + + 12 + 400 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 67 + + + 79 + 0 + + + 80 + 13 + + + 81 + 22 + + + + + + 380.p.25876 + 25876 + + Marvin Jones Jr. + Marvin + Jones Jr. + Marvin + Jones Jr. + + IR + Injured Reserve + knee + nfl.p.25876 + nfl.t.8 + Detroit Lions + Det + + 6 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/pSeTSJDvCAMp3lciQIYeSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25876.png + small + + https://s.yimg.com/iu/api/res/1.2/pSeTSJDvCAMp3lciQIYeSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25876.png + 0 + O + + WR + + + 65.2 + 7.2 + 5.5 + 1.00 + + + week + 17 + 30 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 35 + + + 12 + 508 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 62 + + + 79 + 0 + + + 80 + 27 + + + 81 + 0 + + + + + + 380.p.26701 + 26701 + + Marquise Goodwin + Marquise + Goodwin + Marquise + Goodwin + + Q + Questionable + calf + nfl.p.26701 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/xbNhQyTn4f2i8tNS3ymM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26701.png + small + + https://s.yimg.com/iu/api/res/1.2/xbNhQyTn4f2i8tNS3ymM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26701.png + 0 + O + + WR + + + 85.0 + 9.2 + 4.0 + 0.98 + + + week + 17 + 35 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 9 + + + 10 + 0 + + + 11 + 23 + + + 12 + 395 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 43 + + + 79 + 0 + + + 80 + 19 + + + 81 + 0 + + + + + + 380.p.30136 + 30136 + + Evan Engram + Evan + Engram + Evan + Engram + + hamstring + nfl.p.30136 + nfl.t.19 + New York Giants + NYG + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/Ox4zIDoBaZCtlcCZEpq_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30136.png + small + + https://s.yimg.com/iu/api/res/1.2/Ox4zIDoBaZCtlcCZEpq_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30136.png + 0 + O + + TE + + + 56.3 + 6.3 + 7.4 + 1.00 + + + week + 17 + 82 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 36 + + + 10 + 0 + + + 11 + 45 + + + 12 + 577 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 64 + + + 79 + 0 + + + 80 + 22 + + + 81 + 3 + + + + + + 380.p.26813 + 26813 + + Rex Burkhead + Rex + Burkhead + Rex + Burkhead + + neck + nfl.p.26813 + nfl.t.17 + New England Patriots + NE + + 11 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/aOXJZRwLpMdsFRsorWgE3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26813.png + small + + https://s.yimg.com/iu/api/res/1.2/aOXJZRwLpMdsFRsorWgE3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26813.png + 0 + O + + RB + + 1 + 1 + 1548045960 + + 81.4 + 8.8 + 5.5 + 1.00 + + + week + 17 + 19 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 57 + + + 9 + 186 + + + 10 + 0 + + + 11 + 14 + + + 12 + 131 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 20 + + + 79 + 0 + + + 80 + 4 + + + 81 + 11 + + + + + + 380.p.27548 + 27548 + + Brandin Cooks + Brandin + Cooks + Brandin + Cooks + + nfl.p.27548 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/udeSo916KhtqKtspogvA5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27548.png + small + + https://s.yimg.com/iu/api/res/1.2/udeSo916KhtqKtspogvA5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27548.png + 0 + O + + WR + + 1 + 1 + 1548028440 + + 62.2 + 6.9 + 7.8 + 1.00 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 10 + + + 9 + 68 + + + 10 + 1 + + + 11 + 80 + + + 12 + 1204 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 1 + + + 78 + 117 + + + 79 + 0 + + + 80 + 56 + + + 81 + 5 + + + + + + 380.p.24057 + 24057 + + Emmanuel Sanders + Emmanuel + Sanders + Emmanuel + Sanders + + IR + Injured Reserve + torn Achilles + nfl.p.24057 + nfl.t.7 + Denver Broncos + Den + + 10 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/ouh0Og.e8wRVz.YIQhxu5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/24057.png + small + + https://s.yimg.com/iu/api/res/1.2/ouh0Og.e8wRVz.YIQhxu5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/24057.png + 0 + O + + WR + + + 88.8 + 9.6 + 3.3 + 0.99 + + + week + 17 + 42 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 28 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 53 + + + 10 + 1 + + + 11 + 71 + + + 12 + 868 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 2 + + + 78 + 98 + + + 79 + 1 + + + 80 + 37 + + + 81 + 2 + + + + + + 380.p.8285 + 8285 + + Greg Olsen + Greg + Olsen + Greg + Olsen + + IR + Injured Reserve + foot + nfl.p.8285 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/7bePkncqcSPTKCZQBiM_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8285.png + small + + https://s.yimg.com/iu/api/res/1.2/7bePkncqcSPTKCZQBiM_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8285.png + 0 + O + + TE + + + 55.1 + 6.2 + 7.1 + 1.00 + + + week + 17 + 33 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 27 + + + 12 + 291 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 38 + + + 79 + 0 + + + 80 + 18 + + + 81 + 0 + + + + + + 380.p.9265 + 9265 + + Matthew Stafford + Matthew + Stafford + Matthew + Stafford + + back + nfl.p.9265 + nfl.t.8 + Detroit Lions + Det + + 6 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/ZQUxiYCjYPtIf_MzwAFrXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/9265.png + small + + https://s.yimg.com/iu/api/res/1.2/ZQUxiYCjYPtIf_MzwAFrXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/9265.png + 0 + O + + QB + + + 71.0 + 7.8 + 2.9 + 1.00 + + + week + 17 + 59 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 555 + + + 2 + 367 + + + 3 + 188 + + + 4 + 3777 + + + 5 + 21 + + + 6 + 11 + + + 7 + 40 + + + 8 + 25 + + + 9 + 71 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 6 + + + 18 + 4 + + + 57 + 0 + + + 58 + 2 + + + 59 + 6 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 198 + + + 80 + 0 + + + 81 + 8 + + + + + + 380.p.25812 + 25812 + + Kirk Cousins + Kirk + Cousins + Kirk + Cousins + + nfl.p.25812 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/eXzP3puQYCKN9lpWfDh.9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25812.png + small + + https://s.yimg.com/iu/api/res/1.2/eXzP3puQYCKN9lpWfDh.9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25812.png + 0 + O + + QB + + + 65.8 + 7.2 + 3.9 + 1.00 + + + week + 17 + 93 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 606 + + + 2 + 425 + + + 3 + 181 + + + 4 + 4298 + + + 5 + 30 + + + 6 + 10 + + + 7 + 40 + + + 8 + 44 + + + 9 + 123 + + + 10 + 1 + + + 11 + 1 + + + 12 + -1 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 3 + + + 17 + 9 + + + 18 + 7 + + + 57 + 0 + + + 58 + 3 + + + 59 + 7 + + + 60 + 4 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 218 + + + 80 + 0 + + + 81 + 12 + + + + + + 380.p.28493 + 28493 + + Jamison Crowder + Jamison + Crowder + Jamison + Crowder + + ankle + nfl.p.28493 + nfl.t.28 + Washington Redskins + Was + + 4 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/kEZdM08SSze_idMn1mEIkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28493.png + small + + https://s.yimg.com/iu/api/res/1.2/kEZdM08SSze_idMn1mEIkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28493.png + 0 + O + + WR + + 1 + 1547501940 + + 95.2 + 10.3 + 2.0 + 0.99 + + + week + 17 + 24 + 2 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 30 + + + 10 + 0 + + + 11 + 29 + + + 12 + 388 + + + 13 + 2 + + + 14 + 20 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 49 + + + 79 + 0 + + + 80 + 15 + + + 81 + 1 + + + + + + 380.p.27585 + 27585 + + Carlos Hyde + Carlos + Hyde + Carlos + Hyde + + knee + nfl.p.27585 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/3W_Nk4gsLy75XhxxYW8I2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27585.png + small + + https://s.yimg.com/iu/api/res/1.2/3W_Nk4gsLy75XhxxYW8I2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27585.png + 0 + O + + RB + + + 89.2 + 9.6 + 3.3 + 0.96 + + + week + 17 + 38 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 172 + + + 9 + 571 + + + 10 + 5 + + + 11 + 10 + + + 12 + 33 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 16 + + + 79 + 0 + + + 80 + 0 + + + 81 + 27 + + + + + + 380.p.27789 + 27789 + + Trey Burton + Trey + Burton + Trey + Burton + + Q + Questionable + groin + nfl.p.27789 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/OfFTLRXAEUohs7CbFWcoZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27789.png + small + + https://s.yimg.com/iu/api/res/1.2/OfFTLRXAEUohs7CbFWcoZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27789.png + 0 + O + + TE + + + 72.8 + 8.0 + 3.6 + 1.00 + + + week + 17 + 86 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 2 + + + 10 + 0 + + + 11 + 54 + + + 12 + 569 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 76 + + + 79 + 0 + + + 80 + 29 + + + 81 + 1 + + + + + + 380.p.24815 + 24815 + + Mark Ingram + Mark + Ingram + Mark + Ingram + + nfl.p.24815 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/kk7Qy84wLeV3AQ2gy4KcDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24815.png + small + + https://s.yimg.com/iu/api/res/1.2/kk7Qy84wLeV3AQ2gy4KcDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24815.png + 0 + O + + RB + + 1 + 1 + 1548030540 + + 73.8 + 8.0 + 13.7 + 1.00 + + + week + 17 + 94 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 138 + + + 9 + 645 + + + 10 + 6 + + + 11 + 21 + + + 12 + 170 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 27 + + + 79 + 0 + + + 80 + 5 + + + 81 + 34 + + + + + + 380.p.8266 + 8266 + + Marshawn Lynch + Marshawn + Lynch + Marshawn + Lynch + + IR + Injured Reserve + groin + nfl.p.8266 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/pmnVAoiOtU9NPn70pc0rTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8266.png + small + + https://s.yimg.com/iu/api/res/1.2/pmnVAoiOtU9NPn70pc0rTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8266.png + 0 + O + + RB + + + 76.5 + 8.3 + 5.0 + 1.00 + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 90 + + + 9 + 376 + + + 10 + 3 + + + 11 + 15 + + + 12 + 84 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 20 + + + 79 + 0 + + + 80 + 6 + + + 81 + 20 + + + + + + 380.p.6763 + 6763 + + Philip Rivers + Philip + Rivers + Philip + Rivers + + Q + Questionable + nfl.p.6763 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/_ZDEtpn311Lhx6pZCAsH5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/6763.png + small + + https://s.yimg.com/iu/api/res/1.2/_ZDEtpn311Lhx6pZCAsH5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/6763.png + 0 + O + + QB + + 1 + 1547416440 + + 90.9 + 9.8 + 1.9 + 1.00 + + + week + 17 + 95 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 508 + + + 2 + 347 + + + 3 + 161 + + + 4 + 4308 + + + 5 + 32 + + + 6 + 12 + + + 7 + 32 + + + 8 + 18 + + + 9 + 7 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 5 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 1 + + + 59 + 10 + + + 60 + 7 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 213 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.25883 + 25883 + + Alfred Morris + Alfred + Morris + Alfred + Morris + + knee + nfl.p.25883 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/ySgpQVF9IkcaXifT_Pk_vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25883.png + small + + https://s.yimg.com/iu/api/res/1.2/ySgpQVF9IkcaXifT_Pk_vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25883.png + 0 + O + + RB + + + 91.2 + 9.8 + 2.9 + 0.40 + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 111 + + + 9 + 428 + + + 10 + 2 + + + 11 + 8 + + + 12 + 73 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 13 + + + 79 + 0 + + + 80 + 5 + + + 81 + 24 + + + + + + 380.p.26664 + 26664 + + Robert Woods + Robert + Woods + Robert + Woods + + nfl.p.26664 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/eX1MUgLLhKyWb6PaqBQNxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26664.png + small + + https://s.yimg.com/iu/api/res/1.2/eX1MUgLLhKyWb6PaqBQNxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26664.png + 0 + O + + WR + + 1 + 1 + 1548028560 + + 83.9 + 9.1 + 3.6 + 1.00 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 19 + + + 9 + 157 + + + 10 + 1 + + + 11 + 86 + + + 12 + 1219 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 130 + + + 79 + 0 + + + 80 + 66 + + + 81 + 9 + + + + + + 380.p.29785 + 29785 + + Robby Anderson + Robby + Anderson + Robby + Anderson + + ankle + nfl.p.29785 + nfl.t.20 + New York Jets + NYJ + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/CM1J33Rc6ndztf3z6g9C9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29785.png + small + + https://s.yimg.com/iu/api/res/1.2/CM1J33Rc6ndztf3z6g9C9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29785.png + 0 + O + + WR + + + 98.3 + 10.5 + 2.2 + 0.99 + + + week + 17 + 71 + 1 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + -8 + + + 10 + 0 + + + 11 + 50 + + + 12 + 752 + + + 13 + 6 + + + 14 + 13 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 94 + + + 79 + 0 + + + 80 + 30 + + + 81 + 0 + + + + + + 380.p.9274 + 9274 + + Michael Crabtree + Michael + Crabtree + Michael + Crabtree + + nfl.p.9274 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/S_7joPR4ZsGcXZj4JOCUfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/9274.png + small + + https://s.yimg.com/iu/api/res/1.2/S_7joPR4ZsGcXZj4JOCUfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/9274.png + 0 + O + + WR + + + 90.9 + 9.8 + 3.2 + 1.00 + + + week + 17 + 57 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 54 + + + 12 + 607 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 100 + + + 79 + 0 + + + 80 + 35 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27590 + 27590 + + Jimmy Garoppolo + Jimmy + Garoppolo + Jimmy + Garoppolo + + IR + Injured Reserve + torn left ACL + nfl.p.27590 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/0MFDYZUKoA7bCDSAa_lS2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27590.png + small + + https://s.yimg.com/iu/api/res/1.2/0MFDYZUKoA7bCDSAa_lS2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27590.png + 0 + O + + QB + + + 78.1 + 8.5 + 3.4 + 1.00 + + + week + 17 + 10 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 89 + + + 2 + 53 + + + 3 + 36 + + + 4 + 718 + + + 5 + 5 + + + 6 + 3 + + + 7 + 13 + + + 8 + 8 + + + 9 + 33 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 4 + + + 18 + 0 + + + 57 + 0 + + + 58 + 1 + + + 59 + 1 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 35 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.7924 + 7924 + + Delanie Walker + Delanie + Walker + Delanie + Walker + + IR + Injured Reserve + broken right ankle + nfl.p.7924 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/ZjiyLeiS95ElocmqoGy4ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7924.png + small + + https://s.yimg.com/iu/api/res/1.2/ZjiyLeiS95ElocmqoGy4ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7924.png + 0 + O + + TE + + + 70.9 + 7.7 + 3.5 + 1.00 + + + week + 17 + 10 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 52 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.30182 + 30182 + + Cooper Kupp + Cooper + Kupp + Cooper + Kupp + + IR + Injured Reserve + torn left ACL + nfl.p.30182 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/sX9bAb9.y0VsP5.QDxjZQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30182.png + small + + https://s.yimg.com/iu/api/res/1.2/sX9bAb9.y0VsP5.QDxjZQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30182.png + 0 + O + + WR + + + 100.1 + 10.7 + 1.9 + 0.99 + + + week + 17 + 22 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 25 + + + 10 + 0 + + + 11 + 40 + + + 12 + 566 + + + 13 + 6 + + + 14 + 4 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 3 + + + 78 + 55 + + + 79 + 0 + + + 80 + 25 + + + 81 + 3 + + + + + + 380.p.24830 + 24830 + + Kyle Rudolph + Kyle + Rudolph + Kyle + Rudolph + + nfl.p.24830 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/dwCSiJplgUMtrXBQofumzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24830.png + small + + https://s.yimg.com/iu/api/res/1.2/dwCSiJplgUMtrXBQofumzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24830.png + 0 + O + + TE + + + 68.1 + 7.5 + 4.0 + 1.00 + + + week + 17 + 77 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 64 + + + 12 + 634 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 82 + + + 79 + 0 + + + 80 + 32 + + + 81 + 0 + + + + + + 380.p.6770 + 6770 + + Ben Roethlisberger + Ben + Roethlisberger + Ben + Roethlisberger + + right elbow + nfl.p.6770 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/3Bc6.N_r0C.D7QSKM1Od6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/6770.png + small + + https://s.yimg.com/iu/api/res/1.2/3Bc6.N_r0C.D7QSKM1Od6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/6770.png + 0 + O + + QB + + + 93.6 + 10.1 + 2.1 + 1.00 + + + week + 17 + 97 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 675 + + + 2 + 452 + + + 3 + 223 + + + 4 + 5129 + + + 5 + 34 + + + 6 + 16 + + + 7 + 24 + + + 8 + 31 + + + 9 + 98 + + + 10 + 3 + + + 11 + 1 + + + 12 + -1 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 4 + + + 17 + 7 + + + 18 + 2 + + + 57 + 0 + + + 58 + 1 + + + 59 + 16 + + + 60 + 7 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 248 + + + 80 + 0 + + + 81 + 13 + + + + + + 380.p.30362 + 30362 + + Chris Carson + Chris + Carson + Chris + Carson + + hip + nfl.p.30362 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/LuTNb3HJYss4pEGP9pg1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30362.png + small + + https://s.yimg.com/iu/api/res/1.2/LuTNb3HJYss4pEGP9pg1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30362.png + 0 + O + + RB + + + 98.9 + 10.6 + 3.4 + 0.75 + + + week + 17 + 94 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 247 + + + 9 + 1151 + + + 10 + 9 + + + 11 + 20 + + + 12 + 163 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 7 + + + 81 + 61 + + + + + + 380.p.28429 + 28429 + + Devin Funchess + Devin + Funchess + Devin + Funchess + + back, not injury related + nfl.p.28429 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/QszNy2ZQt3Q3VOpI.Fv2mA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28429.png + small + + https://s.yimg.com/iu/api/res/1.2/QszNy2ZQt3Q3VOpI.Fv2mA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28429.png + 0 + O + + WR + + + 89.3 + 9.7 + 3.1 + 1.00 + + + week + 17 + 60 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 44 + + + 12 + 549 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 79 + + + 79 + 0 + + + 80 + 35 + + + 81 + 0 + + + + + + 380.p.29255 + 29255 + + Will Fuller V + Will + Fuller V + Will + Fuller V + + IR + Injured Reserve + torn right ACL + nfl.p.29255 + nfl.t.34 + Houston Texans + Hou + + 10 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/Orbt3ffkhT2UYqZvBv7yHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29255.png + small + + https://s.yimg.com/iu/api/res/1.2/Orbt3ffkhT2UYqZvBv7yHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29255.png + 0 + O + + WR + + + 97.8 + 10.5 + 2.5 + 0.99 + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 32 + + + 12 + 503 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 45 + + + 79 + 0 + + + 80 + 23 + + + 81 + 0 + + + + + + 380.p.31013 + 31013 + + Kerryon Johnson + Kerryon + Johnson + Kerryon + Johnson + + IR + Injured Reserve + knee + nfl.p.31013 + nfl.t.8 + Detroit Lions + Det + + 6 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/6ef5LP.I7uNo0TPFk43cXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31013.png + small + + https://s.yimg.com/iu/api/res/1.2/6ef5LP.I7uNo0TPFk43cXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31013.png + 0 + O + + RB + + + 100.9 + 10.8 + 2.3 + 0.88 + + + week + 17 + 67 + -1 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 118 + + + 9 + 641 + + + 10 + 3 + + + 11 + 32 + + + 12 + 213 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 39 + + + 79 + 0 + + + 80 + 11 + + + 81 + 32 + + + + + + 380.p.27532 + 27532 + + Sammy Watkins + Sammy + Watkins + Sammy + Watkins + + foot + nfl.p.27532 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/ivubI7j.Qh_trMyVWZe03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27532.png + small + + https://s.yimg.com/iu/api/res/1.2/ivubI7j.Qh_trMyVWZe03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27532.png + 0 + O + + WR + + 1 + 1 + 1548043380 + + 97.0 + 10.4 + 2.8 + 0.99 + + + week + 17 + 60 + -1 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 5 + + + 9 + 52 + + + 10 + 0 + + + 11 + 40 + + + 12 + 519 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 55 + + + 79 + 0 + + + 80 + 24 + + + 81 + 2 + + + + + + 380.p.28461 + 28461 + + Tevin Coleman + Tevin + Coleman + Tevin + Coleman + + nfl.p.28461 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/ovDweK4b1hvJitxLj7DN9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28461.png + small + + https://s.yimg.com/iu/api/res/1.2/ovDweK4b1hvJitxLj7DN9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28461.png + 0 + O + + RB + + + 96.6 + 10.4 + 3.6 + 1.00 + + + week + 17 + 93 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 167 + + + 9 + 800 + + + 10 + 4 + + + 11 + 32 + + + 12 + 276 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 2 + + + 62 + 1 + + + 63 + 0 + + + 64 + 0 + + + 78 + 44 + + + 79 + 0 + + + 80 + 15 + + + 81 + 36 + + + + + + 380.p.30123 + 30123 + + Patrick Mahomes + Patrick + Mahomes + Patrick + Mahomes + + nfl.p.30123 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 15 + QB + + https://s.yimg.com/iu/api/res/1.2/UnyIrSTTy4_UZ0LpRTGGAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30123.png + small + + https://s.yimg.com/iu/api/res/1.2/UnyIrSTTy4_UZ0LpRTGGAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30123.png + 0 + O + + QB + + 1 + 1 + 1548040980 + + 106.9 + 11.4 + 2.4 + 0.98 + + + week + 17 + 99 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 580 + + + 2 + 383 + + + 3 + 197 + + + 4 + 5097 + + + 5 + 50 + + + 6 + 12 + + + 7 + 26 + + + 8 + 60 + + + 9 + 272 + + + 10 + 2 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 9 + + + 18 + 2 + + + 57 + 0 + + + 58 + 1 + + + 59 + 15 + + + 60 + 7 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 237 + + + 80 + 0 + + + 81 + 18 + + + + + + 380.p.30247 + 30247 + + Jamaal Williams + Jamaal + Williams + Jamaal + Williams + + nfl.p.30247 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/mf2HJR08YjaHrK67hdvekg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30247.png + small + + https://s.yimg.com/iu/api/res/1.2/mf2HJR08YjaHrK67hdvekg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30247.png + 0 + O + + RB + + + 106.1 + 11.3 + 3.4 + 0.77 + + + week + 17 + 80 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 121 + + + 9 + 464 + + + 10 + 3 + + + 11 + 27 + + + 12 + 210 + + + 13 + 0 + + + 14 + 95 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 41 + + + 79 + 0 + + + 80 + 11 + + + 81 + 25 + + + + + + 380.p.8780 + 8780 + + Matt Ryan + Matt + Ryan + Matt + Ryan + + nfl.p.8780 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/coF5q51jsTQgOGJ0a4zw6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8780.png + small + + https://s.yimg.com/iu/api/res/1.2/coF5q51jsTQgOGJ0a4zw6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8780.png + 0 + O + + QB + + + 104.8 + 11.2 + 1.8 + 0.99 + + + week + 17 + 96 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 608 + + + 2 + 422 + + + 3 + 186 + + + 4 + 4924 + + + 5 + 35 + + + 6 + 7 + + + 7 + 42 + + + 8 + 33 + + + 9 + 125 + + + 10 + 3 + + + 11 + 1 + + + 12 + 5 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 10 + + + 18 + 5 + + + 57 + 0 + + + 58 + 1 + + + 59 + 9 + + + 60 + 6 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 236 + + + 80 + 1 + + + 81 + 15 + + + + + + 380.p.29236 + 29236 + + Carson Wentz + Carson + Wentz + Carson + Wentz + + Q + Questionable + back + nfl.p.29236 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 11 + QB + + https://s.yimg.com/iu/api/res/1.2/AeYytqY0uavg5ruI0QNN5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29236.png + small + + https://s.yimg.com/iu/api/res/1.2/AeYytqY0uavg5ruI0QNN5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29236.png + 0 + O + + QB + + 1 + 1 + 1548102600 + + 77.7 + 8.4 + 4.9 + 1.00 + + + week + 17 + 63 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 401 + + + 2 + 279 + + + 3 + 122 + + + 4 + 3074 + + + 5 + 21 + + + 6 + 7 + + + 7 + 31 + + + 8 + 34 + + + 9 + 93 + + + 10 + 0 + + + 11 + 1 + + + 12 + 4 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 9 + + + 18 + 6 + + + 57 + 0 + + + 58 + 0 + + + 59 + 5 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 159 + + + 80 + 1 + + + 81 + 9 + + + + + + 380.p.8982 + 8982 + + Pierre Garcon + Pierre + Garcon + Pierre + Garcon + + IR + Injured Reserve + knee + nfl.p.8982 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/ee68_ChnY6WMAFU.cO_jKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/8982.png + small + + https://s.yimg.com/iu/api/res/1.2/ee68_ChnY6WMAFU.cO_jKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/8982.png + 0 + O + + WR + + + 106.8 + 11.4 + 1.7 + 0.98 + + + week + 17 + 16 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 24 + + + 12 + 286 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 46 + + + 79 + 0 + + + 80 + 14 + + + 81 + 0 + + + + + + 380.p.28390 + 28390 + + Marcus Mariota + Marcus + Mariota + Marcus + Mariota + + Q + Questionable + neck, foot + nfl.p.28390 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/Mu1YjIlPcdNP3iG0bV6XbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28390.png + small + + https://s.yimg.com/iu/api/res/1.2/Mu1YjIlPcdNP3iG0bV6XbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28390.png + 0 + O + + QB + + + 117.5 + 12.5 + 1.4 + 0.90 + + + week + 17 + 33 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 331 + + + 2 + 228 + + + 3 + 103 + + + 4 + 2528 + + + 5 + 11 + + + 6 + 8 + + + 7 + 42 + + + 8 + 64 + + + 9 + 357 + + + 10 + 2 + + + 11 + 1 + + + 12 + 21 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 9 + + + 18 + 2 + + + 57 + 0 + + + 58 + 1 + + + 59 + 5 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 121 + + + 80 + 1 + + + 81 + 26 + + + + + + 380.p.30142 + 30142 + + David Njoku + David + Njoku + David + Njoku + + knee + nfl.p.30142 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/QWF2p1lxc._Qz7NwGPazNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30142.png + small + + https://s.yimg.com/iu/api/res/1.2/QWF2p1lxc._Qz7NwGPazNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30142.png + 0 + O + + TE + + + 101.9 + 10.9 + 1.8 + 0.97 + + + week + 17 + 85 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 56 + + + 12 + 639 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 88 + + + 79 + 0 + + + 80 + 27 + + + 81 + 0 + + + + + + 380.p.26708 + 26708 + + Jordan Reed + Jordan + Reed + Jordan + Reed + + IR + Injured Reserve + ankle, foot + nfl.p.26708 + nfl.t.28 + Washington Redskins + Was + + 4 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/YRhRFHAsSU_.btqab7GnWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26708.png + small + + https://s.yimg.com/iu/api/res/1.2/YRhRFHAsSU_.btqab7GnWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26708.png + 0 + O + + TE + + + 101.8 + 10.9 + 2.5 + 1.00 + + + week + 17 + 60 + -1 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 54 + + + 12 + 558 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 84 + + + 79 + 0 + + + 80 + 26 + + + 81 + 0 + + + + + + 380.p.28014 + 28014 + + Isaiah Crowell + Isaiah + Crowell + Isaiah + Crowell + + IR + Injured Reserve + toe + nfl.p.28014 + nfl.t.20 + New York Jets + NYJ + + 11 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/VCIGdDIA1GUOi1urBU0j_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28014.png + small + + https://s.yimg.com/iu/api/res/1.2/VCIGdDIA1GUOi1urBU0j_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28014.png + 0 + O + + RB + + + 113.7 + 12.1 + 2.1 + 0.93 + + + week + 17 + 55 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 143 + + + 9 + 685 + + + 10 + 6 + + + 11 + 21 + + + 12 + 152 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 3 + + + 62 + 2 + + + 63 + 0 + + + 64 + 0 + + + 78 + 28 + + + 79 + 0 + + + 80 + 7 + + + 81 + 26 + + + + + + 380.p.25711 + 25711 + + Andrew Luck + Andrew + Luck + Andrew + Luck + + nfl.p.25711 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/4eu6wobfGQsFlAEIYsmW0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25711.png + small + + https://s.yimg.com/iu/api/res/1.2/4eu6wobfGQsFlAEIYsmW0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25711.png + 0 + O + + QB + + 1 + 1547340540 + + 109.5 + 11.7 + 2.6 + 0.98 + + + week + 17 + 96 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 639 + + + 2 + 430 + + + 3 + 209 + + + 4 + 4593 + + + 5 + 39 + + + 6 + 15 + + + 7 + 18 + + + 8 + 46 + + + 9 + 148 + + + 10 + 0 + + + 11 + 1 + + + 12 + 4 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 6 + + + 18 + 1 + + + 57 + 0 + + + 58 + 2 + + + 59 + 7 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 236 + + + 80 + 1 + + + 81 + 12 + + + + + + 380.p.29235 + 29235 + + Jared Goff + Jared + Goff + Jared + Goff + + nfl.p.29235 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 16 + QB + + https://s.yimg.com/iu/api/res/1.2/wGsqAonc5O2QhEU43nqCUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29235.png + small + + https://s.yimg.com/iu/api/res/1.2/wGsqAonc5O2QhEU43nqCUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29235.png + 0 + O + + QB + + 1 + 1 + 1548026820 + + 107.5 + 11.5 + 1.9 + 0.97 + + + week + 17 + 96 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 561 + + + 2 + 364 + + + 3 + 197 + + + 4 + 4688 + + + 5 + 32 + + + 6 + 12 + + + 7 + 33 + + + 8 + 43 + + + 9 + 108 + + + 10 + 2 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 3 + + + 17 + 12 + + + 18 + 5 + + + 57 + 0 + + + 58 + 0 + + + 59 + 9 + + + 60 + 5 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 233 + + + 80 + 0 + + + 81 + 9 + + + + + + 380.p.29560 + 29560 + + Peyton Barber + Peyton + Barber + Peyton + Barber + + nfl.p.29560 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/nuL4wKWaf3fbnKdylmkRPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29560.png + small + + https://s.yimg.com/iu/api/res/1.2/nuL4wKWaf3fbnKdylmkRPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29560.png + 0 + O + + RB + + + 114.6 + 12.2 + 2.8 + 0.62 + + + week + 17 + 68 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 234 + + + 9 + 871 + + + 10 + 5 + + + 11 + 20 + + + 12 + 92 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 29 + + + 79 + 0 + + + 80 + 4 + + + 81 + 41 + + + + + + 380.p.30259 + 30259 + + George Kittle + George + Kittle + George + Kittle + + knee + nfl.p.30259 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/mALnZ42dZZVOkuAiuDXDBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30259.png + small + + https://s.yimg.com/iu/api/res/1.2/mALnZ42dZZVOkuAiuDXDBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30259.png + 0 + O + + TE + + + 118.9 + 12.7 + 1.5 + 0.98 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 10 + + + 10 + 0 + + + 11 + 88 + + + 12 + 1377 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 6 + + + 64 + 3 + + + 78 + 136 + + + 79 + 0 + + + 80 + 60 + + + 81 + 1 + + + + + + 380.p.31001 + 31001 + + Sony Michel + Sony + Michel + Sony + Michel + + knee + nfl.p.31001 + nfl.t.17 + New England Patriots + NE + + 11 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/r9qaCKHR1p1V0saU4_R_yQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31001.png + small + + https://s.yimg.com/iu/api/res/1.2/r9qaCKHR1p1V0saU4_R_yQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31001.png + 0 + O + + RB + + 1 + 1 + 1548044220 + + 102.3 + 11.0 + 3.3 + 0.97 + + + week + 17 + 93 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 209 + + + 9 + 931 + + + 10 + 6 + + + 11 + 7 + + + 12 + 50 + + + 13 + 0 + + + 14 + 77 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 3 + + + 81 + 54 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27299 + 27299 + + Jack Doyle + Jack + Doyle + Jack + Doyle + + IR + Injured Reserve + kidney + nfl.p.27299 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/5AxNClOkL4tShTzB2lZ7rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27299.png + small + + https://s.yimg.com/iu/api/res/1.2/5AxNClOkL4tShTzB2lZ7rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27299.png + 0 + O + + TE + + + 121.2 + 12.9 + 1.3 + 0.94 + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 26 + + + 12 + 245 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 33 + + + 79 + 0 + + + 80 + 14 + + + 81 + 0 + + + + + + 380.p.7177 + 7177 + + Alex Smith + Alex + Smith + Alex + Smith + + IR + Injured Reserve + broken right fibula, tibia + nfl.p.7177 + nfl.t.28 + Washington Redskins + Was + + 4 + + 11 + QB + + https://s.yimg.com/iu/api/res/1.2/KlcQffH_6RIawqW.lgD4.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/7177.png + small + + https://s.yimg.com/iu/api/res/1.2/KlcQffH_6RIawqW.lgD4.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/7177.png + 0 + O + + QB + + 1 + 1 + 1548109800 + + 126.8 + 13.5 + 1.2 + 0.71 + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 328 + + + 2 + 205 + + + 3 + 123 + + + 4 + 2180 + + + 5 + 10 + + + 6 + 5 + + + 7 + 22 + + + 8 + 41 + + + 9 + 168 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 6 + + + 18 + 1 + + + 57 + 0 + + + 58 + 1 + + + 59 + 4 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 106 + + + 80 + 0 + + + 81 + 15 + + + + + + 380.p.28465 + 28465 + + Duke Johnson Jr. + Duke + Johnson Jr. + Duke + Johnson Jr. + + nfl.p.28465 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/_SNldqJV95w66gzNvNAVbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28465.png + small + + https://s.yimg.com/iu/api/res/1.2/_SNldqJV95w66gzNvNAVbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28465.png + 0 + O + + RB + + + 124.5 + 13.3 + 1.4 + 0.66 + + + week + 17 + 53 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 40 + + + 9 + 201 + + + 10 + 0 + + + 11 + 47 + + + 12 + 429 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 62 + + + 79 + 0 + + + 80 + 25 + + + 81 + 9 + + + + + + 380.p.25755 + 25755 + + Alshon Jeffery + Alshon + Jeffery + Alshon + Jeffery + + Q + Questionable + illness, shoulder + nfl.p.25755 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/.opDpnZ8H5ql4tnOyvuRnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25755.png + small + + https://s.yimg.com/iu/api/res/1.2/.opDpnZ8H5ql4tnOyvuRnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25755.png + 0 + O + + WR + + 1 + 1547429700 + + 84.4 + 9.0 + 13.4 + 0.99 + + + week + 17 + 93 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 65 + + + 12 + 843 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 92 + + + 79 + 0 + + + 80 + 48 + + + 81 + 0 + + + + + + 380.p.26777 + 26777 + + Chris Thompson + Chris + Thompson + Chris + Thompson + + illness + nfl.p.26777 + nfl.t.28 + Washington Redskins + Was + + 4 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/hSbUpY8SGr30KLGVqbdMbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26777.png + small + + https://s.yimg.com/iu/api/res/1.2/hSbUpY8SGr30KLGVqbdMbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26777.png + 0 + O + + RB + + + 115.1 + 12.3 + 2.4 + 0.77 + + + week + 17 + 41 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 43 + + + 9 + 178 + + + 10 + 0 + + + 11 + 41 + + + 12 + 268 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 55 + + + 79 + 0 + + + 80 + 12 + + + 81 + 9 + + + + + + 380.p.30132 + 30132 + + O.J. Howard + O.J. + Howard + O.J. + Howard + + IR + Injured Reserve + foot, ankle + nfl.p.30132 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/bffbxj0DEczf6aQDD5LHww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30132.png + small + + https://s.yimg.com/iu/api/res/1.2/bffbxj0DEczf6aQDD5LHww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30132.png + 0 + O + + TE + + + 124.6 + 13.2 + 1.2 + 0.93 + + + week + 17 + 23 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 34 + + + 12 + 565 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 48 + + + 79 + 0 + + + 80 + 28 + + + 81 + 0 + + + + + + 380.p.8813 + 8813 + + Jordy Nelson + Jordy + Nelson + Jordy + Nelson + + knee + nfl.p.8813 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/zMfM_xE9blYBtn4gEnuGbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8813.png + small + + https://s.yimg.com/iu/api/res/1.2/zMfM_xE9blYBtn4gEnuGbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8813.png + 0 + O + + WR + + + 109.8 + 11.7 + 1.8 + 0.96 + + + week + 17 + 52 + 1 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -2 + + + 10 + 0 + + + 11 + 63 + + + 12 + 739 + + + 13 + 3 + + + 14 + 7 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 0 + + + 78 + 88 + + + 79 + 0 + + + 80 + 36 + + + 81 + 0 + + + + + + 380.p.100030 + 100030 + + Jacksonville + Jacksonville + + Jacksonville + + + nfl.p.100030 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + + DEF + + https://s.yimg.com/xe/ipt/50x50w.3.gif + small + + https://s.yimg.com/xe/ipt/50x50w.3.gif + 0 + DT + + DEF + + + 64.7 + 7.2 + 6.3 + 1.00 + + + week + 17 + 73 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 310 + + + 32 + 37.0 + + + 33 + 11 + + + 34 + 6 + + + 35 + 2 + + + 36 + 2 + + + 37 + 0 + + + 48 + 866 + + + 49 + 1 + + + 50 + 1 + + + 51 + 0 + + + 52 + 3 + + + 53 + 6 + + + 54 + 3 + + + 55 + 2 + + + 56 + 1 + + + 67 + 9 + + + 68 + 73 + + + 69 + 4983 + + + 70 + 0 + + + 71 + 0 + + + 72 + 2 + + + 73 + 4 + + + 74 + 8 + + + 75 + 2 + + + 76 + 0 + + + 77 + 44 + + + 82 + 0 + + + + + + 380.p.8261 + 8261 + + Adrian Peterson + Adrian + Peterson + Adrian + Peterson + + shoulder + nfl.p.8261 + nfl.t.28 + Washington Redskins + Was + + 4 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/4nr3gWj1x1MA__zBdA7hYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/8261.png + small + + https://s.yimg.com/iu/api/res/1.2/4nr3gWj1x1MA__zBdA7hYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/8261.png + 0 + O + + RB + + + 105.7 + 11.2 + 3.9 + 0.56 + + + week + 17 + 89 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 251 + + + 9 + 1042 + + + 10 + 7 + + + 11 + 20 + + + 12 + 208 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 3 + + + 62 + 2 + + + 63 + 1 + + + 64 + 0 + + + 78 + 26 + + + 79 + 0 + + + 80 + 9 + + + 81 + 47 + + + + + + 380.p.30232 + 30232 + + Tarik Cohen + Tarik + Cohen + Tarik + Cohen + + nfl.p.30232 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/5MFySd5xS5VNnt1tM5w42w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30232.png + small + + https://s.yimg.com/iu/api/res/1.2/5MFySd5xS5VNnt1tM5w42w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30232.png + 0 + O + + RB + + + 115.5 + 12.3 + 2.1 + 0.84 + + + week + 17 + 95 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 1 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 99 + + + 9 + 444 + + + 10 + 3 + + + 11 + 71 + + + 12 + 725 + + + 13 + 5 + + + 14 + 433 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 1 + + + 78 + 91 + + + 79 + 1 + + + 80 + 29 + + + 81 + 20 + + + + + + 380.p.29369 + 29369 + + Dak Prescott + Dak + Prescott + Dak + Prescott + + nfl.p.29369 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/.3Foz4tfooyIK_MvYIoNjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29369.png + small + + https://s.yimg.com/iu/api/res/1.2/.3Foz4tfooyIK_MvYIoNjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29369.png + 0 + O + + QB + + 1 + 1547353320 + + 120.5 + 12.8 + 1.4 + 0.77 + + + week + 17 + 71 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 526 + + + 2 + 356 + + + 3 + 170 + + + 4 + 3885 + + + 5 + 22 + + + 6 + 8 + + + 7 + 56 + + + 8 + 75 + + + 9 + 305 + + + 10 + 6 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 12 + + + 18 + 6 + + + 57 + 0 + + + 58 + 0 + + + 59 + 9 + + + 60 + 5 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 184 + + + 80 + 0 + + + 81 + 25 + + + + + + 380.p.30997 + 30997 + + Rashaad Penny + Rashaad + Penny + Rashaad + Penny + + knee + nfl.p.30997 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/MPhFYae2WetO7k8.6Ugcag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30997.png + small + + https://s.yimg.com/iu/api/res/1.2/MPhFYae2WetO7k8.6Ugcag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30997.png + 0 + O + + RB + + + 95.8 + 10.3 + 5.1 + 0.77 + + + week + 17 + 26 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 85 + + + 9 + 419 + + + 10 + 2 + + + 11 + 9 + + + 12 + 75 + + + 13 + 0 + + + 14 + 140 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 12 + + + 79 + 0 + + + 80 + 3 + + + 81 + 18 + + + + + + 380.p.100016 + 100016 + + Minnesota + Minnesota + + Minnesota + + + nfl.p.100016 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + + DEF + + https://s.yimg.com/xe/ipt/50x50w.6.gif + small + + https://s.yimg.com/xe/ipt/50x50w.6.gif + 0 + DT + + DEF + + + 73.4 + 8.1 + 3.2 + 1.00 + + + week + 17 + 92 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 311 + + + 32 + 50.0 + + + 33 + 12 + + + 34 + 8 + + + 35 + 3 + + + 36 + 0 + + + 37 + 0 + + + 48 + 855 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 4 + + + 53 + 5 + + + 54 + 5 + + + 55 + 1 + + + 56 + 1 + + + 67 + 10 + + + 68 + 88 + + + 69 + 4955 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 8 + + + 74 + 5 + + + 75 + 1 + + + 76 + 1 + + + 77 + 44 + + + 82 + 0 + + + + + + 380.p.100014 + 100014 + + Los Angeles + Los Angeles + + Los Angeles + + + nfl.p.100014 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/stl.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/stl.gif + 0 + DT + + DEF + + + 74.6 + 8.2 + 3.3 + 1.00 + + + week + 17 + 98 + -1 + + + season + 2018 + + + 0 + 16 + + + 31 + 376 + + + 32 + 41.0 + + + 33 + 18 + + + 34 + 12 + + + 35 + 5 + + + 36 + 2 + + + 37 + 2 + + + 48 + 1141 + + + 49 + 0 + + + 50 + 1 + + + 51 + 0 + + + 52 + 4 + + + 53 + 2 + + + 54 + 2 + + + 55 + 5 + + + 56 + 2 + + + 67 + 6 + + + 68 + 72 + + + 69 + 5737 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 3 + + + 74 + 8 + + + 75 + 3 + + + 76 + 1 + + + 77 + 31 + + + 82 + 0 + + + + + + 380.p.28408 + 28408 + + Nelson Agholor + Nelson + Agholor + Nelson + Agholor + + nfl.p.28408 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/dTRTrsE83Y7miPtMN3IhLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28408.png + small + + https://s.yimg.com/iu/api/res/1.2/dTRTrsE83Y7miPtMN3IhLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28408.png + 0 + O + + WR + + 1 + 1547431200 + + 111.7 + 11.9 + 2.0 + 0.94 + + + week + 17 + 34 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 15 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 32 + + + 10 + 0 + + + 11 + 64 + + + 12 + 736 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 5 + + + 64 + 1 + + + 78 + 97 + + + 79 + 1 + + + 80 + 28 + + + 81 + 2 + + + + + + 380.p.30295 + 30295 + + Aaron Jones + Aaron + Jones + Aaron + Jones + + IR + Injured Reserve + knee + nfl.p.30295 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/T1hXEPELtOZ.QBxPnmGmZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30295.png + small + + https://s.yimg.com/iu/api/res/1.2/T1hXEPELtOZ.QBxPnmGmZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30295.png + 0 + O + + RB + + + 116.1 + 12.5 + 2.2 + 0.60 + + + week + 17 + 65 + -1 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 133 + + + 9 + 728 + + + 10 + 8 + + + 11 + 26 + + + 12 + 206 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 35 + + + 79 + 0 + + + 80 + 12 + + + 81 + 41 + + + + + + 380.p.29274 + 29274 + + Sterling Shepard + Sterling + Shepard + Sterling + Shepard + + nfl.p.29274 + nfl.t.19 + New York Giants + NYG + + 9 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/NcWklvAv2CHhB4SN9ZiBug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29274.png + small + + https://s.yimg.com/iu/api/res/1.2/NcWklvAv2CHhB4SN9ZiBug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29274.png + 0 + O + + WR + + + 120.9 + 12.9 + 1.4 + 0.86 + + + week + 17 + 74 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 33 + + + 10 + 0 + + + 11 + 66 + + + 12 + 872 + + + 13 + 4 + + + 14 + 27 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 0 + + + 78 + 107 + + + 79 + 0 + + + 80 + 47 + + + 81 + 1 + + + + + + 380.p.27531 + 27531 + + Blake Bortles + Blake + Bortles + Blake + Bortles + + nfl.p.27531 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/CLyHEw1SFR4alskKnV3S2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27531.png + small + + https://s.yimg.com/iu/api/res/1.2/CLyHEw1SFR4alskKnV3S2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27531.png + 0 + O + + QB + + + 134.0 + 14.1 + 1.1 + 0.27 + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 403 + + + 2 + 243 + + + 3 + 160 + + + 4 + 2718 + + + 5 + 13 + + + 6 + 11 + + + 7 + 31 + + + 8 + 58 + + + 9 + 365 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 8 + + + 18 + 4 + + + 57 + 0 + + + 58 + 1 + + + 59 + 3 + + + 60 + 3 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 128 + + + 80 + 0 + + + 81 + 28 + + + + + + 380.p.26767 + 26767 + + Kenny Stills + Kenny + Stills + Kenny + Stills + + groin + nfl.p.26767 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/U.8_k9HmQ46rQFFA3OUKbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26767.png + small + + https://s.yimg.com/iu/api/res/1.2/U.8_k9HmQ46rQFFA3OUKbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26767.png + 0 + O + + WR + + + 129.2 + 13.7 + 1.3 + 0.52 + + + week + 17 + 36 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 3 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 37 + + + 12 + 553 + + + 13 + 6 + + + 14 + 6 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 64 + + + 79 + 1 + + + 80 + 27 + + + 81 + 0 + + + + + + 380.p.100024 + 100024 + + Los Angeles + Los Angeles + + Los Angeles + + + nfl.p.100024 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sdg3.jpg + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sdg3.jpg + 0 + DT + + DEF + + + 88.5 + 9.5 + 1.5 + 1.00 + + + week + 17 + 69 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 317 + + + 32 + 38.0 + + + 33 + 13 + + + 34 + 7 + + + 35 + 2 + + + 36 + 0 + + + 37 + 0 + + + 48 + 1011 + + + 49 + 1 + + + 50 + 0 + + + 51 + 1 + + + 52 + 3 + + + 53 + 5 + + + 54 + 3 + + + 55 + 2 + + + 56 + 2 + + + 67 + 9 + + + 68 + 68 + + + 69 + 5339 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 4 + + + 74 + 10 + + + 75 + 0 + + + 76 + 1 + + + 77 + 39 + + + 82 + 0 + + + + + + 380.p.100021 + 100021 + + Philadelphia + Philadelphia + + Philadelphia + + + nfl.p.100021 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/phi.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/phi.gif + 0 + DT + + DEF + + + 77.9 + 8.5 + 2.9 + 1.00 + + + week + 17 + 53 + 1 + + + season + 2018 + + + 0 + 16 + + + 31 + 342 + + + 32 + 44.0 + + + 33 + 10 + + + 34 + 7 + + + 35 + 0 + + + 36 + 0 + + + 37 + 0 + + + 48 + 941 + + + 49 + 0 + + + 50 + 1 + + + 51 + 0 + + + 52 + 3 + + + 53 + 3 + + + 54 + 6 + + + 55 + 2 + + + 56 + 1 + + + 67 + 8 + + + 68 + 86 + + + 69 + 5859 + + + 70 + 0 + + + 71 + 1 + + + 72 + 0 + + + 73 + 3 + + + 74 + 5 + + + 75 + 5 + + + 76 + 2 + + + 77 + 38 + + + 82 + 0 + + + + + + 380.p.26644 + 26644 + + Tyler Eifert + Tyler + Eifert + Tyler + Eifert + + IR + Injured Reserve + broken right ankle + nfl.p.26644 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/0FuGdzmO79n2Msec33SjPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26644.png + small + + https://s.yimg.com/iu/api/res/1.2/0FuGdzmO79n2Msec33SjPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26644.png + 0 + O + + TE + + + 127.8 + 13.7 + 1.3 + 0.67 + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 15 + + + 12 + 179 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.100034 + 100034 + + Houston + Houston + + Houston + + + nfl.p.100034 + nfl.t.34 + Houston Texans + Hou + + 10 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/hou.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/hou.gif + 0 + DT + + DEF + + + 94.7 + 10.1 + 1.3 + 1.00 + + + week + 17 + 90 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 316 + + + 32 + 43.0 + + + 33 + 15 + + + 34 + 14 + + + 35 + 4 + + + 36 + 0 + + + 37 + 1 + + + 48 + 814 + + + 49 + 0 + + + 50 + 0 + + + 51 + 1 + + + 52 + 3 + + + 53 + 4 + + + 54 + 6 + + + 55 + 2 + + + 56 + 0 + + + 67 + 8 + + + 68 + 80 + + + 69 + 5490 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 5 + + + 74 + 6 + + + 75 + 3 + + + 76 + 1 + + + 77 + 41 + + + 82 + 0 + + + + + + 380.p.30494 + 30494 + + Ricky Seals-Jones + Ricky + Seals-Jones + Ricky + Seals-Jones + + Q + Questionable + shoulder + nfl.p.30494 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/ktJ6ILbB6oQl_bZG9VCUlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052018/30494.png + small + + https://s.yimg.com/iu/api/res/1.2/ktJ6ILbB6oQl_bZG9VCUlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052018/30494.png + 0 + O + + TE + + + 134.8 + 14.3 + 1.0 + 0.34 + + + week + 17 + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 34 + + + 12 + 343 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 69 + + + 79 + 0 + + + 80 + 14 + + + 81 + 0 + + + + + + 380.p.27564 + 27564 + + Derek Carr + Derek + Carr + Derek + Carr + + nfl.p.27564 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/yUfmSo7q411Yctuu2E4aJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072018/27564.png + small + + https://s.yimg.com/iu/api/res/1.2/yUfmSo7q411Yctuu2E4aJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072018/27564.png + 0 + O + + QB + + + 122.3 + 12.9 + 1.4 + 0.33 + + + week + 17 + 23 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 553 + + + 2 + 381 + + + 3 + 172 + + + 4 + 4049 + + + 5 + 19 + + + 6 + 10 + + + 7 + 51 + + + 8 + 24 + + + 9 + 47 + + + 10 + 1 + + + 11 + 1 + + + 12 + -9 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 12 + + + 18 + 7 + + + 57 + 0 + + + 58 + 2 + + + 59 + 7 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 197 + + + 80 + 0 + + + 81 + 5 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.26483 + 26483 + + Case Keenum + Case + Keenum + Case + Keenum + + nfl.p.26483 + nfl.t.7 + Denver Broncos + Den + + 10 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/Tc9Rs8mnFmmqw3jecPX_3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/26483.png + small + + https://s.yimg.com/iu/api/res/1.2/Tc9Rs8mnFmmqw3jecPX_3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/26483.png + 0 + O + + QB + + + 123.3 + 12.9 + 1.5 + 0.07 + + + week + 17 + 20 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 586 + + + 2 + 365 + + + 3 + 221 + + + 4 + 3890 + + + 5 + 18 + + + 6 + 15 + + + 7 + 34 + + + 8 + 26 + + + 9 + 93 + + + 10 + 2 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 11 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 11 + + + 60 + 3 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 179 + + + 80 + 0 + + + 81 + 10 + + + + + + 380.p.9353 + 9353 + + Jared Cook + Jared + Cook + Jared + Cook + + nfl.p.9353 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/VZwIb4N5ZqAb4YmDQDGpOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/9353.png + small + + https://s.yimg.com/iu/api/res/1.2/VZwIb4N5ZqAb4YmDQDGpOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/9353.png + 0 + O + + TE + + + 131.1 + 13.9 + 1.1 + 0.57 + + + week + 17 + 94 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 68 + + + 12 + 896 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 101 + + + 79 + 0 + + + 80 + 46 + + + 81 + 0 + + + + + + 380.p.26878 + 26878 + + C.J. Anderson + C.J. + Anderson + C.J. + Anderson + + nfl.p.26878 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/JgWKISDIM_v5FfYpcxCdWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26878.png + small + + https://s.yimg.com/iu/api/res/1.2/JgWKISDIM_v5FfYpcxCdWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26878.png + 0 + O + + RB + + 1 + 1 + 1548028440 + + 118.2 + 12.7 + 1.2 + 0.57 + + + week + 17 + 47 + 3 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 67 + + + 9 + 403 + + + 10 + 2 + + + 11 + 5 + + + 12 + 41 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 2 + + + 81 + 21 + + + + + + 380.p.6760 + 6760 + + Eli Manning + Eli + Manning + Eli + Manning + + nfl.p.6760 + nfl.t.19 + New York Giants + NYG + + 9 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/1P2ATLMI23KJAI1j4y3LqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/6760.png + small + + https://s.yimg.com/iu/api/res/1.2/1P2ATLMI23KJAI1j4y3LqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/6760.png + 0 + O + + QB + + + 121.7 + 12.7 + 1.3 + 0.09 + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 576 + + + 2 + 380 + + + 3 + 196 + + + 4 + 4299 + + + 5 + 21 + + + 6 + 11 + + + 7 + 47 + + + 8 + 15 + + + 9 + 20 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 3 + + + 17 + 7 + + + 18 + 4 + + + 57 + 0 + + + 58 + 1 + + + 59 + 10 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 206 + + + 80 + 0 + + + 81 + 5 + + + + + + 380.p.9496 + 9496 + + Julian Edelman + Julian + Edelman + Julian + Edelman + + ankle + nfl.p.9496 + nfl.t.17 + New England Patriots + NE + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/cqL.IO7DuT2jzRLaJNd02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/9496.png + small + + https://s.yimg.com/iu/api/res/1.2/cqL.IO7DuT2jzRLaJNd02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/9496.png + 0 + O + + WR + + 1 + 1 + 1548041040 + + 110.7 + 11.8 + 4.2 + 0.83 + + + week + 17 + 96 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 2 + + + 2 + 2 + + + 3 + 0 + + + 4 + 43 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 9 + + + 9 + 107 + + + 10 + 0 + + + 11 + 74 + + + 12 + 850 + + + 13 + 6 + + + 14 + 154 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 108 + + + 79 + 1 + + + 80 + 41 + + + 81 + 7 + + + + + + 380.p.28267 + 28267 + + Cameron Brate + Cameron + Brate + Cameron + Brate + + Q + Questionable + nfl.p.28267 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/R0dlTa5XKiMQyLe7SMJPGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28267.png + small + + https://s.yimg.com/iu/api/res/1.2/R0dlTa5XKiMQyLe7SMJPGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28267.png + 0 + O + + TE + + 1 + 1547908500 + + 133.0 + 14.1 + 1.0 + 0.60 + + + week + 17 + 69 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 30 + + + 12 + 289 + + + 13 + 6 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 49 + + + 79 + 0 + + + 80 + 18 + + + 81 + 0 + + + + + + 380.p.24822 + 24822 + + Andy Dalton + Andy + Dalton + Andy + Dalton + + IR + Injured Reserve + right thumb + nfl.p.24822 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/sBCjEOpb3HMcxuR6Oqezpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24822.png + small + + https://s.yimg.com/iu/api/res/1.2/sBCjEOpb3HMcxuR6Oqezpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24822.png + 0 + O + + QB + + + 124.6 + 13.2 + 1.6 + 0.04 + + + week + 17 + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 365 + + + 2 + 226 + + + 3 + 139 + + + 4 + 2566 + + + 5 + 21 + + + 6 + 11 + + + 7 + 21 + + + 8 + 16 + + + 9 + 99 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 1 + + + 59 + 1 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 132 + + + 80 + 0 + + + 81 + 4 + + + + + + 380.p.7867 + 7867 + + Stephen Gostkowski + Stephen + Gostkowski + Stephen + Gostkowski + + nfl.p.7867 + nfl.t.17 + New England Patriots + NE + + 11 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/Q6H82tU1YcRPsEDiHovfjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7867.png + small + + https://s.yimg.com/iu/api/res/1.2/Q6H82tU1YcRPsEDiHovfjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7867.png + 0 + K + + K + + + 79.0 + 8.6 + 2.6 + 1.00 + + + week + 17 + 97 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 11 + + + 21 + 10 + + + 22 + 4 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 3 + + + 29 + 49 + + + 30 + 1 + + + + + + 380.p.25881 + 25881 + + Greg Zuerlein + Greg + Zuerlein + Greg + Zuerlein + + right groin + nfl.p.25881 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/24NsaQu4derknKAx3py1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25881.png + small + + https://s.yimg.com/iu/api/res/1.2/24NsaQu4derknKAx3py1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25881.png + 0 + K + + K + + + 81.8 + 8.8 + 3.0 + 1.00 + + + week + 17 + 97 + 0 + + + season + 2018 + + + 0 + 11 + + + 19 + 0 + + + 20 + 9 + + + 21 + 10 + + + 22 + 4 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 2 + + + 29 + 35 + + + 30 + 1 + + + + + + 380.p.31008 + 31008 + + Ronald Jones II + Ronald + Jones II + Ronald + Jones II + + hamstring + nfl.p.31008 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/VNxrC5XmOLq19xRtGyHazA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31008.png + small + + https://s.yimg.com/iu/api/res/1.2/VNxrC5XmOLq19xRtGyHazA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31008.png + 0 + O + + RB + + + 92.0 + 9.9 + 4.2 + 0.74 + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 23 + + + 9 + 44 + + + 10 + 1 + + + 11 + 7 + + + 12 + 33 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 2 + + + 81 + 2 + + + + + + 380.p.30209 + 30209 + + Kenny Golladay + Kenny + Golladay + Kenny + Golladay + + Q + Questionable + chest + nfl.p.30209 + nfl.t.8 + Detroit Lions + Det + + 6 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/jhLMUbmqVjiQk9JALAGLHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30209.png + small + + https://s.yimg.com/iu/api/res/1.2/jhLMUbmqVjiQk9JALAGLHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30209.png + 0 + O + + WR + + + 130.7 + 13.8 + 1.4 + 0.28 + + + week + 17 + 92 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 8 + + + 10 + 0 + + + 11 + 70 + + + 12 + 1063 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 0 + + + 78 + 119 + + + 79 + 0 + + + 80 + 56 + + + 81 + 0 + + + + + + 380.p.100007 + 100007 + + Denver + Denver + + Denver + + + nfl.p.100007 + nfl.t.7 + Denver Broncos + Den + + 10 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/den.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/den.gif + 0 + DT + + DEF + + + 94.6 + 10.1 + 1.5 + 1.00 + + + week + 17 + 79 + -1 + + + season + 2018 + + + 0 + 16 + + + 31 + 343 + + + 32 + 44.0 + + + 33 + 17 + + + 34 + 11 + + + 35 + 2 + + + 36 + 0 + + + 37 + 4 + + + 48 + 736 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 2 + + + 53 + 6 + + + 54 + 6 + + + 55 + 2 + + + 56 + 0 + + + 67 + 5 + + + 68 + 70 + + + 69 + 5842 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 4 + + + 74 + 7 + + + 75 + 3 + + + 76 + 2 + + + 77 + 39 + + + 82 + 0 + + + + + + 380.p.26534 + 26534 + + Justin Tucker + Justin + Tucker + Justin + Tucker + + nfl.p.26534 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/0qM4Ifk0f0iFTkfCphKRTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26534.png + small + + https://s.yimg.com/iu/api/res/1.2/0qM4Ifk0f0iFTkfCphKRTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26534.png + 0 + K + + K + + + 87.4 + 9.4 + 2.2 + 1.00 + + + week + 17 + 97 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 12 + + + 21 + 9 + + + 22 + 9 + + + 23 + 5 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 2 + + + 29 + 36 + + + 30 + 1 + + + + + + 380.p.100018 + 100018 + + New Orleans + New Orleans + + New Orleans + + + nfl.p.100018 + nfl.t.18 + New Orleans Saints + NO + + 6 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nor.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nor.gif + 0 + DT + + DEF + + + 120.7 + 12.9 + 1.1 + 0.93 + + + week + 17 + 51 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 347 + + + 32 + 49.0 + + + 33 + 12 + + + 34 + 12 + + + 35 + 1 + + + 36 + 0 + + + 37 + 2 + + + 48 + 717 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 3 + + + 53 + 7 + + + 54 + 1 + + + 55 + 2 + + + 56 + 3 + + + 67 + 15 + + + 68 + 83 + + + 69 + 5585 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 5 + + + 74 + 5 + + + 75 + 4 + + + 76 + 1 + + + 77 + 30 + + + 82 + 0 + + + + + + 380.p.24961 + 24961 + + Charles Clay + Charles + Clay + Charles + Clay + + hamstring + nfl.p.24961 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/Y1g0DSGq_5EWFtXNDCONXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24961.png + small + + https://s.yimg.com/iu/api/res/1.2/Y1g0DSGq_5EWFtXNDCONXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24961.png + 0 + O + + TE + + + 135.6 + 14.4 + 1.0 + 0.35 + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 21 + + + 12 + 184 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 36 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.30115 + 30115 + + Mitchell Trubisky + Mitchell + Trubisky + Mitchell + Trubisky + + right shoulder + nfl.p.30115 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/U6L3PP_USuoJFsCi9THiBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30115.png + small + + https://s.yimg.com/iu/api/res/1.2/U6L3PP_USuoJFsCi9THiBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30115.png + 0 + O + + QB + + + 122.6 + 12.9 + 1.3 + 0.05 + + + week + 17 + 77 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 434 + + + 2 + 289 + + + 3 + 145 + + + 4 + 3223 + + + 5 + 24 + + + 6 + 12 + + + 7 + 24 + + + 8 + 68 + + + 9 + 421 + + + 10 + 3 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 4 + + + 17 + 6 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 10 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 151 + + + 80 + 0 + + + 81 + 29 + + + + + + 380.p.27566 + 27566 + + Austin Seferian-Jenkins + Austin + Seferian-Jenkins + Austin + Seferian-Jenkins + + IR + Injured Reserve + core muscle + nfl.p.27566 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/jL3Pzua38ywIAELlsyEH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27566.png + small + + https://s.yimg.com/iu/api/res/1.2/jL3Pzua38ywIAELlsyEH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27566.png + 0 + O + + TE + + + 133.3 + 14.1 + 1.0 + 0.26 + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 11 + + + 12 + 90 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.30120 + 30120 + + Mike Williams + Mike + Williams + Mike + Williams + + nfl.p.30120 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/VMXJS63UyLPpIBYbGewZfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/30120.png + small + + https://s.yimg.com/iu/api/res/1.2/VMXJS63UyLPpIBYbGewZfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/30120.png + 0 + O + + WR + + 1 + 1547420340 + + 127.8 + 13.6 + 1.4 + 0.39 + + + week + 17 + 65 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 7 + + + 9 + 28 + + + 10 + 1 + + + 11 + 43 + + + 12 + 664 + + + 13 + 10 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 66 + + + 79 + 0 + + + 80 + 36 + + + 81 + 2 + + + + + + 380.p.30396 + 30396 + + Keelan Cole + Keelan + Cole + Keelan + Cole + + nfl.p.30396 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/YFnDQszcrskZUThcqZBfhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30396.png + small + + https://s.yimg.com/iu/api/res/1.2/YFnDQszcrskZUThcqZBfhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30396.png + 0 + O + + WR + + + 127.7 + 13.7 + 1.8 + 0.16 + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 38 + + + 12 + 491 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 70 + + + 79 + 0 + + + 80 + 25 + + + 81 + 0 + + + + + + 380.p.24913 + 24913 + + Bilal Powell + Bilal + Powell + Bilal + Powell + + IR + Injured Reserve + neck + nfl.p.24913 + nfl.t.20 + New York Jets + NYJ + + 11 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/OUdgDLdiF4ziJqxgboj71g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24913.png + small + + https://s.yimg.com/iu/api/res/1.2/OUdgDLdiF4ziJqxgboj71g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24913.png + 0 + O + + RB + + + 124.9 + 13.4 + 1.7 + 0.34 + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 80 + + + 9 + 343 + + + 10 + 0 + + + 11 + 11 + + + 12 + 110 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 18 + + + 79 + 0 + + + 80 + 3 + + + 81 + 16 + + + + + + 380.p.100033 + 100033 + + Baltimore + Baltimore + + Baltimore + + + nfl.p.100033 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/bal_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/bal_2.gif + 0 + DT + + DEF + + + 116.6 + 12.5 + 1.3 + 0.98 + + + week + 17 + 70 + 1 + + + season + 2018 + + + 0 + 16 + + + 31 + 281 + + + 32 + 43.0 + + + 33 + 12 + + + 34 + 5 + + + 35 + 3 + + + 36 + 0 + + + 37 + 0 + + + 48 + 1111 + + + 49 + 1 + + + 50 + 1 + + + 51 + 1 + + + 52 + 4 + + + 53 + 3 + + + 54 + 5 + + + 55 + 1 + + + 56 + 1 + + + 67 + 10 + + + 68 + 86 + + + 69 + 4687 + + + 70 + 0 + + + 71 + 0 + + + 72 + 4 + + + 73 + 5 + + + 74 + 4 + + + 75 + 3 + + + 76 + 0 + + + 77 + 42 + + + 82 + 0 + + + + + + 380.p.27538 + 27538 + + Eric Ebron + Eric + Ebron + Eric + Ebron + + knee, concussion + nfl.p.27538 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/otiMtnja49DNnJdp_SGLuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27538.png + small + + https://s.yimg.com/iu/api/res/1.2/otiMtnja49DNnJdp_SGLuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27538.png + 0 + O + + TE + + 1 + 1547344620 + + 129.3 + 13.7 + 1.1 + 0.27 + + + week + 17 + 96 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + -8 + + + 10 + 1 + + + 11 + 66 + + + 12 + 750 + + + 13 + 13 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 110 + + + 79 + 0 + + + 80 + 39 + + + 81 + 1 + + + + + + 380.p.25937 + 25937 + + Rishard Matthews + Rishard + Matthews + Rishard + Matthews + + IR + Injured Reserve + hamstring + nfl.p.25937 + nfl.t.20 + New York Jets + NYJ + + 11 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/d6EnYIkl2OHiWGvFAu2Qww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25937.png + small + + https://s.yimg.com/iu/api/res/1.2/d6EnYIkl2OHiWGvFAu2Qww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25937.png + 0 + O + + WR + + + 133.4 + 14.0 + 1.2 + 0.11 + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 24 + + + 13 + 0 + + + 14 + 38 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.6791 + 6791 + + Benjamin Watson + Benjamin + Watson + Benjamin + Watson + + O + Out + illness + nfl.p.6791 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/rjlCNl0lO3rxyLpXRnevIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/6791.png + small + + https://s.yimg.com/iu/api/res/1.2/rjlCNl0lO3rxyLpXRnevIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/6791.png + 0 + O + + TE + + 1 + 1 + 1548034500 + + 124.3 + 13.0 + 1.2 + 0.32 + + + week + 17 + 38 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 35 + + + 12 + 400 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 46 + + + 79 + 0 + + + 80 + 21 + + + 81 + 0 + + + + + + 380.p.28457 + 28457 + + Tyler Lockett + Tyler + Lockett + Tyler + Lockett + + nfl.p.28457 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/zSIXGouEisBQ4yLMW4ryoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28457.png + small + + https://s.yimg.com/iu/api/res/1.2/zSIXGouEisBQ4yLMW4ryoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28457.png + 0 + O + + WR + + + 127.4 + 13.5 + 1.4 + 0.13 + + + week + 17 + 92 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 13 + + + 9 + 69 + + + 10 + 0 + + + 11 + 57 + + + 12 + 965 + + + 13 + 10 + + + 14 + 636 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 6 + + + 64 + 3 + + + 78 + 70 + + + 79 + 0 + + + 80 + 37 + + + 81 + 3 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.6243 + 6243 + + Matt Bryant + Matt + Bryant + Matt + Bryant + + back + nfl.p.6243 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/uce9jN3A6Ia0iDKuVQYQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6243.png + small + + https://s.yimg.com/iu/api/res/1.2/uce9jN3A6Ia0iDKuVQYQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6243.png + 0 + K + + K + + + 97.9 + 10.5 + 1.3 + 1.00 + + + week + 17 + 54 + 0 + + + season + 2018 + + + 0 + 13 + + + 19 + 0 + + + 20 + 4 + + + 21 + 5 + + + 22 + 7 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 1 + + + 29 + 33 + + + 30 + 2 + + + + + + 380.p.30552 + 30552 + + Matt Breida + Matt + Breida + Matt + Breida + + IR + Injured Reserve + ankle + nfl.p.30552 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/M7okLbxnAHW3T1tAxwgLRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30552.png + small + + https://s.yimg.com/iu/api/res/1.2/M7okLbxnAHW3T1tAxwgLRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30552.png + 0 + O + + RB + + + 120.1 + 13.0 + 2.7 + 0.12 + + + week + 17 + 82 + -1 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 153 + + + 9 + 814 + + + 10 + 3 + + + 11 + 27 + + + 12 + 261 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 1 + + + 63 + 0 + + + 64 + 0 + + + 78 + 31 + + + 79 + 0 + + + 80 + 12 + + + 81 + 36 + + + + + + 380.p.27556 + 27556 + + Kelvin Benjamin + Kelvin + Benjamin + Kelvin + Benjamin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27556 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/OaHSO4tyII786rIEb5aMzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27556.png + small + + https://s.yimg.com/iu/api/res/1.2/OaHSO4tyII786rIEb5aMzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27556.png + 0 + O + + WR + + + 126.1 + 13.5 + 1.5 + 0.40 + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 25 + + + 12 + 380 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 67 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.29754 + 29754 + + Wil Lutz + Wil + Lutz + Wil + Lutz + + nfl.p.29754 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/swUZv.ipQOoeV9joqxaq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29754.png + small + + https://s.yimg.com/iu/api/res/1.2/swUZv.ipQOoeV9joqxaq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29754.png + 0 + K + + K + + + 107.4 + 11.4 + 1.3 + 0.99 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 1 + + + 20 + 5 + + + 21 + 9 + + + 22 + 11 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 1 + + + 28 + 1 + + + 29 + 52 + + + 30 + 1 + + + + + + 380.p.26804 + 26804 + + Latavius Murray + Latavius + Murray + Latavius + Murray + + nfl.p.26804 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/Gp4J4YaIPHTAl0SrPzlehA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26804.png + small + + https://s.yimg.com/iu/api/res/1.2/Gp4J4YaIPHTAl0SrPzlehA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26804.png + 0 + O + + RB + + + 123.4 + 13.1 + 1.6 + 0.24 + + + week + 17 + 49 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 140 + + + 9 + 578 + + + 10 + 6 + + + 11 + 22 + + + 12 + 141 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 26 + + + 79 + 0 + + + 80 + 7 + + + 81 + 23 + + + + + + 380.p.29315 + 29315 + + Austin Hooper + Austin + Hooper + Austin + Hooper + + nfl.p.29315 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/IEkLdCzgFs1OPM0y4ST9MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29315.png + small + + https://s.yimg.com/iu/api/res/1.2/IEkLdCzgFs1OPM0y4ST9MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29315.png + 0 + O + + TE + + + 128.1 + 13.5 + 1.1 + 0.12 + + + week + 17 + 77 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 71 + + + 12 + 660 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 88 + + + 79 + 0 + + + 80 + 30 + + + 81 + 0 + + + + + + 380.p.28389 + 28389 + + Jameis Winston + Jameis + Winston + Jameis + Winston + + nfl.p.28389 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/jxVCh1i3mXupG39oSFXFXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28389.png + small + + https://s.yimg.com/iu/api/res/1.2/jxVCh1i3mXupG39oSFXFXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28389.png + 0 + O + + QB + + + 128.7 + 13.8 + 2.0 + 0.16 + + + week + 17 + 53 + 1 + + + season + 2018 + + + 0 + 11 + + + 1 + 378 + + + 2 + 244 + + + 3 + 134 + + + 4 + 2992 + + + 5 + 19 + + + 6 + 14 + + + 7 + 27 + + + 8 + 49 + + + 9 + 281 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 7 + + + 18 + 3 + + + 57 + 0 + + + 58 + 1 + + + 59 + 6 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 152 + + + 80 + 0 + + + 81 + 19 + + + + + + 380.p.24967 + 24967 + + Tyrod Taylor + Tyrod + Taylor + Tyrod + Taylor + + concussion, back + nfl.p.24967 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/.JMrm0nvLmgSe8WYdT3CGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/24967.png + small + + https://s.yimg.com/iu/api/res/1.2/.JMrm0nvLmgSe8WYdT3CGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/24967.png + 0 + O + + QB + + 1 + 1547856240 + + 118.5 + 12.6 + 2.0 + 0.04 + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 85 + + + 2 + 42 + + + 3 + 43 + + + 4 + 473 + + + 5 + 2 + + + 6 + 2 + + + 7 + 13 + + + 8 + 16 + + + 9 + 125 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 17 + + + 80 + 0 + + + 81 + 6 + + + + + + 380.p.100023 + 100023 + + Pittsburgh + Pittsburgh + + Pittsburgh + + + nfl.p.100023 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/pit.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/pit.gif + 0 + DT + + DEF + + + 121.9 + 13.0 + 1.2 + 0.95 + + + week + 17 + 57 + 2 + + + season + 2018 + + + 0 + 16 + + + 31 + 354 + + + 32 + 52.0 + + + 33 + 8 + + + 34 + 7 + + + 35 + 3 + + + 36 + 2 + + + 37 + 3 + + + 48 + 871 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 2 + + + 53 + 4 + + + 54 + 7 + + + 55 + 2 + + + 56 + 1 + + + 67 + 6 + + + 68 + 77 + + + 69 + 5235 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 5 + + + 74 + 7 + + + 75 + 3 + + + 76 + 0 + + + 77 + 40 + + + 82 + 0 + + + + + + 380.p.30707 + 30707 + + Corey Clement + Corey + Clement + Corey + Clement + + IR + Injured Reserve + right knee + nfl.p.30707 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/iBWjHdI1KdxwEDDiBqzF8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30707.png + small + + https://s.yimg.com/iu/api/res/1.2/iBWjHdI1KdxwEDDiBqzF8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30707.png + 0 + O + + RB + + + 124.1 + 13.5 + 1.3 + 0.06 + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 68 + + + 9 + 259 + + + 10 + 2 + + + 11 + 22 + + + 12 + 192 + + + 13 + 0 + + + 14 + 350 + + + 15 + 0 + + + 16 + 1 + + + 17 + 2 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 10 + + + 81 + 15 + + + + + + 380.p.100003 + 100003 + + Chicago + Chicago + + Chicago + + + nfl.p.100003 + nfl.t.3 + Chicago Bears + Chi + + 5 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/chi.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/chi.gif + 0 + DT + + DEF + + + 131.4 + 13.9 + 1.2 + 0.61 + + + week + 17 + 98 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 277 + + + 32 + 50.0 + + + 33 + 27 + + + 34 + 9 + + + 35 + 6 + + + 36 + 1 + + + 37 + 0 + + + 48 + 851 + + + 49 + 0 + + + 50 + 0 + + + 51 + 1 + + + 52 + 5 + + + 53 + 5 + + + 54 + 3 + + + 55 + 1 + + + 56 + 1 + + + 67 + 12 + + + 68 + 86 + + + 69 + 4795 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 7 + + + 74 + 7 + + + 75 + 0 + + + 76 + 1 + + + 77 + 49 + + + 82 + 0 + + + + + + 380.p.30256 + 30256 + + Marlon Mack + Marlon + Mack + Marlon + Mack + + Q + Questionable + concussion + nfl.p.30256 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/97UXNpctEzWEBwpaNj78Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30256.png + small + + https://s.yimg.com/iu/api/res/1.2/97UXNpctEzWEBwpaNj78Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30256.png + 0 + O + + RB + + 1 + 1547339880 + + 112.7 + 12.2 + 2.6 + 0.40 + + + week + 17 + 94 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 195 + + + 9 + 908 + + + 10 + 9 + + + 11 + 17 + + + 12 + 103 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 26 + + + 79 + 0 + + + 80 + 3 + + + 81 + 50 + + + + + + 380.p.100017 + 100017 + + New England + New England + + New England + + + nfl.p.100017 + nfl.t.17 + New England Patriots + NE + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nwe.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nwe.gif + 0 + DT + + DEF + + + 130.8 + 13.9 + 1.1 + 0.91 + + + week + 17 + 88 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 325 + + + 32 + 30.0 + + + 33 + 18 + + + 34 + 10 + + + 35 + 3 + + + 36 + 0 + + + 37 + 2 + + + 48 + 954 + + + 49 + 1 + + + 50 + 0 + + + 51 + 2 + + + 52 + 4 + + + 53 + 3 + + + 54 + 2 + + + 55 + 4 + + + 56 + 1 + + + 67 + 10 + + + 68 + 51 + + + 69 + 5746 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 3 + + + 74 + 6 + + + 75 + 6 + + + 76 + 0 + + + 77 + 37 + + + 82 + 0 + + + + + + 380.p.30266 + 30266 + + Jake Elliott + Jake + Elliott + Jake + Elliott + + nfl.p.30266 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/GVxwPPgCYcnCvwNM4_N4Ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30266.png + small + + https://s.yimg.com/iu/api/res/1.2/GVxwPPgCYcnCvwNM4_N4Ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30266.png + 0 + K + + K + + + 110.9 + 11.8 + 1.3 + 0.98 + + + week + 17 + 53 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 7 + + + 21 + 10 + + + 22 + 7 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 1 + + + 28 + 3 + + + 29 + 33 + + + 30 + 2 + + + + + + 380.p.31051 + 31051 + + Michael Gallup + Michael + Gallup + Michael + Gallup + + illness + nfl.p.31051 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/V6ir8x1aj3JfHTndWOGQ0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31051.png + small + + https://s.yimg.com/iu/api/res/1.2/V6ir8x1aj3JfHTndWOGQ0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31051.png + 0 + O + + WR + + 1 + 1547355300 + + 126.3 + 13.6 + 1.6 + 0.09 + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 33 + + + 12 + 507 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 68 + + + 79 + 0 + + + 80 + 21 + + + 81 + 0 + + + + + + 380.p.24851 + 24851 + + Randall Cobb + Randall + Cobb + Randall + Cobb + + concussion + nfl.p.24851 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/ii90s0RqoVHmhYb9vrtMNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24851.png + small + + https://s.yimg.com/iu/api/res/1.2/ii90s0RqoVHmhYb9vrtMNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24851.png + 0 + O + + WR + + + 121.7 + 12.9 + 1.6 + 0.42 + + + week + 17 + 35 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 38 + + + 12 + 383 + + + 13 + 2 + + + 14 + 46 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 61 + + + 79 + 0 + + + 80 + 18 + + + 81 + 0 + + + + + + 380.p.25718 + 25718 + + Ryan Tannehill + Ryan + Tannehill + Ryan + Tannehill + + right shoulder + nfl.p.25718 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/G4Pcea7ZsBlEjQjoukwJhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25718.png + small + + https://s.yimg.com/iu/api/res/1.2/G4Pcea7ZsBlEjQjoukwJhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25718.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 274 + + + 2 + 176 + + + 3 + 98 + + + 4 + 1979 + + + 5 + 17 + + + 6 + 9 + + + 7 + 35 + + + 8 + 32 + + + 9 + 145 + + + 10 + 0 + + + 11 + 1 + + + 12 + 3 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 5 + + + 18 + 4 + + + 57 + 0 + + + 58 + 2 + + + 59 + 5 + + + 60 + 4 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 92 + + + 80 + 1 + + + 81 + 9 + + + + + + 380.p.100001 + 100001 + + Atlanta + Atlanta + + Atlanta + + + nfl.p.100001 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/atl_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/atl_2.gif + 0 + DT + + DEF + + + 142.5 + 15.0 + 1.0 + 0.56 + + + week + 17 + 27 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 405 + + + 32 + 37.0 + + + 33 + 15 + + + 34 + 4 + + + 35 + 2 + + + 36 + 0 + + + 37 + 1 + + + 48 + 836 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 1 + + + 53 + 5 + + + 54 + 2 + + + 55 + 5 + + + 56 + 3 + + + 67 + 3 + + + 68 + 58 + + + 69 + 6152 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 2 + + + 74 + 6 + + + 75 + 6 + + + 76 + 2 + + + 77 + 29 + + + 82 + 0 + + + + + + 380.p.30994 + 30994 + + D.J. Moore + D.J. + Moore + D.J. + Moore + + nfl.p.30994 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/OG__AINCx5x099VgZUezag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30994.png + small + + https://s.yimg.com/iu/api/res/1.2/OG__AINCx5x099VgZUezag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30994.png + 0 + O + + WR + + + 127.8 + 13.6 + 1.4 + 0.20 + + + week + 17 + 76 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 13 + + + 9 + 172 + + + 10 + 0 + + + 11 + 55 + + + 12 + 788 + + + 13 + 2 + + + 14 + 151 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 1 + + + 78 + 82 + + + 79 + 0 + + + 80 + 33 + + + 81 + 6 + + + + + + 380.p.29256 + 29256 + + Josh Doctson + Josh + Doctson + Josh + Doctson + + illness + nfl.p.29256 + nfl.t.28 + Washington Redskins + Was + + 4 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/fTCr6eKBJxR6j9KZWkapuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29256.png + small + + https://s.yimg.com/iu/api/res/1.2/fTCr6eKBJxR6j9KZWkapuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29256.png + 0 + O + + WR + + + 130.9 + 13.8 + 1.2 + 0.15 + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 44 + + + 12 + 532 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 78 + + + 79 + 0 + + + 80 + 31 + + + 81 + 0 + + + + + + 380.p.27619 + 27619 + + John Brown + John + Brown + John + Brown + + hamstring + nfl.p.27619 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/7JM10_42PSbp6nZDGNH4EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27619.png + small + + https://s.yimg.com/iu/api/res/1.2/7JM10_42PSbp6nZDGNH4EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27619.png + 0 + O + + WR + + + 126.5 + 13.8 + 1.3 + 0.03 + + + week + 17 + 49 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 4 + + + 10 + 0 + + + 11 + 42 + + + 12 + 715 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 0 + + + 78 + 97 + + + 79 + 0 + + + 80 + 28 + + + 81 + 0 + + + + + + 380.p.30197 + 30197 + + Chris Godwin + Chris + Godwin + Chris + Godwin + + ankle + nfl.p.30197 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/dbpTx_Vjsm0gfYCKCy3vMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30197.png + small + + https://s.yimg.com/iu/api/res/1.2/dbpTx_Vjsm0gfYCKCy3vMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30197.png + 0 + O + + WR + + + 129.9 + 14.2 + 1.3 + 0.05 + + + week + 17 + 55 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 59 + + + 12 + 842 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 4 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 95 + + + 79 + 0 + + + 80 + 48 + + + 81 + 0 + + + + + + 380.p.26678 + 26678 + + Vance McDonald + Vance + McDonald + Vance + McDonald + + foot + nfl.p.26678 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/MSbkJDHLBlIHAm5G1tE_FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26678.png + small + + https://s.yimg.com/iu/api/res/1.2/MSbkJDHLBlIHAm5G1tE_FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26678.png + 0 + O + + TE + + + 126.7 + 13.2 + 1.1 + 0.11 + + + week + 17 + 71 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 50 + + + 12 + 610 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 72 + + + 79 + 0 + + + 80 + 33 + + + 81 + 0 + + + + + + 380.p.8565 + 8565 + + Matt Prater + Matt + Prater + Matt + Prater + + nfl.p.8565 + nfl.t.8 + Detroit Lions + Det + + 6 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/GFdwIxp81DIP3WadC9PX.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8565.png + small + + https://s.yimg.com/iu/api/res/1.2/GFdwIxp81DIP3WadC9PX.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8565.png + 0 + K + + K + + + 119.3 + 12.6 + 1.1 + 0.91 + + + week + 17 + 55 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 8 + + + 21 + 12 + + + 22 + 5 + + + 23 + 3 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 2 + + + 29 + 30 + + + 30 + 0 + + + + + + 380.p.28691 + 28691 + + Tyrell Williams + Tyrell + Williams + Tyrell + Williams + + quadriceps + nfl.p.28691 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/JMyytcHlsucBnHT.MaOcyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28691.png + small + + https://s.yimg.com/iu/api/res/1.2/JMyytcHlsucBnHT.MaOcyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28691.png + 0 + O + + WR + + 1 + 1547420400 + + - + - + - + - + + + week + 17 + 34 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 15 + + + 10 + 0 + + + 11 + 41 + + + 12 + 653 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 2 + + + 78 + 65 + + + 79 + 0 + + + 80 + 30 + + + 81 + 1 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.100029 + 100029 + + Carolina + Carolina + + Carolina + + + nfl.p.100029 + nfl.t.29 + Carolina Panthers + Car + + 4 + + + DEF + + https://s.yimg.com/cv/ip/ap/default/120210/50x50w_car_1.gif + small + + https://s.yimg.com/cv/ip/ap/default/120210/50x50w_car_1.gif + 0 + DT + + DEF + + + 137.2 + 14.5 + 1.0 + 0.75 + + + week + 17 + 35 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 376 + + + 32 + 35.0 + + + 33 + 13 + + + 34 + 10 + + + 35 + 1 + + + 36 + 0 + + + 37 + 0 + + + 48 + 747 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 2 + + + 53 + 3 + + + 54 + 6 + + + 55 + 4 + + + 56 + 1 + + + 67 + 7 + + + 68 + 82 + + + 69 + 5651 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 3 + + + 74 + 9 + + + 75 + 4 + + + 76 + 0 + + + 77 + 33 + + + 82 + 0 + + + + + + 380.p.31139 + 31139 + + Jordan Wilkins + Jordan + Wilkins + Jordan + Wilkins + + nfl.p.31139 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/CiaVVKNaYfl0JBsHCp0IqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31139.png + small + + https://s.yimg.com/iu/api/res/1.2/CiaVVKNaYfl0JBsHCp0IqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31139.png + 0 + O + + RB + + + 128.6 + 14.4 + 1.4 + 0.05 + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 60 + + + 9 + 336 + + + 10 + 1 + + + 11 + 16 + + + 12 + 85 + + + 13 + 0 + + + 14 + 7 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 17 + + + 79 + 0 + + + 80 + 2 + + + 81 + 15 + + + + + + 380.p.28697 + 28697 + + Cameron Meredith + Cameron + Meredith + Cameron + Meredith + + IR + Injured Reserve + knee + nfl.p.28697 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/wXS4R9z2V6m25Zs47vgJXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/28697.png + small + + https://s.yimg.com/iu/api/res/1.2/wXS4R9z2V6m25Zs47vgJXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/28697.png + 0 + O + + WR + + + 130.3 + 13.8 + 1.3 + 0.08 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 114 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.31012 + 31012 + + Mike Gesicki + Mike + Gesicki + Mike + Gesicki + + shoulder + nfl.p.31012 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/i8eL19BLPzyYPB9n_37SUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31012.png + small + + https://s.yimg.com/iu/api/res/1.2/i8eL19BLPzyYPB9n_37SUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31012.png + 0 + O + + TE + + + 127.1 + 13.4 + 1.2 + 0.04 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 22 + + + 12 + 202 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 32 + + + 79 + 0 + + + 80 + 9 + + + 81 + 0 + + + + + + 380.p.31021 + 31021 + + Anthony Miller + Anthony + Miller + Anthony + Miller + + Q + Questionable + nfl.p.31021 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/p3fSCXpFs2MQdjonoJ1erQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31021.png + small + + https://s.yimg.com/iu/api/res/1.2/p3fSCXpFs2MQdjonoJ1erQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31021.png + 0 + O + + WR + + 1 + 1547492040 + + 127.5 + 13.9 + 1.5 + 0.05 + + + week + 17 + 27 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 8 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 26 + + + 10 + 0 + + + 11 + 33 + + + 12 + 423 + + + 13 + 7 + + + 14 + 139 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 54 + + + 79 + 1 + + + 80 + 19 + + + 81 + 0 + + + + + + 380.p.100009 + 100009 + + Green Bay + Green Bay + + Green Bay + + + nfl.p.100009 + nfl.t.9 + Green Bay Packers + GB + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/gnb.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/gnb.gif + 0 + DT + + DEF + + + 143.0 + 15.0 + 1.0 + 0.43 + + + week + 17 + 39 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 392 + + + 32 + 44.0 + + + 33 + 7 + + + 34 + 8 + + + 35 + 2 + + + 36 + 0 + + + 37 + 1 + + + 48 + 842 + + + 49 + 0 + + + 50 + 1 + + + 51 + 0 + + + 52 + 1 + + + 53 + 3 + + + 54 + 4 + + + 55 + 6 + + + 56 + 1 + + + 67 + 6 + + + 68 + 72 + + + 69 + 5670 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 3 + + + 74 + 6 + + + 75 + 6 + + + 76 + 0 + + + 77 + 40 + + + 82 + 0 + + + + + + 380.p.9348 + 9348 + + Mike Wallace + Mike + Wallace + Mike + Wallace + + Q + Questionable + ankle + nfl.p.9348 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/XXwLi1jMUni2UxqxSvqG_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9348.png + small + + https://s.yimg.com/iu/api/res/1.2/XXwLi1jMUni2UxqxSvqG_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9348.png + 0 + O + + WR + + 1 + 1547427180 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27658 + 27658 + + James White + James + White + James + White + + nfl.p.27658 + nfl.t.17 + New England Patriots + NE + + 11 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/J7opn7TL5WiIcnnbkkX56Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27658.png + small + + https://s.yimg.com/iu/api/res/1.2/J7opn7TL5WiIcnnbkkX56Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27658.png + 0 + O + + RB + + 1 + 1 + 1548044340 + + 120.5 + 13.0 + 1.7 + 0.13 + + + week + 17 + 95 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 94 + + + 9 + 425 + + + 10 + 5 + + + 11 + 87 + + + 12 + 751 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 123 + + + 79 + 0 + + + 80 + 38 + + + 81 + 22 + + + + + + 380.p.30223 + 30223 + + Dede Westbrook + Dede + Westbrook + Dede + Westbrook + + nfl.p.30223 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/iBPDVkDKvqX8VvPTC6r1nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30223.png + small + + https://s.yimg.com/iu/api/res/1.2/iBPDVkDKvqX8VvPTC6r1nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30223.png + 0 + O + + WR + + + 127.7 + 14.2 + 1.3 + 0.03 + + + week + 17 + 41 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 9 + + + 9 + 98 + + + 10 + 0 + + + 11 + 66 + + + 12 + 717 + + + 13 + 5 + + + 14 + 303 + + + 15 + 1 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 101 + + + 79 + 0 + + + 80 + 38 + + + 81 + 5 + + + + + + 380.p.31005 + 31005 + + Nick Chubb + Nick + Chubb + Nick + Chubb + + nfl.p.31005 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/EjRTp3lMK1ZuKhwTqRvUSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31005.png + small + + https://s.yimg.com/iu/api/res/1.2/EjRTp3lMK1ZuKhwTqRvUSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31005.png + 0 + O + + RB + + + 121.5 + 13.0 + 1.9 + 0.33 + + + week + 17 + 97 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 192 + + + 9 + 996 + + + 10 + 8 + + + 11 + 20 + + + 12 + 149 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 4 + + + 62 + 3 + + + 63 + 0 + + + 64 + 0 + + + 78 + 29 + + + 79 + 0 + + + 80 + 5 + + + 81 + 47 + + + + + + 380.p.28188 + 28188 + + Chris Boswell + Chris + Boswell + Chris + Boswell + + IR + Injured Reserve + undisclosed + nfl.p.28188 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/6LIV2GxEAGbcE.yoh2a5og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28188.png + small + + https://s.yimg.com/iu/api/res/1.2/6LIV2GxEAGbcE.yoh2a5og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28188.png + 0 + K + + K + + + 124.5 + 13.1 + 1.1 + 0.78 + + + week + 17 + 54 + -1 + + + season + 2018 + + + 0 + 15 + + + 19 + 0 + + + 20 + 3 + + + 21 + 4 + + + 22 + 5 + + + 23 + 1 + + + 24 + 0 + + + 25 + 0 + + + 26 + 2 + + + 27 + 5 + + + 28 + 0 + + + 29 + 43 + + + 30 + 5 + + + + + + 380.p.26660 + 26660 + + Giovani Bernard + Giovani + Bernard + Giovani + Bernard + + knee + nfl.p.26660 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/iGLxlIewg42mTSyTPlwkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26660.png + small + + https://s.yimg.com/iu/api/res/1.2/iGLxlIewg42mTSyTPlwkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26660.png + 0 + O + + RB + + + 125.9 + 13.7 + 1.3 + 0.05 + + + week + 17 + 21 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 56 + + + 9 + 211 + + + 10 + 3 + + + 11 + 35 + + + 12 + 218 + + + 13 + 0 + + + 14 + 25 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 48 + + + 79 + 0 + + + 80 + 8 + + + 81 + 14 + + + + + + 380.p.30346 + 30346 + + Harrison Butker + Harrison + Butker + Harrison + Butker + + nfl.p.30346 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/Ml5GP2gnCOpcuLkUyWtouA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30346.png + small + + https://s.yimg.com/iu/api/res/1.2/Ml5GP2gnCOpcuLkUyWtouA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30346.png + 0 + K + + K + + + 122.5 + 12.9 + 1.2 + 0.90 + + + week + 17 + 90 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 9 + + + 21 + 7 + + + 22 + 6 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 1 + + + 28 + 2 + + + 29 + 65 + + + 30 + 4 + + + + + + 380.p.27874 + 27874 + + Allen Hurns + Allen + Hurns + Allen + Hurns + + IR + Injured Reserve + left ankle + nfl.p.27874 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/BG5ELQYOETEPHwfRx7XBdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27874.png + small + + https://s.yimg.com/iu/api/res/1.2/BG5ELQYOETEPHwfRx7XBdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27874.png + 0 + O + + WR + + + 126.5 + 13.5 + 1.4 + 0.09 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 20 + + + 12 + 295 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 35 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.30122 + 30122 + + John Ross + John + Ross + John + Ross + + groin + nfl.p.30122 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/rZmWkdjA7slTmWxO3QsBYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30122.png + small + + https://s.yimg.com/iu/api/res/1.2/rZmWkdjA7slTmWxO3QsBYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30122.png + 0 + O + + WR + + + 126.2 + 13.4 + 1.2 + 0.04 + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 9 + + + 10 + 0 + + + 11 + 21 + + + 12 + 210 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 58 + + + 79 + 0 + + + 80 + 13 + + + 81 + 0 + + + + + + 380.p.100022 + 100022 + + Arizona + Arizona + + Arizona + + + nfl.p.100022 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ari_3.jpg + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ari_3.jpg + 0 + DT + + DEF + + + 144.1 + 15.1 + 1.0 + 0.32 + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 399 + + + 32 + 49.0 + + + 33 + 7 + + + 34 + 9 + + + 35 + 3 + + + 36 + 0 + + + 37 + 1 + + + 48 + 831 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 2 + + + 53 + 4 + + + 54 + 5 + + + 55 + 4 + + + 56 + 1 + + + 67 + 5 + + + 68 + 99 + + + 69 + 5741 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 3 + + + 74 + 6 + + + 75 + 7 + + + 76 + 0 + + + 77 + 45 + + + 82 + 0 + + + + + + 380.p.7520 + 7520 + + Robbie Gould + Robbie + Gould + Robbie + Gould + + nfl.p.7520 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/3f9hrkScGHYTNRiyFZYZ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/7520.png + small + + https://s.yimg.com/iu/api/res/1.2/3f9hrkScGHYTNRiyFZYZ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/7520.png + 0 + K + + K + + + 132.8 + 13.9 + 1.2 + 0.50 + + + week + 17 + 32 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 9 + + + 21 + 13 + + + 22 + 9 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 1 + + + 28 + 0 + + + 29 + 27 + + + 30 + 2 + + + + + + 380.p.30258 + 30258 + + Jake Butt + Jake + Butt + Jake + Butt + + IR + Injured Reserve + torn ACL + nfl.p.30258 + nfl.t.7 + Denver Broncos + Den + + 10 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/1pDSMU.QWR_bhbigc3vY6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30258.png + small + + https://s.yimg.com/iu/api/res/1.2/1pDSMU.QWR_bhbigc3vY6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30258.png + 0 + O + + TE + + 1 + 1547483640 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 8 + + + 12 + 85 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 13 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.24318 + 24318 + + LeGarrette Blount + LeGarrette + Blount + LeGarrette + Blount + + knee + nfl.p.24318 + nfl.t.8 + Detroit Lions + Det + + 6 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/XMlqNWHN.AO0hQszQ3ssMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24318.png + small + + https://s.yimg.com/iu/api/res/1.2/XMlqNWHN.AO0hQszQ3ssMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24318.png + 0 + O + + RB + + + 121.4 + 13.0 + 1.7 + 0.18 + + + week + 17 + 35 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 154 + + + 9 + 418 + + + 10 + 5 + + + 11 + 10 + + + 12 + 67 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 15 + + + 79 + 0 + + + 80 + 4 + + + 81 + 25 + + + + + + 380.p.8447 + 8447 + + Mason Crosby + Mason + Crosby + Mason + Crosby + + nfl.p.8447 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/ZU1dFb9kPX660y0CyQBUJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8447.png + small + + https://s.yimg.com/iu/api/res/1.2/ZU1dFb9kPX660y0CyQBUJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8447.png + 0 + K + + K + + + 134.4 + 14.0 + 1.1 + 0.45 + + + week + 17 + 61 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 4 + + + 21 + 10 + + + 22 + 11 + + + 23 + 5 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 4 + + + 28 + 2 + + + 29 + 34 + + + 30 + 2 + + + + + + 380.p.9037 + 9037 + + Danny Amendola + Danny + Amendola + Danny + Amendola + + knee + nfl.p.9037 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/Nv._SMH8_Ip6nr0wPc5ckA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/9037.png + small + + https://s.yimg.com/iu/api/res/1.2/Nv._SMH8_Ip6nr0wPc5ckA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/9037.png + 0 + O + + WR + + + 122.4 + 12.8 + 1.2 + 0.07 + + + week + 17 + 26 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 28 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -2 + + + 10 + 0 + + + 11 + 59 + + + 12 + 575 + + + 13 + 1 + + + 14 + 59 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 79 + + + 79 + 1 + + + 80 + 27 + + + 81 + 0 + + + + + + 380.p.27737 + 27737 + + Quincy Enunwa + Quincy + Enunwa + Quincy + Enunwa + + IR + Injured Reserve + ankle + nfl.p.27737 + nfl.t.20 + New York Jets + NYJ + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/np8EH2VInJGQjF98PImZWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27737.png + small + + https://s.yimg.com/iu/api/res/1.2/np8EH2VInJGQjF98PImZWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27737.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 38 + + + 12 + 449 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 68 + + + 79 + 0 + + + 80 + 22 + + + 81 + 0 + + + + + + 380.p.28482 + 28482 + + Ty Montgomery + Ty + Montgomery + Ty + Montgomery + + nfl.p.28482 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 88 + RB + + https://s.yimg.com/iu/api/res/1.2/NDXFhG1lL6MUtvcjSyjmdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28482.png + small + + https://s.yimg.com/iu/api/res/1.2/NDXFhG1lL6MUtvcjSyjmdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28482.png + 0 + O + + RB + + + 121.8 + 13.1 + 1.4 + 0.09 + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 41 + + + 9 + 188 + + + 10 + 1 + + + 11 + 25 + + + 12 + 235 + + + 13 + 0 + + + 14 + 210 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 40 + + + 79 + 0 + + + 80 + 7 + + + 81 + 10 + + + + + + 380.p.100004 + 100004 + + Cincinnati + Cincinnati + + Cincinnati + + + nfl.p.100004 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cin_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cin_2.gif + 0 + DT + + DEF + + + 145.2 + 15.0 + 1.0 + 0.12 + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 449 + + + 32 + 34.0 + + + 33 + 12 + + + 34 + 6 + + + 35 + 5 + + + 36 + 0 + + + 37 + 1 + + + 48 + 1307 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 0 + + + 53 + 3 + + + 54 + 6 + + + 55 + 3 + + + 56 + 4 + + + 67 + 6 + + + 68 + 63 + + + 69 + 6618 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 3 + + + 74 + 5 + + + 75 + 5 + + + 76 + 3 + + + 77 + 28 + + + 82 + 0 + + + + + + 380.p.9526 + 9526 + + Graham Gano + Graham + Gano + Graham + Gano + + IR + Injured Reserve + left knee + nfl.p.9526 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/MIeKU1N8aj510yrY97xbDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9526.png + small + + https://s.yimg.com/iu/api/res/1.2/MIeKU1N8aj510yrY97xbDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9526.png + 0 + K + + K + + + 138.7 + 14.3 + 1.3 + 0.15 + + + week + 17 + 19 + -1 + + + season + 2018 + + + 0 + 12 + + + 19 + 0 + + + 20 + 3 + + + 21 + 4 + + + 22 + 4 + + + 23 + 3 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 0 + + + 28 + 1 + + + 29 + 30 + + + 30 + 3 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29370 + 29370 + + Devontae Booker + Devontae + Booker + Devontae + Booker + + nfl.p.29370 + nfl.t.7 + Denver Broncos + Den + + 10 + + 23 + RB + + https://s.yimg.com/iu/api/res/1.2/h9_b5U7cbM5omeub2PW_Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/29370.png + small + + https://s.yimg.com/iu/api/res/1.2/h9_b5U7cbM5omeub2PW_Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/29370.png + 0 + O + + RB + + + 126.1 + 13.8 + 1.4 + 0.04 + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 34 + + + 9 + 183 + + + 10 + 1 + + + 11 + 38 + + + 12 + 275 + + + 13 + 0 + + + 14 + 234 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 51 + + + 79 + 0 + + + 80 + 9 + + + 81 + 11 + + + + + + 380.p.25793 + 25793 + + Mohamed Sanu + Mohamed + Sanu + Mohamed + Sanu + + nfl.p.25793 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/OSci6bqT9H94bO2Iim6GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25793.png + small + + https://s.yimg.com/iu/api/res/1.2/OSci6bqT9H94bO2Iim6GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25793.png + 0 + O + + WR + + + 123.7 + 12.9 + 1.3 + 0.07 + + + week + 17 + 43 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 2 + + + 2 + 1 + + + 3 + 1 + + + 4 + 5 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 7 + + + 9 + 44 + + + 10 + 0 + + + 11 + 66 + + + 12 + 838 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 94 + + + 79 + 1 + + + 80 + 41 + + + 81 + 5 + + + + + + 380.p.8826 + 8826 + + DeSean Jackson + DeSean + Jackson + DeSean + Jackson + + Q + Questionable + Achilles + nfl.p.8826 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/E1PiU4ss7oNEOaAK4KIfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8826.png + small + + https://s.yimg.com/iu/api/res/1.2/E1PiU4ss7oNEOaAK4KIfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8826.png + 0 + O + + WR + + 1 + 1547836020 + + 123.4 + 13.2 + 1.6 + 0.09 + + + week + 17 + 55 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 29 + + + 10 + 1 + + + 11 + 41 + + + 12 + 774 + + + 13 + 4 + + + 14 + 24 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 5 + + + 64 + 3 + + + 78 + 74 + + + 79 + 0 + + + 80 + 31 + + + 81 + 2 + + + + + + 380.p.27573 + 27573 + + Paul Richardson Jr. + Paul + Richardson Jr. + Paul + Richardson Jr. + + IR + Injured Reserve + shoulder + nfl.p.27573 + nfl.t.28 + Washington Redskins + Was + + 4 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/Uqj5VGQgQJ2Bq0sq0TpT_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27573.png + small + + https://s.yimg.com/iu/api/res/1.2/Uqj5VGQgQJ2Bq0sq0TpT_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27573.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 9 + + + 10 + 0 + + + 11 + 20 + + + 12 + 262 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 35 + + + 79 + 0 + + + 80 + 12 + + + 81 + 0 + + + + + + 380.p.9520 + 9520 + + Ryan Succop + Ryan + Succop + Ryan + Succop + + nfl.p.9520 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/vlGbjekwfCpr4azMvF1IpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9520.png + small + + https://s.yimg.com/iu/api/res/1.2/vlGbjekwfCpr4azMvF1IpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9520.png + 0 + K + + K + + + 139.6 + 14.4 + 1.0 + 0.10 + + + week + 17 + 22 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 5 + + + 21 + 13 + + + 22 + 5 + + + 23 + 3 + + + 24 + 0 + + + 25 + 1 + + + 26 + 0 + + + 27 + 2 + + + 28 + 1 + + + 29 + 28 + + + 30 + 3 + + + + + + 380.p.28402 + 28402 + + DeVante Parker + DeVante + Parker + DeVante + Parker + + shoulder + nfl.p.28402 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/OYFDAKB.qDXa.1huT8HZYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28402.png + small + + https://s.yimg.com/iu/api/res/1.2/OYFDAKB.qDXa.1huT8HZYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28402.png + 0 + O + + WR + + + 121.5 + 13.0 + 1.5 + 0.35 + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 24 + + + 12 + 309 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 47 + + + 79 + 0 + + + 80 + 14 + + + 81 + 0 + + + + + + 380.p.8795 + 8795 + + Joe Flacco + Joe + Flacco + Joe + Flacco + + right hip + nfl.p.8795 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/Slsolb3BGCCY3l5hQXcHBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8795.png + small + + https://s.yimg.com/iu/api/res/1.2/Slsolb3BGCCY3l5hQXcHBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8795.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 10 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 379 + + + 2 + 232 + + + 3 + 147 + + + 4 + 2465 + + + 5 + 12 + + + 6 + 6 + + + 7 + 16 + + + 8 + 19 + + + 9 + 45 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 4 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 122 + + + 80 + 0 + + + 81 + 10 + + + + + + 380.p.100019 + 100019 + + New York + New York + + New York + + + nfl.p.100019 + nfl.t.19 + New York Giants + NYG + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyg_2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyg_2.gif + 0 + DT + + DEF + + + 131.0 + 13.7 + 1.0 + 0.04 + + + week + 17 + 18 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 400 + + + 32 + 30.0 + + + 33 + 16 + + + 34 + 5 + + + 35 + 3 + + + 36 + 0 + + + 37 + 0 + + + 48 + 1328 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 0 + + + 53 + 5 + + + 54 + 6 + + + 55 + 3 + + + 56 + 2 + + + 67 + 3 + + + 68 + 71 + + + 69 + 5942 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 2 + + + 74 + 9 + + + 75 + 4 + + + 76 + 1 + + + 77 + 33 + + + 82 + 0 + + + + + + 380.p.30996 + 30996 + + Calvin Ridley + Calvin + Ridley + Calvin + Ridley + + nfl.p.30996 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/GNTR5ZhV7XSk5.CCqC293A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30996.png + small + + https://s.yimg.com/iu/api/res/1.2/GNTR5ZhV7XSk5.CCqC293A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30996.png + 0 + O + + WR + + + 122.9 + 13.1 + 1.6 + 0.15 + + + week + 17 + 85 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 27 + + + 10 + 0 + + + 11 + 64 + + + 12 + 821 + + + 13 + 10 + + + 14 + 50 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 3 + + + 78 + 92 + + + 79 + 0 + + + 80 + 39 + + + 81 + 1 + + + + + + 380.p.27120 + 27120 + + Brandon McManus + Brandon + McManus + Brandon + McManus + + nfl.p.27120 + nfl.t.7 + Denver Broncos + Den + + 10 + + 8 + K + + https://s.yimg.com/iu/api/res/1.2/hwqKXjWMUwdQFxgwbTs1Vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27120.png + small + + https://s.yimg.com/iu/api/res/1.2/hwqKXjWMUwdQFxgwbTs1Vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27120.png + 0 + K + + K + + + 131.5 + 13.7 + 1.3 + 0.07 + + + week + 17 + 18 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 5 + + + 21 + 6 + + + 22 + 7 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 5 + + + 29 + 35 + + + 30 + 0 + + + + + + 380.p.30218 + 30218 + + James Conner + James + Conner + James + Conner + + ankle + nfl.p.30218 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/wm5pof1sEIESaW9wa6w8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30218.png + small + + https://s.yimg.com/iu/api/res/1.2/wm5pof1sEIESaW9wa6w8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30218.png + 0 + O + + RB + + + 104.6 + 11.3 + 6.0 + 0.14 + + + week + 17 + 87 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 215 + + + 9 + 973 + + + 10 + 12 + + + 11 + 55 + + + 12 + 497 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 4 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 71 + + + 79 + 0 + + + 80 + 20 + + + 81 + 56 + + + + + + 380.p.6663 + 6663 + + Antonio Gates + Antonio + Gates + Antonio + Gates + + knee + nfl.p.6663 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/d5369QD8XmbBbkY.8DUzmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/6663.png + small + + https://s.yimg.com/iu/api/res/1.2/d5369QD8XmbBbkY.8DUzmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/6663.png + 0 + O + + TE + + 1 + 1547847000 + + 122.1 + 12.8 + 1.2 + 0.03 + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 28 + + + 12 + 333 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 45 + + + 79 + 0 + + + 80 + 19 + + + 81 + 0 + + + + + + 380.p.100026 + 100026 + + Seattle + Seattle + + Seattle + + + nfl.p.100026 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sea.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sea.gif + 0 + DT + + DEF + + + 125.1 + 13.4 + 1.1 + 0.30 + + + week + 17 + 55 + 1 + + + season + 2018 + + + 0 + 16 + + + 31 + 335 + + + 32 + 43.0 + + + 33 + 12 + + + 34 + 14 + + + 35 + 2 + + + 36 + 0 + + + 37 + 1 + + + 48 + 812 + + + 49 + 0 + + + 50 + 0 + + + 51 + 1 + + + 52 + 2 + + + 53 + 5 + + + 54 + 5 + + + 55 + 2 + + + 56 + 1 + + + 67 + 7 + + + 68 + 69 + + + 69 + 5653 + + + 70 + 0 + + + 71 + 0 + + + 72 + 2 + + + 73 + 3 + + + 74 + 5 + + + 75 + 6 + + + 76 + 0 + + + 77 + 27 + + + 82 + 0 + + + + + + 380.p.26822 + 26822 + + Theo Riddick + Theo + Riddick + Theo + Riddick + + Q + Questionable + knee + nfl.p.26822 + nfl.t.8 + Detroit Lions + Det + + 6 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/qiu078pJcfSP8sJeqSYYzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26822.png + small + + https://s.yimg.com/iu/api/res/1.2/qiu078pJcfSP8sJeqSYYzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26822.png + 0 + O + + RB + + + 127.9 + 14.0 + 1.5 + 0.05 + + + week + 17 + 47 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 40 + + + 9 + 171 + + + 10 + 0 + + + 11 + 61 + + + 12 + 384 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 74 + + + 79 + 0 + + + 80 + 16 + + + 81 + 8 + + + + + + 380.p.24400 + 24400 + + Chris Ivory + Chris + Ivory + Chris + Ivory + + shoulder + nfl.p.24400 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/oYXyli3A9cuppQSGsNUggw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24400.png + small + + https://s.yimg.com/iu/api/res/1.2/oYXyli3A9cuppQSGsNUggw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24400.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 115 + + + 9 + 385 + + + 10 + 1 + + + 11 + 13 + + + 12 + 205 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 21 + + + 79 + 0 + + + 80 + 7 + + + 81 + 25 + + + + + + 380.p.30973 + 30973 + + Sam Darnold + Sam + Darnold + Sam + Darnold + + foot + nfl.p.30973 + nfl.t.20 + New York Jets + NYJ + + 11 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/w.oTL.R5bWC5VzHTuyU1YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30973.png + small + + https://s.yimg.com/iu/api/res/1.2/w.oTL.R5bWC5VzHTuyU1YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30973.png + 0 + O + + QB + + + 117.8 + 12.4 + 1.4 + 0.02 + + + week + 17 + 7 + 1 + + + season + 2018 + + + 0 + 13 + + + 1 + 414 + + + 2 + 239 + + + 3 + 175 + + + 4 + 2865 + + + 5 + 17 + + + 6 + 15 + + + 7 + 30 + + + 8 + 44 + + + 9 + 138 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 5 + + + 18 + 2 + + + 57 + 0 + + + 58 + 2 + + + 59 + 4 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 130 + + + 80 + 0 + + + 81 + 16 + + + + + + 380.p.100008 + 100008 + + Detroit + Detroit + + Detroit + + + nfl.p.100008 + nfl.t.8 + Detroit Lions + Det + + 6 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/det2.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/det2.gif + 0 + DT + + DEF + + + 135.8 + 14.5 + 1.2 + 0.07 + + + week + 17 + 18 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 342 + + + 32 + 43.0 + + + 33 + 7 + + + 34 + 7 + + + 35 + 2 + + + 36 + 0 + + + 37 + 0 + + + 48 + 653 + + + 49 + 0 + + + 50 + 1 + + + 51 + 1 + + + 52 + 1 + + + 53 + 4 + + + 54 + 4 + + + 55 + 4 + + + 56 + 1 + + + 67 + 8 + + + 68 + 68 + + + 69 + 5360 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 4 + + + 74 + 7 + + + 75 + 3 + + + 76 + 1 + + + 77 + 33 + + + 82 + 0 + + + + + + 380.p.30213 + 30213 + + Jonnu Smith + Jonnu + Smith + Jonnu + Smith + + IR + Injured Reserve + knee + nfl.p.30213 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/AARgiLCwUr9.gnCnlsMIuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30213.png + small + + https://s.yimg.com/iu/api/res/1.2/AARgiLCwUr9.gnCnlsMIuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30213.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 20 + + + 12 + 258 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 31 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.30995 + 30995 + + Hayden Hurst + Hayden + Hurst + Hayden + Hurst + + back + nfl.p.30995 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/1lrAtNqTZ2Z3FIXh78c4iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30995.png + small + + https://s.yimg.com/iu/api/res/1.2/1lrAtNqTZ2Z3FIXh78c4iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30995.png + 0 + O + + TE + + + 127.8 + 13.5 + 1.3 + 0.02 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 13 + + + 12 + 163 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 23 + + + 79 + 0 + + + 80 + 8 + + + 81 + 0 + + + + + + 380.p.26817 + 26817 + + Spencer Ware + Spencer + Ware + Spencer + Ware + + hamstring + nfl.p.26817 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/2h2uwgux2YUHi5dVzRHxKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26817.png + small + + https://s.yimg.com/iu/api/res/1.2/2h2uwgux2YUHi5dVzRHxKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26817.png + 0 + O + + RB + + 1 + 1 + 1548044940 + + 127.4 + 14.2 + 1.3 + 0.03 + + + week + 17 + 67 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 51 + + + 9 + 246 + + + 10 + 2 + + + 11 + 20 + + + 12 + 224 + + + 13 + 0 + + + 14 + 10 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 23 + + + 79 + 0 + + + 80 + 9 + + + 81 + 14 + + + + + + 380.p.23976 + 23976 + + Sam Bradford + Sam + Bradford + Sam + Bradford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.23976 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/GQwRy7uRZv1tj4RJ5T1loA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/23976.png + small + + https://s.yimg.com/iu/api/res/1.2/GQwRy7uRZv1tj4RJ5T1loA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/23976.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 80 + + + 2 + 50 + + + 3 + 30 + + + 4 + 400 + + + 5 + 2 + + + 6 + 4 + + + 7 + 6 + + + 8 + 2 + + + 9 + 7 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 16 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.31010 + 31010 + + Courtland Sutton + Courtland + Sutton + Courtland + Sutton + + nfl.p.31010 + nfl.t.7 + Denver Broncos + Den + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/_9fpTovrEXhgUF5mEKhd.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31010.png + small + + https://s.yimg.com/iu/api/res/1.2/_9fpTovrEXhgUF5mEKhd.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31010.png + 0 + O + + WR + + + 125.7 + 13.6 + 1.2 + 0.02 + + + week + 17 + 58 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -1 + + + 10 + 0 + + + 11 + 42 + + + 12 + 704 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 0 + + + 78 + 84 + + + 79 + 0 + + + 80 + 30 + + + 81 + 0 + + + + + + 380.p.100012 + 100012 + + Kansas City + Kansas City + + Kansas City + + + nfl.p.100012 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/kan.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/kan.gif + 0 + DT + + DEF + + + 138.2 + 14.7 + 1.0 + 0.37 + + + week + 17 + 41 + 1 + + + season + 2018 + + + 0 + 16 + + + 31 + 407 + + + 32 + 52.0 + + + 33 + 15 + + + 34 + 12 + + + 35 + 4 + + + 36 + 0 + + + 37 + 1 + + + 48 + 1236 + + + 49 + 1 + + + 50 + 0 + + + 51 + 1 + + + 52 + 1 + + + 53 + 2 + + + 54 + 5 + + + 55 + 3 + + + 56 + 4 + + + 67 + 9 + + + 68 + 70 + + + 69 + 6488 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 3 + + + 74 + 3 + + + 75 + 7 + + + 76 + 3 + + + 77 + 23 + + + 82 + 0 + + + + + + 380.p.100025 + 100025 + + San Francisco + San Francisco + + San Francisco + + + nfl.p.100025 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sfo.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sfo.gif + 0 + DT + + DEF + + + 124.5 + 13.0 + 1.1 + 0.02 + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 409 + + + 32 + 37.0 + + + 33 + 2 + + + 34 + 5 + + + 35 + 1 + + + 36 + 1 + + + 37 + 0 + + + 48 + 1124 + + + 49 + 1 + + + 50 + 0 + + + 51 + 1 + + + 52 + 0 + + + 53 + 4 + + + 54 + 5 + + + 55 + 2 + + + 56 + 4 + + + 67 + 7 + + + 68 + 81 + + + 69 + 5546 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 4 + + + 74 + 9 + + + 75 + 2 + + + 76 + 1 + + + 77 + 34 + + + 82 + 0 + + + + + + 380.p.30157 + 30157 + + Gerald Everett + Gerald + Everett + Gerald + Everett + + nfl.p.30157 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/UjSrmPWQiVTMw8MWYZ1JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30157.png + small + + https://s.yimg.com/iu/api/res/1.2/UjSrmPWQiVTMw8MWYZ1JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30157.png + 0 + O + + TE + + 1 + 1 + 1548028620 + + - + - + - + - + + + week + 17 + 19 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 16 + + + 10 + 0 + + + 11 + 33 + + + 12 + 320 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 50 + + + 79 + 0 + + + 80 + 17 + + + 81 + 1 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.100028 + 100028 + + Washington + Washington + + Washington + + + nfl.p.100028 + nfl.t.28 + Washington Redskins + Was + + 4 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/was.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/was.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 17 + 29 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 341 + + + 32 + 46.0 + + + 33 + 15 + + + 34 + 11 + + + 35 + 1 + + + 36 + 0 + + + 37 + 0 + + + 48 + 680 + + + 49 + 0 + + + 50 + 0 + + + 51 + 2 + + + 52 + 2 + + + 53 + 5 + + + 54 + 2 + + + 55 + 3 + + + 56 + 2 + + + 67 + 8 + + + 68 + 67 + + + 69 + 5654 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 3 + + + 74 + 6 + + + 75 + 5 + + + 76 + 1 + + + 77 + 32 + + + 82 + 0 + + + + + + 380.p.29719 + 29719 + + Geronimo Allison + Geronimo + Allison + Geronimo + Allison + + IR + Injured Reserve + groin + nfl.p.29719 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/Cmpu5Zjd3WdaAz8BPrlWlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29719.png + small + + https://s.yimg.com/iu/api/res/1.2/Cmpu5Zjd3WdaAz8BPrlWlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29719.png + 0 + O + + WR + + + 126.0 + 13.8 + 1.4 + 0.02 + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 20 + + + 12 + 303 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 30 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.29789 + 29789 + + Stephen Anderson + Stephen + Anderson + Stephen + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29789 + nfl.t.17 + New England Patriots + NE + + 11 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/L2Txr2Yy5dlPuurEx7OYtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29789.png + small + + https://s.yimg.com/iu/api/res/1.2/L2Txr2Yy5dlPuurEx7OYtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29789.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.7755 + 7755 + + Vernon Davis + Vernon + Davis + Vernon + Davis + + Q + Questionable + concussion + nfl.p.7755 + nfl.t.28 + Washington Redskins + Was + + 4 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/ydq1DcmWR092RTcCKhJIUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/7755.png + small + + https://s.yimg.com/iu/api/res/1.2/ydq1DcmWR092RTcCKhJIUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/7755.png + 0 + O + + TE + + + 122.3 + 12.8 + 1.3 + 0.04 + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 25 + + + 12 + 367 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 36 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.30971 + 30971 + + Baker Mayfield + Baker + Mayfield + Baker + Mayfield + + nfl.p.30971 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/1KHH5mNuHPnZxlTWtJq_QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30971.png + small + + https://s.yimg.com/iu/api/res/1.2/1KHH5mNuHPnZxlTWtJq_QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30971.png + 0 + O + + QB + + + 117.2 + 12.2 + 2.2 + 0.04 + + + week + 17 + 71 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 486 + + + 2 + 310 + + + 3 + 176 + + + 4 + 3725 + + + 5 + 27 + + + 6 + 14 + + + 7 + 25 + + + 8 + 39 + + + 9 + 131 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 7 + + + 18 + 3 + + + 57 + 0 + + + 58 + 2 + + + 59 + 9 + + + 60 + 3 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 171 + + + 80 + 0 + + + 81 + 8 + + + + + + 380.p.30423 + 30423 + + Austin Ekeler + Austin + Ekeler + Austin + Ekeler + + groin + nfl.p.30423 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/MwGqRHLe0hjm8oZtQdQGcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30423.png + small + + https://s.yimg.com/iu/api/res/1.2/MwGqRHLe0hjm8oZtQdQGcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30423.png + 0 + O + + RB + + 1 + 1547420340 + + 126.0 + 14.3 + 1.8 + 0.02 + + + week + 17 + 62 + -1 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 106 + + + 9 + 554 + + + 10 + 3 + + + 11 + 39 + + + 12 + 404 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 53 + + + 79 + 0 + + + 80 + 18 + + + 81 + 25 + + + + + + 380.p.28548 + 28548 + + Jesse James + Jesse + James + Jesse + James + + nfl.p.28548 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/mlI_74b3eM6p0PG6sB95BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28548.png + small + + https://s.yimg.com/iu/api/res/1.2/mlI_74b3eM6p0PG6sB95BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28548.png + 0 + O + + TE + + + 119.7 + 12.6 + 3.3 + 0.03 + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 30 + + + 12 + 423 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 39 + + + 79 + 0 + + + 80 + 17 + + + 81 + 0 + + + + + + 380.p.8263 + 8263 + + Ted Ginn Jr. + Ted + Ginn Jr. + Ted + Ginn Jr. + + knee + nfl.p.8263 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/h4t6EKxGKWrawJy3.r5LTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/8263.png + small + + https://s.yimg.com/iu/api/res/1.2/h4t6EKxGKWrawJy3.r5LTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/8263.png + 0 + O + + WR + + 1 + 1 + 1548030780 + + 123.1 + 12.9 + 1.3 + 0.04 + + + week + 17 + 4 + 1 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 26 + + + 10 + 0 + + + 11 + 17 + + + 12 + 209 + + + 13 + 2 + + + 14 + 1 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 30 + + + 79 + 0 + + + 80 + 10 + + + 81 + 1 + + + + + + 380.p.30185 + 30185 + + Taywan Taylor + Taywan + Taylor + Taywan + Taylor + + foot + nfl.p.30185 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/KEEM9KZTzTwcjhcepRtWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30185.png + small + + https://s.yimg.com/iu/api/res/1.2/KEEM9KZTzTwcjhcepRtWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30185.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 37 + + + 12 + 466 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 56 + + + 79 + 0 + + + 80 + 19 + + + 81 + 0 + + + + + + 380.p.28847 + 28847 + + Corey Grant + Corey + Grant + Corey + Grant + + IR + Injured Reserve + foot + nfl.p.28847 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/93a2uaYO6hZber7afxDZEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28847.png + small + + https://s.yimg.com/iu/api/res/1.2/93a2uaYO6hZber7afxDZEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28847.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 13 + + + 9 + 40 + + + 10 + 0 + + + 11 + 9 + + + 12 + 67 + + + 13 + 0 + + + 14 + 6 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 12 + + + 79 + 0 + + + 80 + 5 + + + 81 + 1 + + + + + + 380.p.31137 + 31137 + + Daniel Carlson + Daniel + Carlson + Daniel + Carlson + + nfl.p.31137 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 8 + K + + https://s.yimg.com/iu/api/res/1.2/68HyMksD6chOhQFUKdWBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31137.png + small + + https://s.yimg.com/iu/api/res/1.2/68HyMksD6chOhQFUKdWBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31137.png + 0 + K + + K + + + 129.8 + 13.6 + 1.5 + 0.23 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 12 + + + 19 + 0 + + + 20 + 2 + + + 21 + 3 + + + 22 + 9 + + + 23 + 3 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 3 + + + 28 + 0 + + + 29 + 24 + + + 30 + 0 + + + + + + 380.p.100005 + 100005 + + Cleveland + Cleveland + + Cleveland + + + nfl.p.100005 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cle.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cle.gif + 0 + DT + + DEF + + + 126.9 + 13.3 + 1.1 + 0.04 + + + week + 17 + 35 + -1 + + + season + 2018 + + + 0 + 16 + + + 31 + 378 + + + 32 + 37.0 + + + 33 + 17 + + + 34 + 14 + + + 35 + 0 + + + 36 + 1 + + + 37 + 2 + + + 48 + 1174 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 1 + + + 53 + 6 + + + 54 + 5 + + + 55 + 1 + + + 56 + 3 + + + 67 + 7 + + + 68 + 78 + + + 69 + 6288 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 4 + + + 74 + 4 + + + 75 + 7 + + + 76 + 1 + + + 77 + 35 + + + 82 + 0 + + + + + + 380.p.29390 + 29390 + + Jonathan Williams + Jonathan + Williams + Jonathan + Williams + + nfl.p.29390 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/ykn3fTWxGNVCVJ5aiTO0xQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29390.png + small + + https://s.yimg.com/iu/api/res/1.2/ykn3fTWxGNVCVJ5aiTO0xQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29390.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 1 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27709 + 27709 + + Alfred Blue + Alfred + Blue + Alfred + Blue + + nfl.p.27709 + nfl.t.34 + Houston Texans + Hou + + 10 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/7AoIXZNB3bDgkJJ.m.x7Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27709.png + small + + https://s.yimg.com/iu/api/res/1.2/7AoIXZNB3bDgkJJ.m.x7Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27709.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 150 + + + 9 + 499 + + + 10 + 2 + + + 11 + 20 + + + 12 + 154 + + + 13 + 0 + + + 14 + 13 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 27 + + + 79 + 0 + + + 80 + 4 + + + 81 + 25 + + + + + + 380.p.3727 + 3727 + + Adam Vinatieri + Adam + Vinatieri + Adam + Vinatieri + + right groin + nfl.p.3727 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/LlabrCmQU.wqG3KhnUOEdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/3727.png + small + + https://s.yimg.com/iu/api/res/1.2/LlabrCmQU.wqG3KhnUOEdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/3727.png + 0 + K + + K + + 1 + 1547580120 + + 125.0 + 13.0 + 1.3 + 0.09 + + + week + 17 + 73 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 8 + + + 21 + 6 + + + 22 + 5 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 1 + + + 28 + 2 + + + 29 + 44 + + + 30 + 3 + + + + + + 380.p.27583 + 27583 + + Jeremy Hill + Jeremy + Hill + Jeremy + Hill + + IR + Injured Reserve + torn right ACL + nfl.p.27583 + nfl.t.17 + New England Patriots + NE + + 11 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/0OKFsxLSSXYdvAY3m5hD9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27583.1.png + small + + https://s.yimg.com/iu/api/res/1.2/0OKFsxLSSXYdvAY3m5hD9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27583.1.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 25 + + + 10 + 0 + + + 11 + 1 + + + 12 + 6 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.29792 + 29792 + + Ka'imi Fairbairn + Ka'imi + Fairbairn + Ka'imi + Fairbairn + + nfl.p.29792 + nfl.t.34 + Houston Texans + Hou + + 10 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/RXZLzByOu5brkOI0rhd3Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29792.png + small + + https://s.yimg.com/iu/api/res/1.2/RXZLzByOu5brkOI0rhd3Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29792.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 80 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 1 + + + 20 + 9 + + + 21 + 11 + + + 22 + 12 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 3 + + + 28 + 2 + + + 29 + 39 + + + 30 + 2 + + + + + + 380.p.28685 + 28685 + + Josh Lambo + Josh + Lambo + Josh + Lambo + + IR + Injured Reserve + right groin + nfl.p.28685 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/SsjPoijMAmqaEnJBa0lP5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28685.png + small + + https://s.yimg.com/iu/api/res/1.2/SsjPoijMAmqaEnJBa0lP5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28685.png + 0 + K + + K + + + 135.9 + 14.1 + 1.2 + 0.08 + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 13 + + + 19 + 0 + + + 20 + 4 + + + 21 + 8 + + + 22 + 3 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 1 + + + 28 + 1 + + + 29 + 19 + + + 30 + 1 + + + + + + 380.p.31145 + 31145 + + John Kelly + John + Kelly + John + Kelly + + nfl.p.31145 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/gHX7OMsEWhG0FVW8xtP1Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31145.png + small + + https://s.yimg.com/iu/api/res/1.2/gHX7OMsEWhG0FVW8xtP1Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31145.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 27 + + + 9 + 74 + + + 10 + 0 + + + 11 + 2 + + + 12 + 27 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 6 + + + + + + 380.p.7426 + 7426 + + Ryan Fitzpatrick + Ryan + Fitzpatrick + Ryan + Fitzpatrick + + nfl.p.7426 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/tJjEp4DTN54elgLxFoDgTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/7426.png + small + + https://s.yimg.com/iu/api/res/1.2/tJjEp4DTN54elgLxFoDgTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/7426.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 10 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 246 + + + 2 + 164 + + + 3 + 82 + + + 4 + 2366 + + + 5 + 17 + + + 6 + 12 + + + 7 + 14 + + + 8 + 36 + + + 9 + 152 + + + 10 + 2 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 4 + + + 18 + 1 + + + 57 + 0 + + + 58 + 2 + + + 59 + 8 + + + 60 + 5 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 113 + + + 80 + 0 + + + 81 + 9 + + + + + + 380.p.31379 + 31379 + + Phillip Lindsay + Phillip + Lindsay + Phillip + Lindsay + + IR + Injured Reserve + wrist + nfl.p.31379 + nfl.t.7 + Denver Broncos + Den + + 10 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/HLAJ0XgfyFypJwv6VtliDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/31379.png + small + + https://s.yimg.com/iu/api/res/1.2/HLAJ0XgfyFypJwv6VtliDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/31379.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 95 + -2 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 192 + + + 9 + 1037 + + + 10 + 9 + + + 11 + 35 + + + 12 + 241 + + + 13 + 1 + + + 14 + 186 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 3 + + + 62 + 2 + + + 63 + 0 + + + 64 + 0 + + + 78 + 47 + + + 79 + 0 + + + 80 + 12 + + + 81 + 50 + + + + + + 380.p.29288 + 29288 + + Tyler Boyd + Tyler + Boyd + Tyler + Boyd + + IR + Injured Reserve + knee + nfl.p.29288 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/3LEta74r713FOMJHEtxpkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29288.png + small + + https://s.yimg.com/iu/api/res/1.2/3LEta74r713FOMJHEtxpkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29288.png + 0 + O + + WR + + 1 + 1547567340 + + - + - + - + - + + + week + 17 + 72 + -2 + + + season + 2018 + + + 0 + 14 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 3 + + + 10 + 0 + + + 11 + 76 + + + 12 + 1028 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 108 + + + 79 + 0 + + + 80 + 54 + + + 81 + 0 + + + + + + 380.p.28046 + 28046 + + Albert Wilson + Albert + Wilson + Albert + Wilson + + IR + Injured Reserve + hip + nfl.p.28046 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/aB_qnGyfpcWiozobcyZJKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28046.png + small + + https://s.yimg.com/iu/api/res/1.2/aB_qnGyfpcWiozobcyZJKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28046.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 52 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 8 + + + 9 + 16 + + + 10 + 0 + + + 11 + 26 + + + 12 + 391 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 3 + + + 78 + 35 + + + 79 + 1 + + + 80 + 11 + + + 81 + 2 + + + + + + 380.p.30977 + 30977 + + Josh Allen + Josh + Allen + Josh + Allen + + right elbow + nfl.p.30977 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/Wstxxgt3AXMTkPHC512ZcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30977.png + small + + https://s.yimg.com/iu/api/res/1.2/Wstxxgt3AXMTkPHC512ZcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30977.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 27 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 320 + + + 2 + 169 + + + 3 + 151 + + + 4 + 2074 + + + 5 + 10 + + + 6 + 12 + + + 7 + 28 + + + 8 + 89 + + + 9 + 631 + + + 10 + 8 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 8 + + + 18 + 2 + + + 57 + 0 + + + 58 + 1 + + + 59 + 5 + + + 60 + 2 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 89 + + + 80 + 0 + + + 81 + 41 + + + + + + 380.p.28424 + 28424 + + T.J. Yeldon + T.J. + Yeldon + T.J. + Yeldon + + ankle + nfl.p.28424 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/kL.zOF1drp4X_f3T3SL29w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28424.png + small + + https://s.yimg.com/iu/api/res/1.2/kL.zOF1drp4X_f3T3SL29w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28424.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 53 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 104 + + + 9 + 414 + + + 10 + 1 + + + 11 + 55 + + + 12 + 487 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 78 + + + 79 + 0 + + + 80 + 20 + + + 81 + 16 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31090 + 31090 + + Will Dissly + Will + Dissly + Will + Dissly + + IR + Injured Reserve + torn patellar tendon + nfl.p.31090 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/6.MXGDTrtm6Sojkj3dE0IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31090.png + small + + https://s.yimg.com/iu/api/res/1.2/6.MXGDTrtm6Sojkj3dE0IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31090.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 8 + + + 12 + 156 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 14 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.29070 + 29070 + + Adam Humphries + Adam + Humphries + Adam + Humphries + + nfl.p.29070 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lfqIaLc4CpArrUWlX52Vvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29070.png + small + + https://s.yimg.com/iu/api/res/1.2/lfqIaLc4CpArrUWlX52Vvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29070.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 67 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 11 + + + 10 + 0 + + + 11 + 76 + + + 12 + 816 + + + 13 + 5 + + + 14 + 156 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 105 + + + 79 + 0 + + + 80 + 48 + + + 81 + 0 + + + + + + 380.p.31135 + 31135 + + Jaylen Samuels + Jaylen + Samuels + Jaylen + Samuels + + nfl.p.31135 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 38 + RB,TE + + https://s.yimg.com/iu/api/res/1.2/WxmmSXAyDEvgLrVBtXW.Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31135.png + small + + https://s.yimg.com/iu/api/res/1.2/WxmmSXAyDEvgLrVBtXW.Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31135.png + 0 + O + + RB + TE + + + - + - + - + - + + + week + 17 + 92 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 56 + + + 9 + 256 + + + 10 + 0 + + + 11 + 26 + + + 12 + 199 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 29 + + + 79 + 0 + + + 80 + 10 + + + 81 + 13 + + + + + + 380.p.30301 + 30301 + + Elijah McGuire + Elijah + McGuire + Elijah + McGuire + + ankle + nfl.p.30301 + nfl.t.20 + New York Jets + NYJ + + 11 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/0Jws7m9RjQLbKwAwZAap1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30301.png + small + + https://s.yimg.com/iu/api/res/1.2/0Jws7m9RjQLbKwAwZAap1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30301.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 61 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 92 + + + 9 + 276 + + + 10 + 3 + + + 11 + 19 + + + 12 + 193 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 31 + + + 79 + 0 + + + 80 + 10 + + + 81 + 15 + + + + + + 380.p.30153 + 30153 + + Curtis Samuel + Curtis + Samuel + Curtis + Samuel + + illness + nfl.p.30153 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/xFyRRdF35.hM.yvSpzxzPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30153.png + small + + https://s.yimg.com/iu/api/res/1.2/xFyRRdF35.hM.yvSpzxzPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30153.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 41 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 8 + + + 9 + 84 + + + 10 + 2 + + + 11 + 39 + + + 12 + 494 + + + 13 + 5 + + + 14 + 209 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 65 + + + 79 + 0 + + + 80 + 24 + + + 81 + 3 + + + + + + 380.p.30563 + 30563 + + Nick Mullens + Nick + Mullens + Nick + Mullens + + nfl.p.30563 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/dK6Tk7c14RC_9Z4nIRsyrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30563.png + small + + https://s.yimg.com/iu/api/res/1.2/dK6Tk7c14RC_9Z4nIRsyrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30563.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 274 + + + 2 + 176 + + + 3 + 98 + + + 4 + 2277 + + + 5 + 13 + + + 6 + 10 + + + 7 + 17 + + + 8 + 18 + + + 9 + -16 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 2 + + + 18 + 0 + + + 57 + 0 + + + 58 + 2 + + + 59 + 7 + + + 60 + 4 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 106 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.31077 + 31077 + + Chris Herndon + Chris + Herndon + Chris + Herndon + + nfl.p.31077 + nfl.t.20 + New York Jets + NYJ + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/EGVFgjyQb15aSl.wdoxljw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31077.png + small + + https://s.yimg.com/iu/api/res/1.2/EGVFgjyQb15aSl.wdoxljw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31077.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 14 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 39 + + + 12 + 502 + + + 13 + 4 + + + 14 + 21 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 56 + + + 79 + 0 + + + 80 + 25 + + + 81 + 0 + + + + + + 380.p.28378 + 28378 + + Jason Myers + Jason + Myers + Jason + Myers + + nfl.p.28378 + nfl.t.20 + New York Jets + NYJ + + 11 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/EZiP5hu7z578kJiM0pUAVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28378.png + small + + https://s.yimg.com/iu/api/res/1.2/EZiP5hu7z578kJiM0pUAVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28378.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 4 + + + 21 + 13 + + + 22 + 10 + + + 23 + 6 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 1 + + + 28 + 1 + + + 29 + 30 + + + 30 + 3 + + + + + + 380.p.30150 + 30150 + + Zay Jones + Zay + Jones + Zay + Jones + + nfl.p.30150 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/yl91Qig7RcMNwjumbxjy9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30150.png + small + + https://s.yimg.com/iu/api/res/1.2/yl91Qig7RcMNwjumbxjy9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30150.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 16 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 56 + + + 12 + 652 + + + 13 + 7 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 102 + + + 79 + 0 + + + 80 + 33 + + + 81 + 0 + + + + + + 380.p.30217 + 30217 + + C.J. Beathard + C.J. + Beathard + C.J. + Beathard + + right wrist + nfl.p.30217 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/TEXtAAOA6U1AmxJEXM6.0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30217.png + small + + https://s.yimg.com/iu/api/res/1.2/TEXtAAOA6U1AmxJEXM6.0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30217.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 169 + + + 2 + 102 + + + 3 + 67 + + + 4 + 1252 + + + 5 + 8 + + + 6 + 7 + + + 7 + 18 + + + 8 + 19 + + + 9 + 69 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 5 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 4 + + + 60 + 3 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 60 + + + 80 + 0 + + + 81 + 6 + + + + + + 380.p.31017 + 31017 + + Christian Kirk + Christian + Kirk + Christian + Kirk + + IR + Injured Reserve + broken foot + nfl.p.31017 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/G78pVsBFUtcKwZMIp_tuQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31017.png + small + + https://s.yimg.com/iu/api/res/1.2/G78pVsBFUtcKwZMIp_tuQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31017.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 35 + + + 10 + 0 + + + 11 + 43 + + + 12 + 590 + + + 13 + 3 + + + 14 + 164 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 68 + + + 79 + 0 + + + 80 + 21 + + + 81 + 2 + + + + + + 380.p.7306 + 7306 + + Darren Sproles + Darren + Sproles + Darren + Sproles + + hamstring + nfl.p.7306 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/85lwt56v7Z3.7eVPfJ3NJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7306.png + small + + https://s.yimg.com/iu/api/res/1.2/85lwt56v7Z3.7eVPfJ3NJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7306.png + 0 + O + + RB + + 1 + 1547429160 + + - + - + - + - + + + week + 17 + 9 + 1 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 29 + + + 9 + 120 + + + 10 + 1 + + + 11 + 15 + + + 12 + 160 + + + 13 + 2 + + + 14 + 85 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 23 + + + 79 + 0 + + + 80 + 6 + + + 81 + 6 + + + + + + 380.p.31071 + 31071 + + Ian Thomas + Ian + Thomas + Ian + Thomas + + nfl.p.31071 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/KdCT_a8WNqyGuu.mA06alg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31071.png + small + + https://s.yimg.com/iu/api/res/1.2/KdCT_a8WNqyGuu.mA06alg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31071.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 30 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 36 + + + 12 + 333 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 49 + + + 79 + 0 + + + 80 + 20 + + + 81 + 0 + + + + + + 380.p.31073 + 31073 + + Keke Coutee + Keke + Coutee + Keke + Coutee + + hamstring + nfl.p.31073 + nfl.t.34 + Houston Texans + Hou + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/VdM4JA.Ml8JS2mI2tfHmbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31073.png + small + + https://s.yimg.com/iu/api/res/1.2/VdM4JA.Ml8JS2mI2tfHmbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31073.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 26 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 0 + + + 10 + 0 + + + 11 + 28 + + + 12 + 287 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 41 + + + 79 + 0 + + + 80 + 13 + + + 81 + 0 + + + + + + 380.p.25798 + 25798 + + Nick Foles + Nick + Foles + Nick + Foles + + nfl.p.25798 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/vWP73Sl4_MnjevDux2Jp8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25798.png + small + + https://s.yimg.com/iu/api/res/1.2/vWP73Sl4_MnjevDux2Jp8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25798.png + 0 + O + + QB + + 1 + 1547667480 + + - + - + - + - + + + week + 17 + 18 + 3 + + + season + 2018 + + + 0 + 5 + + + 1 + 195 + + + 2 + 141 + + + 3 + 54 + + + 4 + 1413 + + + 5 + 7 + + + 6 + 4 + + + 7 + 9 + + + 8 + 9 + + + 9 + 17 + + + 10 + 0 + + + 11 + 1 + + + 12 + 10 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 4 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 4 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 60 + + + 80 + 1 + + + 81 + 6 + + + + + + 380.p.29368 + 29368 + + Kenneth Dixon + Kenneth + Dixon + Kenneth + Dixon + + knee + nfl.p.29368 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/4Lvql5XFrpChsXj7ZWKLYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29368.png + small + + https://s.yimg.com/iu/api/res/1.2/4Lvql5XFrpChsXj7ZWKLYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29368.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 20 + -1 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 60 + + + 9 + 333 + + + 10 + 2 + + + 11 + 6 + + + 12 + 51 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 2 + + + 81 + 20 + + + + + + 380.p.29949 + 29949 + + Aldrick Rosas + Aldrick + Rosas + Aldrick + Rosas + + nfl.p.29949 + nfl.t.19 + New York Giants + NYG + + 9 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/hp1UjXBR.t.NceNBHQBszg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29949.png + small + + https://s.yimg.com/iu/api/res/1.2/hp1UjXBR.t.NceNBHQBszg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29949.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 21 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 9 + + + 21 + 13 + + + 22 + 6 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 1 + + + 29 + 31 + + + 30 + 1 + + + + + + 380.p.24053 + 24053 + + Brandon LaFell + Brandon + LaFell + Brandon + LaFell + + IR + Injured Reserve + torn left Achilles + nfl.p.24053 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/qGOnOaiLeAGtePt.nx7gOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24053.png + small + + https://s.yimg.com/iu/api/res/1.2/qGOnOaiLeAGtePt.nx7gOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24053.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 12 + + + 12 + 135 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 16 + + + 79 + 0 + + + 80 + 9 + + + 81 + 0 + + + + + + 380.p.25120 + 25120 + + Dontrelle Inman + Dontrelle + Inman + Dontrelle + Inman + + shoulder + nfl.p.25120 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/njshG06ZRMWrdcnlnxx1WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25120.png + small + + https://s.yimg.com/iu/api/res/1.2/njshG06ZRMWrdcnlnxx1WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25120.png + 0 + O + + WR + + 1 + 1547344020 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 28 + + + 12 + 304 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 39 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.27369 + 27369 + + Brett Maher + Brett + Maher + Brett + Maher + + nfl.p.27369 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/UxSO1HbuZ3pRbYxJ9TAcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27369.png + small + + https://s.yimg.com/iu/api/res/1.2/UxSO1HbuZ3pRbYxJ9TAcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27369.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 27 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 10 + + + 21 + 6 + + + 22 + 7 + + + 23 + 6 + + + 24 + 0 + + + 25 + 0 + + + 26 + 2 + + + 27 + 4 + + + 28 + 1 + + + 29 + 32 + + + 30 + 1 + + + + + + 380.p.31601 + 31601 + + Robert Foster + Robert + Foster + Robert + Foster + + nfl.p.31601 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 36 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 27 + + + 12 + 541 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 2 + + + 78 + 44 + + + 79 + 0 + + + 80 + 20 + + + 81 + 0 + + + + + + 380.p.30230 + 30230 + + Josh Reynolds + Josh + Reynolds + Josh + Reynolds + + nfl.p.30230 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/nLpddA8xxgbhB8hl4phZ3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30230.png + small + + https://s.yimg.com/iu/api/res/1.2/nLpddA8xxgbhB8hl4phZ3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30230.png + 0 + O + + WR + + 1 + 1 + 1548028620 + + - + - + - + - + + + week + 17 + 51 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 8 + + + 10 + 0 + + + 11 + 29 + + + 12 + 402 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 53 + + + 79 + 0 + + + 80 + 23 + + + 81 + 1 + + + + + + 380.p.31122 + 31122 + + Dane Cruikshank + Dane + Cruikshank + Dane + Cruikshank + + knee + nfl.p.31122 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 29 + DB,S + + https://s.yimg.com/iu/api/res/1.2/KoPcXmnH5fIc9dGLzrBPrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31122.png + small + + https://s.yimg.com/iu/api/res/1.2/KoPcXmnH5fIc9dGLzrBPrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31122.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 10 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29406 + 29406 + + Rashard Higgins + Rashard + Higgins + Rashard + Higgins + + knee + nfl.p.29406 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/FJNFaMPQjtznFQWyuYtf5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29406.png + small + + https://s.yimg.com/iu/api/res/1.2/FJNFaMPQjtznFQWyuYtf5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29406.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 39 + + + 12 + 572 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 53 + + + 79 + 0 + + + 80 + 27 + + + 81 + 0 + + + + + + 380.p.31074 + 31074 + + Nyheim Hines + Nyheim + Hines + Nyheim + Hines + + nfl.p.31074 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/o7lUYc_33tLMcGxptX_.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31074.png + small + + https://s.yimg.com/iu/api/res/1.2/o7lUYc_33tLMcGxptX_.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31074.png + 0 + O + + RB + + 1 + 1547343360 + + - + - + - + - + + + week + 17 + 24 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 85 + + + 9 + 314 + + + 10 + 2 + + + 11 + 63 + + + 12 + 425 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 81 + + + 79 + 0 + + + 80 + 29 + + + 81 + 17 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31056 + 31056 + + Mark Andrews + Mark + Andrews + Mark + Andrews + + nfl.p.31056 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/6G2QgRsLyidsuvxex9B6_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31056.png + small + + https://s.yimg.com/iu/api/res/1.2/6G2QgRsLyidsuvxex9B6_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31056.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 34 + + + 12 + 552 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 50 + + + 79 + 0 + + + 80 + 28 + + + 81 + 0 + + + + + + 380.p.31424 + 31424 + + Gus Edwards + Gus + Edwards + Gus + Edwards + + ankle + nfl.p.31424 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/4GUzuMdZlzTWuJs8rp7C9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/11262018/31424.png + small + + https://s.yimg.com/iu/api/res/1.2/4GUzuMdZlzTWuJs8rp7C9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/11262018/31424.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 73 + 1 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 137 + + + 9 + 718 + + + 10 + 2 + + + 11 + 2 + + + 12 + 20 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 37 + + + + + + 380.p.31014 + 31014 + + Dante Pettis + Dante + Pettis + Dante + Pettis + + IR + Injured Reserve + knee + nfl.p.31014 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/QC5fqGY9bNuZq8wT8h3k_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31014.png + small + + https://s.yimg.com/iu/api/res/1.2/QC5fqGY9bNuZq8wT8h3k_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31014.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 50 + -2 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -2 + + + 10 + 0 + + + 11 + 27 + + + 12 + 467 + + + 13 + 5 + + + 14 + 27 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 45 + + + 79 + 0 + + + 80 + 19 + + + 81 + 0 + + + + + + 380.p.100011 + 100011 + + Indianapolis + Indianapolis + + Indianapolis + + + nfl.p.100011 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ind.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ind.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 17 + 52 + -1 + + + season + 2018 + + + 0 + 16 + + + 31 + 318 + + + 32 + 38.0 + + + 33 + 15 + + + 34 + 11 + + + 35 + 0 + + + 36 + 0 + + + 37 + 2 + + + 48 + 554 + + + 49 + 0 + + + 50 + 1 + + + 51 + 2 + + + 52 + 3 + + + 53 + 1 + + + 54 + 4 + + + 55 + 3 + + + 56 + 2 + + + 67 + 8 + + + 68 + 91 + + + 69 + 5431 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 4 + + + 74 + 9 + + + 75 + 3 + + + 76 + 0 + + + 77 + 34 + + + 82 + 0 + + + + + + 380.p.100015 + 100015 + + Miami + Miami + + Miami + + + nfl.p.100015 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + + DEF + + https://s.yimg.com/xe/ipt/50x50w.5.gif + small + + https://s.yimg.com/xe/ipt/50x50w.5.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 17 + 32 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 415 + + + 32 + 31.0 + + + 33 + 21 + + + 34 + 7 + + + 35 + 3 + + + 36 + 0 + + + 37 + 2 + + + 48 + 1231 + + + 49 + 2 + + + 50 + 0 + + + 51 + 1 + + + 52 + 2 + + + 53 + 4 + + + 54 + 1 + + + 55 + 4 + + + 56 + 4 + + + 67 + 9 + + + 68 + 66 + + + 69 + 6257 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 2 + + + 74 + 5 + + + 75 + 9 + + + 76 + 0 + + + 77 + 33 + + + 82 + 0 + + + + + + 380.p.28480 + 28480 + + Jeff Heuerman + Jeff + Heuerman + Jeff + Heuerman + + IR + Injured Reserve + broken ribs, bruised lung + nfl.p.28480 + nfl.t.7 + Denver Broncos + Den + + 10 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/5AyH7GWTBJ5GHR6fWOXr7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28480.png + small + + https://s.yimg.com/iu/api/res/1.2/5AyH7GWTBJ5GHR6fWOXr7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28480.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 31 + + + 12 + 281 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 48 + + + 79 + 0 + + + 80 + 14 + + + 81 + 0 + + + + + + 380.p.28514 + 28514 + + Mike Davis + Mike + Davis + Mike + Davis + + nfl.p.28514 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/SqIraq3lMzuVKbdK.dnSUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28514.1.png + small + + https://s.yimg.com/iu/api/res/1.2/SqIraq3lMzuVKbdK.dnSUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28514.1.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 23 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 112 + + + 9 + 514 + + + 10 + 4 + + + 11 + 34 + + + 12 + 214 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 42 + + + 79 + 0 + + + 80 + 10 + + + 81 + 25 + + + + + + 380.p.100010 + 100010 + + Tennessee + Tennessee + + Tennessee + + + nfl.p.100010 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ten.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ten.gif + 0 + DT + + DEF + + + 135.1 + 14.0 + 1.1 + 0.09 + + + week + 17 + 73 + -2 + + + season + 2018 + + + 0 + 16 + + + 31 + 295 + + + 32 + 39.0 + + + 33 + 11 + + + 34 + 6 + + + 35 + 2 + + + 36 + 0 + + + 37 + 0 + + + 48 + 974 + + + 49 + 1 + + + 50 + 1 + + + 51 + 1 + + + 52 + 3 + + + 53 + 5 + + + 54 + 3 + + + 55 + 2 + + + 56 + 1 + + + 67 + 9 + + + 68 + 65 + + + 69 + 5334 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 8 + + + 74 + 4 + + + 75 + 4 + + + 76 + 0 + + + 77 + 36 + + + 82 + 0 + + + + + + 380.p.28234 + 28234 + + Taylor Gabriel + Taylor + Gabriel + Taylor + Gabriel + + nfl.p.28234 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/eSSgPPgTWA5VSYovAdlUAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28234.png + small + + https://s.yimg.com/iu/api/res/1.2/eSSgPPgTWA5VSYovAdlUAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28234.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 30 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 9 + + + 9 + 61 + + + 10 + 0 + + + 11 + 67 + + + 12 + 688 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 0 + + + 78 + 93 + + + 79 + 0 + + + 80 + 31 + + + 81 + 3 + + + + + + 380.p.26060 + 26060 + + Cole Beasley + Cole + Beasley + Cole + Beasley + + ankle + nfl.p.26060 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/fj31f7ldSM..dz6V_FiQtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26060.png + small + + https://s.yimg.com/iu/api/res/1.2/fj31f7ldSM..dz6V_FiQtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26060.png + 0 + O + + WR + + 1 + 1547355060 + + 119.2 + 12.5 + 1.2 + 0.03 + + + week + 17 + 21 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 65 + + + 12 + 672 + + + 13 + 3 + + + 14 + 69 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 87 + + + 79 + 0 + + + 80 + 39 + + + 81 + 0 + + + + + + 380.p.28634 + 28634 + + Geoff Swaim + Geoff + Swaim + Geoff + Swaim + + IR + Injured Reserve + wrist + nfl.p.28634 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/rhxeqNPEZW_Ttae4H5mS6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28634.png + small + + https://s.yimg.com/iu/api/res/1.2/rhxeqNPEZW_Ttae4H5mS6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28634.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 26 + + + 12 + 242 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 32 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.5046 + 5046 + + Sebastian Janikowski + Sebastian + Janikowski + Sebastian + Janikowski + + Q + Questionable + nfl.p.5046 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 11 + K + + https://s.yimg.com/iu/api/res/1.2/mhfKWGBUl94sMoTvWV96Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5046.png + small + + https://s.yimg.com/iu/api/res/1.2/mhfKWGBUl94sMoTvWV96Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5046.png + 0 + K + + K + + + 123.5 + 13.0 + 1.2 + 0.04 + + + week + 17 + 29 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 2 + + + 21 + 9 + + + 22 + 8 + + + 23 + 3 + + + 24 + 0 + + + 25 + 0 + + + 26 + 2 + + + 27 + 1 + + + 28 + 2 + + + 29 + 48 + + + 30 + 3 + + + + + + 380.p.30000 + 30000 + + Jalen Richard + Jalen + Richard + Jalen + Richard + + nfl.p.30000 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/3WFCnLbqV6LejhIPFnFnPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30000.png + small + + https://s.yimg.com/iu/api/res/1.2/3WFCnLbqV6LejhIPFnFnPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30000.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 41 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 55 + + + 9 + 259 + + + 10 + 1 + + + 11 + 68 + + + 12 + 607 + + + 13 + 0 + + + 14 + 3 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 81 + + + 79 + 0 + + + 80 + 23 + + + 81 + 11 + + + + + + 380.p.28545 + 28545 + + C.J. Uzomah + C.J. + Uzomah + C.J. + Uzomah + + nfl.p.28545 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/aqeg8udTETnjOz16EK5hnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28545.png + small + + https://s.yimg.com/iu/api/res/1.2/aqeg8udTETnjOz16EK5hnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28545.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 32 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 43 + + + 12 + 439 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 64 + + + 79 + 0 + + + 80 + 21 + + + 81 + 0 + + + + + + 380.p.28887 + 28887 + + Zach Zenner + Zach + Zenner + Zach + Zenner + + undisclosed + nfl.p.28887 + nfl.t.8 + Detroit Lions + Det + + 6 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/4LSaSiUgu7LNnFJo5eqE3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28887.png + small + + https://s.yimg.com/iu/api/res/1.2/4LSaSiUgu7LNnFJo5eqE3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28887.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 6 + 1 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 55 + + + 9 + 265 + + + 10 + 3 + + + 11 + 7 + + + 12 + 56 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 3 + + + 81 + 14 + + + + + + 380.p.31366 + 31366 + + Michael Badgley + Michael + Badgley + Michael + Badgley + + nfl.p.31366 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/jiET0oTBW3fK0ToOHesKLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31366.png + small + + https://s.yimg.com/iu/api/res/1.2/jiET0oTBW3fK0ToOHesKLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31366.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 40 + 0 + + + season + 2018 + + + 0 + 10 + + + 19 + 0 + + + 20 + 4 + + + 21 + 5 + + + 22 + 5 + + + 23 + 1 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 1 + + + 29 + 27 + + + 30 + 1 + + + + + + 380.p.31075 + 31075 + + Antonio Callaway + Antonio + Callaway + Antonio + Callaway + + ankle + nfl.p.31075 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/MNh4dvcQi6LGzrACUZboZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31075.png + small + + https://s.yimg.com/iu/api/res/1.2/MNh4dvcQi6LGzrACUZboZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31075.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 27 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 7 + + + 10 + 0 + + + 11 + 43 + + + 12 + 586 + + + 13 + 5 + + + 14 + 204 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 3 + + + 64 + 1 + + + 78 + 79 + + + 79 + 0 + + + 80 + 27 + + + 81 + 1 + + + + + + 380.p.28026 + 28026 + + Willie Snead IV + Willie + Snead IV + Willie + Snead IV + + nfl.p.28026 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/KY2m08sg_qat3uVrs0ae6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28026.png + small + + https://s.yimg.com/iu/api/res/1.2/KY2m08sg_qat3uVrs0ae6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28026.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 25 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 13 + + + 10 + 0 + + + 11 + 62 + + + 12 + 651 + + + 13 + 1 + + + 14 + 13 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 95 + + + 79 + 0 + + + 80 + 37 + + + 81 + 1 + + + + + + 380.p.31019 + 31019 + + Dallas Goedert + Dallas + Goedert + Dallas + Goedert + + nfl.p.31019 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/MoTjLM8PXdVTsMFdOtoZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31019.png + small + + https://s.yimg.com/iu/api/res/1.2/MoTjLM8PXdVTsMFdOtoZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31019.png + 0 + O + + TE + + 1 + 1547431440 + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 33 + + + 12 + 334 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 44 + + + 79 + 0 + + + 80 + 15 + + + 81 + 0 + + + + + + 380.p.31433 + 31433 + + Raven Greene + Raven + Greene + Raven + Greene + + IR + Injured Reserve + ankle + nfl.p.31433 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 4 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.100020 + 100020 + + New York + New York + + New York + + + nfl.p.100020 + nfl.t.20 + New York Jets + NYJ + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyj.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyj.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 17 + 10 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 421 + + + 32 + 39.0 + + + 33 + 13 + + + 34 + 7 + + + 35 + 3 + + + 36 + 0 + + + 37 + 3 + + + 48 + 1562 + + + 49 + 2 + + + 50 + 0 + + + 51 + 0 + + + 52 + 2 + + + 53 + 2 + + + 54 + 5 + + + 55 + 4 + + + 56 + 3 + + + 67 + 5 + + + 68 + 77 + + + 69 + 6086 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 2 + + + 74 + 6 + + + 75 + 5 + + + 76 + 2 + + + 77 + 41 + + + 82 + 0 + + + + + + 380.p.27911 + 27911 + + Cody Parkey + Cody + Parkey + Cody + Parkey + + nfl.p.27911 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 1 + K + + https://s.yimg.com/iu/api/res/1.2/w8QEKCb0lB89sHsDknNBaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27911.png + small + + https://s.yimg.com/iu/api/res/1.2/w8QEKCb0lB89sHsDknNBaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27911.png + 0 + K + + K + + 1 + 1547491800 + + - + - + - + - + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 6 + + + 21 + 7 + + + 22 + 9 + + + 23 + 1 + + + 24 + 0 + + + 25 + 0 + + + 26 + 3 + + + 27 + 3 + + + 28 + 1 + + + 29 + 42 + + + 30 + 3 + + + + + + 380.p.26800 + 26800 + + Dustin Hopkins + Dustin + Hopkins + Dustin + Hopkins + + right groin + nfl.p.26800 + nfl.t.28 + Washington Redskins + Was + + 4 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/1iVEtq_x0SDAHDYwr9xeKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26800.png + small + + https://s.yimg.com/iu/api/res/1.2/1iVEtq_x0SDAHDYwr9xeKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26800.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 9 + 1 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 5 + + + 21 + 7 + + + 22 + 10 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 1 + + + 29 + 25 + + + 30 + 1 + + + + + + 380.p.30784 + 30784 + + Blake Jarwin + Blake + Jarwin + Blake + Jarwin + + ankle + nfl.p.30784 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/AGC55U8l1ezw7idPujpO9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30784.png + small + + https://s.yimg.com/iu/api/res/1.2/AGC55U8l1ezw7idPujpO9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30784.png + 0 + O + + TE + + 1 + 1547356200 + + - + - + - + - + + + week + 17 + 4 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 27 + + + 12 + 307 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 36 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.100002 + 100002 + + Buffalo + Buffalo + + Buffalo + + + nfl.p.100002 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/buf.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/buf.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 17 + 34 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 344 + + + 32 + 36.0 + + + 33 + 16 + + + 34 + 11 + + + 35 + 0 + + + 36 + 1 + + + 37 + 0 + + + 48 + 1014 + + + 49 + 0 + + + 50 + 0 + + + 51 + 1 + + + 52 + 4 + + + 53 + 2 + + + 54 + 5 + + + 55 + 2 + + + 56 + 2 + + + 67 + 5 + + + 68 + 88 + + + 69 + 4706 + + + 70 + 0 + + + 71 + 0 + + + 72 + 3 + + + 73 + 5 + + + 74 + 7 + + + 75 + 1 + + + 76 + 0 + + + 77 + 45 + + + 82 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27618 + 27618 + + Donte Moncrief + Donte + Moncrief + Donte + Moncrief + + nfl.p.27618 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/I0uXMVfzv3.zjvgSfqPZKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27618.png + small + + https://s.yimg.com/iu/api/res/1.2/I0uXMVfzv3.zjvgSfqPZKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27618.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 48 + + + 12 + 668 + + + 13 + 3 + + + 14 + 7 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 2 + + + 78 + 89 + + + 79 + 0 + + + 80 + 29 + + + 81 + 0 + + + + + + 380.p.31061 + 31061 + + Tre'Quan Smith + Tre'Quan + Smith + Tre'Quan + Smith + + foot + nfl.p.31061 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/82_WsPqJo2NVn1zFBfGHCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31061.png + small + + https://s.yimg.com/iu/api/res/1.2/82_WsPqJo2NVn1zFBfGHCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31061.png + 0 + O + + WR + + 1 + 1 + 1548030780 + + - + - + - + - + + + week + 17 + 31 + -1 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 28 + + + 12 + 427 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 44 + + + 79 + 0 + + + 80 + 23 + + + 81 + 0 + + + + + + 380.p.29298 + 29298 + + Kevin Byard + Kevin + Byard + Kevin + Byard + + nfl.p.29298 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/U.2Iy9y95jUvWIBdYsudCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29298.png + small + + https://s.yimg.com/iu/api/res/1.2/U.2Iy9y95jUvWIBdYsudCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29298.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 24 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 62 + + + 39 + 28 + + + 40 + 2.0 + + + 41 + 4 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 3 + + + 66 + 1 + + + 83 + 0 + + + + + + 380.p.28227 + 28227 + + Cairo Santos + Cairo + Santos + Cairo + Santos + + nfl.p.28227 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/zo6CmcxBlkvVdAoQIPC5sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28227.png + small + + https://s.yimg.com/iu/api/res/1.2/zo6CmcxBlkvVdAoQIPC5sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28227.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 19 + 1 + + + 20 + 4 + + + 21 + 6 + + + 22 + 3 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 3 + + + 28 + 1 + + + 29 + 22 + + + 30 + 1 + + + + + + 380.p.25295 + 25295 + + Nick Bellore + Nick + Bellore + Nick + Bellore + + ankle + nfl.p.25295 + nfl.t.8 + Detroit Lions + Det + + 6 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/WIt9Z0Hjd5rzkcF8Xd55Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/25295.png + small + + https://s.yimg.com/iu/api/res/1.2/WIt9Z0Hjd5rzkcF8Xd55Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/25295.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 7 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25799 + 25799 + + Akiem Hicks + Akiem + Hicks + Akiem + Hicks + + Achilles + nfl.p.25799 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 96 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/W9vBOFk5zlaIczhSR4IcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25799.png + small + + https://s.yimg.com/iu/api/res/1.2/W9vBOFk5zlaIczhSR4IcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25799.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 15 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 41 + + + 39 + 14 + + + 40 + 7.5 + + + 41 + 0 + + + 42 + 3 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 12 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30264 + 30264 + + Desmond King II + Desmond + King II + Desmond + King II + + nfl.p.30264 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/4PY1_OhlUtqFBILoLCl6HA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30264.png + small + + https://s.yimg.com/iu/api/res/1.2/4PY1_OhlUtqFBILoLCl6HA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30264.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 47 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 4 + + + 66 + 75 + + + 83 + 0 + + + + + + 380.p.30240 + 30240 + + Michael Roberts + Michael + Roberts + Michael + Roberts + + IR + Injured Reserve + shoulder + nfl.p.30240 + nfl.t.8 + Detroit Lions + Det + + 6 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/T_u9HRcuDEoZTa1y8Gb0dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30240.png + small + + https://s.yimg.com/iu/api/res/1.2/T_u9HRcuDEoZTa1y8Gb0dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30240.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 100 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 20 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.29294 + 29294 + + Cyrus Jones + Cyrus + Jones + Cyrus + Jones + + nfl.p.29294 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/j.JUYvnBw0ilatx2QUoesQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29294.png + small + + https://s.yimg.com/iu/api/res/1.2/j.JUYvnBw0ilatx2QUoesQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29294.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 5 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30278 + 30278 + + Jamal Agnew + Jamal + Agnew + Jamal + Agnew + + Q + Questionable + knee + nfl.p.30278 + nfl.t.8 + Detroit Lions + Det + + 6 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/nqwHlWlVJdUFyz8MgfjZow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30278.png + small + + https://s.yimg.com/iu/api/res/1.2/nqwHlWlVJdUFyz8MgfjZow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30278.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 12 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 7 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25741 + 25741 + + Doug Martin + Doug + Martin + Doug + Martin + + knee + nfl.p.25741 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/TxPXrE4E49Y1lolLDEBPSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25741.png + small + + https://s.yimg.com/iu/api/res/1.2/TxPXrE4E49Y1lolLDEBPSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25741.png + 0 + O + + RB + + + 126.6 + 14.1 + 1.3 + 0.02 + + + week + 17 + 59 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 172 + + + 9 + 723 + + + 10 + 4 + + + 11 + 18 + + + 12 + 116 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 6 + + + 81 + 37 + + + + + + 380.p.29347 + 29347 + + Nick Kwiatkoski + Nick + Kwiatkoski + Nick + Kwiatkoski + + nfl.p.29347 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/OP0UX72DJ5A7S7wqigqTTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29347.png + small + + https://s.yimg.com/iu/api/res/1.2/OP0UX72DJ5A7S7wqigqTTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29347.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 12 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7241 + 7241 + + Frank Gore + Frank + Gore + Frank + Gore + + IR + Injured Reserve + foot + nfl.p.7241 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/4sclXShgyZcuuMMzzg3ogg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7241.png + small + + https://s.yimg.com/iu/api/res/1.2/4sclXShgyZcuuMMzzg3ogg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7241.png + 0 + O + + RB + + + 120.4 + 12.9 + 1.2 + 0.02 + + + week + 17 + 23 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 156 + + + 9 + 722 + + + 10 + 0 + + + 11 + 12 + + + 12 + 124 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 16 + + + 79 + 0 + + + 80 + 8 + + + 81 + 25 + + + + + + 380.p.24508 + 24508 + + Sam Shields + Sam + Shields + Sam + Shields + + illness + nfl.p.24508 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/mdg0XnJ1CIHWbNJAtGeApw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24508.png + small + + https://s.yimg.com/iu/api/res/1.2/mdg0XnJ1CIHWbNJAtGeApw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24508.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 1 + + + 66 + 22 + + + 83 + 0 + + + + + + 380.p.29387 + 29387 + + Wendell Smallwood + Wendell + Smallwood + Wendell + Smallwood + + nfl.p.29387 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/N4IfdEW0CI44jD9sIRCBRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29387.png + small + + https://s.yimg.com/iu/api/res/1.2/N4IfdEW0CI44jD9sIRCBRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29387.png + 0 + O + + RB + + 1 + 1547428800 + + - + - + - + - + + + week + 17 + 14 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 87 + + + 9 + 364 + + + 10 + 3 + + + 11 + 28 + + + 12 + 230 + + + 13 + 2 + + + 14 + 33 + + + 15 + 0 + + + 16 + 1 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 35 + + + 79 + 0 + + + 80 + 9 + + + 81 + 22 + + + + + + 380.p.31310 + 31310 + + Matt McCrane + Matt + McCrane + Matt + McCrane + + nfl.p.31310 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/WCiF3cgePJkqPXpXpbFmgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31310.png + small + + https://s.yimg.com/iu/api/res/1.2/WCiF3cgePJkqPXpXpbFmgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31310.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 19 + 0 + + + 20 + 3 + + + 21 + 2 + + + 22 + 3 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 2 + + + 29 + 9 + + + 30 + 0 + + + + + + 380.p.30205 + 30205 + + Jourdan Lewis + Jourdan + Lewis + Jourdan + Lewis + + nfl.p.30205 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/roVdsuqcmPNzW58oa3zYrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30205.png + small + + https://s.yimg.com/iu/api/res/1.2/roVdsuqcmPNzW58oa3zYrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30205.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 10 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 21 + + + 83 + 0 + + + + + + 380.p.26612 + 26612 + + Darren Fells + Darren + Fells + Darren + Fells + + nfl.p.26612 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/ktgw5GU7Cy3cqiN1tB9bHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26612.png + small + + https://s.yimg.com/iu/api/res/1.2/ktgw5GU7Cy3cqiN1tB9bHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26612.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 11 + + + 12 + 117 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 12 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.27914 + 27914 + + Erik Swoope + Erik + Swoope + Erik + Swoope + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.27914 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/9gZ4rIycWkMylBChLio70A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27914.png + small + + https://s.yimg.com/iu/api/res/1.2/9gZ4rIycWkMylBChLio70A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27914.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 8 + + + 12 + 87 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.27634 + 27634 + + Bruce Ellington + Bruce + Ellington + Bruce + Ellington + + IR + Injured Reserve + hamstring + nfl.p.27634 + nfl.t.8 + Detroit Lions + Det + + 6 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/B3KAm_SiF3CgVnaiCLRQQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27634.png + small + + https://s.yimg.com/iu/api/res/1.2/B3KAm_SiF3CgVnaiCLRQQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27634.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 2 + + + 10 + 0 + + + 11 + 31 + + + 12 + 224 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 42 + + + 79 + 0 + + + 80 + 14 + + + 81 + 0 + + + + + + 380.p.7883 + 7883 + + Kyle Williams + Kyle + Williams + Kyle + Williams + + nfl.p.7883 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/ke.Qiwpfb_VJEw2mK1p9pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7883.png + small + + https://s.yimg.com/iu/api/res/1.2/ke.Qiwpfb_VJEw2mK1p9pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7883.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 15 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 13 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24045 + 24045 + + Ed Dickson + Ed + Dickson + Ed + Dickson + + nfl.p.24045 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/yG_5FBFZDc7cUjGbkZ6CPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24045.png + small + + https://s.yimg.com/iu/api/res/1.2/yG_5FBFZDc7cUjGbkZ6CPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24045.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 9 + + + 10 + 0 + + + 11 + 12 + + + 12 + 143 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 13 + + + 79 + 0 + + + 80 + 7 + + + 81 + 1 + + + + + + 380.p.30339 + 30339 + + David Moore + David + Moore + David + Moore + + nfl.p.30339 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/frH.BLkTInAkEZId21KWcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30339.png + small + + https://s.yimg.com/iu/api/res/1.2/frH.BLkTInAkEZId21KWcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30339.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 17 + -1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 5 + + + 10 + 0 + + + 11 + 26 + + + 12 + 445 + + + 13 + 5 + + + 14 + 18 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 53 + + + 79 + 0 + + + 80 + 19 + + + 81 + 0 + + + + + + 380.p.26989 + 26989 + + Rontez Miles + Rontez + Miles + Rontez + Miles + + nfl.p.26989 + nfl.t.20 + New York Jets + NYJ + + 11 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/eOiOvBMIULS2f5w9wYqICQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26989.1.png + small + + https://s.yimg.com/iu/api/res/1.2/eOiOvBMIULS2f5w9wYqICQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26989.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 10 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25758 + 25758 + + Tavon Wilson + Tavon + Wilson + Tavon + Wilson + + nfl.p.25758 + nfl.t.8 + Detroit Lions + Det + + 6 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/Lcia5dOEYnQawZjURfhm2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25758.png + small + + https://s.yimg.com/iu/api/res/1.2/Lcia5dOEYnQawZjURfhm2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25758.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 30 + + + 39 + 6 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.24946 + 24946 + + Lee Smith + Lee + Smith + Lee + Smith + + nfl.p.24946 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/WwU54ByJrceP3rJPsSGdSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24946.png + small + + https://s.yimg.com/iu/api/res/1.2/WwU54ByJrceP3rJPsSGdSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24946.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 10 + + + 12 + 73 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.29479 + 29479 + + Clayton Fejedelem + Clayton + Fejedelem + Clayton + Fejedelem + + nfl.p.29479 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/mQwWUHbwzsseQbsUYQY0Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29479.1.png + small + + https://s.yimg.com/iu/api/res/1.2/mQwWUHbwzsseQbsUYQY0Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29479.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 0 + + + 66 + 83 + + + 83 + 0 + + + + + + 380.p.30811 + 30811 + + Justin Hardee + Justin + Hardee + Justin + Hardee + + nfl.p.30811 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 34 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/_ngvXyGoSjQIy7_ZWjtFeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30811.png + small + + https://s.yimg.com/iu/api/res/1.2/_ngvXyGoSjQIy7_ZWjtFeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30811.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 17 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 77 + + + 83 + 0 + + + + + + 380.p.27345 + 27345 + + Jeff Heath + Jeff + Heath + Jeff + Heath + + nfl.p.27345 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/FgLT7OG9kiEoPMKLpisbjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27345.png + small + + https://s.yimg.com/iu/api/res/1.2/FgLT7OG9kiEoPMKLpisbjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27345.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 63 + + + 39 + 22 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 6 + + + 66 + 49 + + + 83 + 0 + + + + + + 380.p.30316 + 30316 + + Derrick Jones + Derrick + Jones + Derrick + Jones + + nfl.p.30316 + nfl.t.20 + New York Jets + NYJ + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/h68.6FRcEkon5cOR6r40Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30316.png + small + + https://s.yimg.com/iu/api/res/1.2/h68.6FRcEkon5cOR6r40Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30316.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 3 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31636 + 31636 + + Chris Jones + Chris + Jones + Chris + Jones + + nfl.p.31636 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30744 + 30744 + + Jeremy Boykins + Jeremy + Boykins + Jeremy + Boykins + + nfl.p.30744 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 1 + CB + + https://s.yimg.com/iu/api/res/1.2/qvnobaY1D_vky27meo1bRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30744.png + small + + https://s.yimg.com/iu/api/res/1.2/qvnobaY1D_vky27meo1bRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30744.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27685 + 27685 + + Shaq Richardson + Shaq + Richardson + Shaq + Richardson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27685 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/7Apwl0nIdq_8so_TbeCLmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27685.png + small + + https://s.yimg.com/iu/api/res/1.2/7Apwl0nIdq_8so_TbeCLmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27685.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29352 + 29352 + + Juston Burris + Juston + Burris + Juston + Burris + + nfl.p.29352 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/o8NX5qQSRYdoK5kXlbtjmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29352.png + small + + https://s.yimg.com/iu/api/res/1.2/o8NX5qQSRYdoK5kXlbtjmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29352.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29729 + 29729 + + Josh Hawkins + Josh + Hawkins + Josh + Hawkins + + nfl.p.29729 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 48 + CB + + https://s.yimg.com/iu/api/res/1.2/nRSjCBWM3Ez.NAkFqcq2ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29729.png + small + + https://s.yimg.com/iu/api/res/1.2/nRSjCBWM3Ez.NAkFqcq2ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29729.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31422 + 31422 + + Darious Williams + Darious + Williams + Darious + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31422 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30479 + 30479 + + Jonathan Moxey + Jonathan + Moxey + Jonathan + Moxey + + nfl.p.30479 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/HMYYLxYZDVL.rlMhms.1Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30479.1.png + small + + https://s.yimg.com/iu/api/res/1.2/HMYYLxYZDVL.rlMhms.1Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30479.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27608 + 27608 + + Dexter McDougle + Dexter + McDougle + Dexter + McDougle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27608 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/DsRC8m3mob3kgBAkIYeVgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27608.png + small + + https://s.yimg.com/iu/api/res/1.2/DsRC8m3mob3kgBAkIYeVgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27608.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29684 + 29684 + + C.J. Smith + C.J. + Smith + C.J. + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29684 + nfl.t.7 + Denver Broncos + Den + + 10 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/.rzzLnuCNr13SvRxlqr9VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29684.png + small + + https://s.yimg.com/iu/api/res/1.2/.rzzLnuCNr13SvRxlqr9VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29684.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28552 + 28552 + + Lorenzo Doss + Lorenzo + Doss + Lorenzo + Doss + + nfl.p.28552 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/JvV03R6Z4_L84gm2queKkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28552.png + small + + https://s.yimg.com/iu/api/res/1.2/JvV03R6Z4_L84gm2queKkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28552.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28204 + 28204 + + Marcus Williams + Marcus + Williams + Marcus + Williams + + hamstring + nfl.p.28204 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/aemgbMUVfbjCwbMTZwasKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28204.1.png + small + + https://s.yimg.com/iu/api/res/1.2/aemgbMUVfbjCwbMTZwasKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28204.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 4 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27725 + 27725 + + Demetri Goodson + Demetri + Goodson + Demetri + Goodson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27725 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/XyX_ZTgWedHgctwS32oPJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/27725.png + small + + https://s.yimg.com/iu/api/res/1.2/XyX_ZTgWedHgctwS32oPJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/27725.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31295 + 31295 + + Donovan Olumba + Donovan + Olumba + Donovan + Olumba + + nfl.p.31295 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/k5Ru3huv_N7dJ2ovjXjHig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31295.png + small + + https://s.yimg.com/iu/api/res/1.2/k5Ru3huv_N7dJ2ovjXjHig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31295.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28444 + 28444 + + Senquez Golson + Senquez + Golson + Senquez + Golson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28444 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/nq0lzCsDHTFxJBmNDJeQ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28444.png + small + + https://s.yimg.com/iu/api/res/1.2/nq0lzCsDHTFxJBmNDJeQ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28444.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31573 + 31573 + + Andre Chachere + Andre + Chachere + Andre + Chachere + + nfl.p.31573 + nfl.t.8 + Detroit Lions + Det + + 6 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8424 + 8424 + + William Gay + William + Gay + William + Gay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8424 + nfl.t.19 + New York Giants + NYG + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/Hw9VMZQ.1StC7YDw9iL6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8424.png + small + + https://s.yimg.com/iu/api/res/1.2/Hw9VMZQ.1StC7YDw9iL6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8424.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30607 + 30607 + + Donatello Brown + Donatello + Brown + Donatello + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30607 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 44 + CB + + https://s.yimg.com/iu/api/res/1.2/f7Qpwd9cN2urNn1z2au.bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30607.png + small + + https://s.yimg.com/iu/api/res/1.2/f7Qpwd9cN2urNn1z2au.bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30607.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26875 + 26875 + + Marcus Cooper Sr. + Marcus + Cooper Sr. + Marcus + Cooper Sr. + + back + nfl.p.26875 + nfl.t.8 + Detroit Lions + Det + + 6 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/SmwOD.CFjeXogtfUY2ZY1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26875.png + small + + https://s.yimg.com/iu/api/res/1.2/SmwOD.CFjeXogtfUY2ZY1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26875.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25879 + 25879 + + Asa Jackson + Asa + Jackson + Asa + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25879 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/kGbUpBmFplj.wv77E8GMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25879.png + small + + https://s.yimg.com/iu/api/res/1.2/kGbUpBmFplj.wv77E8GMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25879.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25833 + 25833 + + Brandon Boykin + Brandon + Boykin + Brandon + Boykin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25833 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/ESTVhhUSsV0UxselOIBreA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/25833.png + small + + https://s.yimg.com/iu/api/res/1.2/ESTVhhUSsV0UxselOIBreA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/25833.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.8268 + 8268 + + Darrelle Revis + Darrelle + Revis + Darrelle + Revis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8268 + nfl.t.20 + New York Jets + NYJ + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/TOUPSX6B1eKaKR79sKRBwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8268.1.png + small + + https://s.yimg.com/iu/api/res/1.2/TOUPSX6B1eKaKR79sKRBwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8268.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31660 + 31660 + + Michael Joseph + Michael + Joseph + Michael + Joseph + + nfl.p.31660 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30415 + 30415 + + Arthur Maulet + Arthur + Maulet + Arthur + Maulet + + NA + Inactive: Coach's Decision or Not on Roster + hip + nfl.p.30415 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/kxi2_AGvmEhFeOyiliWRZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30415.png + small + + https://s.yimg.com/iu/api/res/1.2/kxi2_AGvmEhFeOyiliWRZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30415.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 6 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31550 + 31550 + + Aaron Davis + Aaron + Davis + Aaron + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31550 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30335 + 30335 + + Jalen Myrick + Jalen + Myrick + Jalen + Myrick + + nfl.p.30335 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/1t63vzRbNHR1FvraDp4LCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30335.png + small + + https://s.yimg.com/iu/api/res/1.2/1t63vzRbNHR1FvraDp4LCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30335.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28289 + 28289 + + C.J. Goodwin + C.J. + Goodwin + C.J. + Goodwin + + forearm fracture + nfl.p.28289 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/5OZOppBHhD7B4Aiydy811Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28289.png + small + + https://s.yimg.com/iu/api/res/1.2/5OZOppBHhD7B4Aiydy811Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28289.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30093 + 30093 + + Jeff Richards + Jeff + Richards + Jeff + Richards + + nfl.p.30093 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/Czjy4nfekX611nunsp1VIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30093.png + small + + https://s.yimg.com/iu/api/res/1.2/Czjy4nfekX611nunsp1VIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30093.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31368 + 31368 + + Lashard Durr + Lashard + Durr + Lashard + Durr + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31368 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/InJn.f81H_8qKU9m26uf4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31368.png + small + + https://s.yimg.com/iu/api/res/1.2/InJn.f81H_8qKU9m26uf4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31368.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31607 + 31607 + + Rico Gafford + Rico + Gafford + Rico + Gafford + + nfl.p.31607 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 15 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27833 + 27833 + + Lou Young III + Lou + Young III + Lou + Young III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27833 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/SxThF3RiIwOnpTog6A0iUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27833.1.png + small + + https://s.yimg.com/iu/api/res/1.2/SxThF3RiIwOnpTog6A0iUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27833.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30619 + 30619 + + Lenzy Pipkins + Lenzy + Pipkins + Lenzy + Pipkins + + nfl.p.30619 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/p_BEFmwddk7_rdJXOmIisw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30619.png + small + + https://s.yimg.com/iu/api/res/1.2/p_BEFmwddk7_rdJXOmIisw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30619.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 6 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29896 + 29896 + + Jeremiah McKinnon + Jeremiah + McKinnon + Jeremiah + McKinnon + + nfl.p.29896 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/TWhDz5OkniExcmiqrvdwTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29896.png + small + + https://s.yimg.com/iu/api/res/1.2/TWhDz5OkniExcmiqrvdwTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29896.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28558 + 28558 + + Tye Smith + Tye + Smith + Tye + Smith + + IR + Injured Reserve + undisclosed + nfl.p.28558 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/hCr3GZN282xy3JCSK9fjWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28558.png + small + + https://s.yimg.com/iu/api/res/1.2/hCr3GZN282xy3JCSK9fjWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28558.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26571 + 26571 + + Chris Lewis-Harris + Chris + Lewis-Harris + Chris + Lewis-Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26571 + nfl.t.19 + New York Giants + NYG + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/g2lFYJ2NkwLeU9wUihdpeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26571.png + small + + https://s.yimg.com/iu/api/res/1.2/g2lFYJ2NkwLeU9wUihdpeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26571.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29564 + 29564 + + Elie Bouka + Elie + Bouka + Elie + Bouka + + IR + Injured Reserve + undisclosed + nfl.p.29564 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/zvCD0Iy9jDirrAR_74EptA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29564.png + small + + https://s.yimg.com/iu/api/res/1.2/zvCD0Iy9jDirrAR_74EptA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29564.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29027 + 29027 + + Jonathon Mincy + Jonathon + Mincy + Jonathon + Mincy + + nfl.p.29027 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/89EQedcaXxCksMB3t1ajVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29027.png + small + + https://s.yimg.com/iu/api/res/1.2/89EQedcaXxCksMB3t1ajVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29027.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31445 + 31445 + + Reggie Hall + Reggie + Hall + Reggie + Hall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31445 + nfl.t.20 + New York Jets + NYJ + + 11 + + + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31459 + 31459 + + Montrel Meander + Montrel + Meander + Montrel + Meander + + Q + Questionable + quadriceps + nfl.p.31459 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31706 + 31706 + + Josh Okonye + Josh + Okonye + Josh + Okonye + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31706 + nfl.t.8 + Detroit Lions + Det + + 6 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29589 + 29589 + + Ronald Zamort + Ronald + Zamort + Ronald + Zamort + + nfl.p.29589 + nfl.t.19 + New York Giants + NYG + + 9 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/tflBXnP1yy_q2_q.JymfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29589.png + small + + https://s.yimg.com/iu/api/res/1.2/tflBXnP1yy_q2_q.JymfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29589.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24079 + 24079 + + Alterraun Verner + Alterraun + Verner + Alterraun + Verner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24079 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 42 + CB + + https://s.yimg.com/iu/api/res/1.2/48zbSr6b2OyXtrletqbXlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24079.png + small + + https://s.yimg.com/iu/api/res/1.2/48zbSr6b2OyXtrletqbXlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24079.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27708 + 27708 + + Kenneth Acker + Kenneth + Acker + Kenneth + Acker + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27708 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/RCReEGoXQo_TZEtgJdRTiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27708.png + small + + https://s.yimg.com/iu/api/res/1.2/RCReEGoXQo_TZEtgJdRTiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27708.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30265 + 30265 + + Corn Elder + Corn + Elder + Corn + Elder + + nfl.p.30265 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/qNBStiTEfqmmab3MkSqOIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30265.png + small + + https://s.yimg.com/iu/api/res/1.2/qNBStiTEfqmmab3MkSqOIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30265.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 3 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31756 + 31756 + + Juante Baldwin + Juante + Baldwin + Juante + Baldwin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31756 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24746 + 24746 + + Teddy Williams + Teddy + Williams + Teddy + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24746 + nfl.t.19 + New York Giants + NYG + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/boMUbOfDSmXSknhyjmjCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24746.png + small + + https://s.yimg.com/iu/api/res/1.2/boMUbOfDSmXSknhyjmjCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24746.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31630 + 31630 + + Amari Coleman + Amari + Coleman + Amari + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31630 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 44 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24007 + 24007 + + Patrick Robinson + Patrick + Robinson + Patrick + Robinson + + IR + Injured Reserve + broken ankle + nfl.p.24007 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/tyUcFvvOlCb1.IuaPcR8uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24007.png + small + + https://s.yimg.com/iu/api/res/1.2/tyUcFvvOlCb1.IuaPcR8uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24007.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 5 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27254 + 27254 + + Terrell Sinkfield Jr. + Terrell + Sinkfield Jr. + Terrell + Sinkfield Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27254 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/OouSxqkI2QFvF.AjDtoozw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27254.png + small + + https://s.yimg.com/iu/api/res/1.2/OouSxqkI2QFvF.AjDtoozw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27254.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27698 + 27698 + + Keith Reaser + Keith + Reaser + Keith + Reaser + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27698 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/tpq07aPQCdj6naiybRhpUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27698.png + small + + https://s.yimg.com/iu/api/res/1.2/tpq07aPQCdj6naiybRhpUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27698.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31764 + 31764 + + Sam Beal + Sam + Beal + Sam + Beal + + IR + Injured Reserve + shoulder + nfl.p.31764 + nfl.t.19 + New York Giants + NYG + + 9 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31703 + 31703 + + Mike Jones + Mike + Jones + Mike + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31703 + nfl.t.19 + New York Giants + NYG + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29771 + 29771 + + Adairius Barnes + Adairius + Barnes + Adairius + Barnes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29771 + nfl.t.8 + Detroit Lions + Det + + 6 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/3t.TXJfXu_VdEvR2UHiBeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29771.png + small + + https://s.yimg.com/iu/api/res/1.2/3t.TXJfXu_VdEvR2UHiBeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29771.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29302 + 29302 + + Will Redmond + Will + Redmond + Will + Redmond + + IR + Injured Reserve + shoulder + nfl.p.29302 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/CHQjarbbyhnWZ8JPKHzp7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29302.png + small + + https://s.yimg.com/iu/api/res/1.2/CHQjarbbyhnWZ8JPKHzp7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29302.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27553 + 27553 + + Jason Verrett + Jason + Verrett + Jason + Verrett + + IR + Injured Reserve + torn Achilles tendon + nfl.p.27553 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/XBjZTIKBEJ9tgsY43f7rww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/27553.png + small + + https://s.yimg.com/iu/api/res/1.2/XBjZTIKBEJ9tgsY43f7rww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/27553.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30913 + 30913 + + Jarell Carter + Jarell + Carter + Jarell + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30913 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/YN1FSM2EdU4xNrmyq7ew3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30913.png + small + + https://s.yimg.com/iu/api/res/1.2/YN1FSM2EdU4xNrmyq7ew3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30913.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31712 + 31712 + + John Franklin III + John + Franklin III + John + Franklin III + + nfl.p.31712 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9289 + 9289 + + Vontae Davis + Vontae + Davis + Vontae + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9289 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/JRFdgUe8gL04PRyxzBf1bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9289.png + small + + https://s.yimg.com/iu/api/res/1.2/JRFdgUe8gL04PRyxzBf1bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9289.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24225 + 24225 + + Robert McClain + Robert + McClain + Robert + McClain + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24225 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/tS2MZ7kiwTdHeYpS5U7fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24225.png + small + + https://s.yimg.com/iu/api/res/1.2/tS2MZ7kiwTdHeYpS5U7fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24225.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30286 + 30286 + + Brian Allen + Brian + Allen + Brian + Allen + + nfl.p.30286 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/LQlcCRQCco8tYCDv0nWryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30286.png + small + + https://s.yimg.com/iu/api/res/1.2/LQlcCRQCco8tYCDv0nWryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30286.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29749 + 29749 + + Herb Waters + Herb + Waters + Herb + Waters + + nfl.p.29749 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/oK2KA2Kj.zlUZIY_EjsDsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29749.png + small + + https://s.yimg.com/iu/api/res/1.2/oK2KA2Kj.zlUZIY_EjsDsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29749.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31690 + 31690 + + Marko Myers + Marko + Myers + Marko + Myers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31690 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29846 + 29846 + + Donte Deayon + Donte + Deayon + Donte + Deayon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29846 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/_UPBPlIs_q1III572vyu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29846.png + small + + https://s.yimg.com/iu/api/res/1.2/_UPBPlIs_q1III572vyu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29846.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 4 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.6341 + 6341 + + Terence Newman + Terence + Newman + Terence + Newman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6341 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/nRXtKCsP6OrhzPstn4alKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6341.png + small + + https://s.yimg.com/iu/api/res/1.2/nRXtKCsP6OrhzPstn4alKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6341.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30549 + 30549 + + Channing Stribling + Channing + Stribling + Channing + Stribling + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30549 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31121 + 31121 + + Davontae Harris + Davontae + Harris + Davontae + Harris + + knee + nfl.p.31121 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/fgGW..K9liUAFwVDo7N4IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31121.png + small + + https://s.yimg.com/iu/api/res/1.2/fgGW..K9liUAFwVDo7N4IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31121.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26691 + 26691 + + Leon McFadden + Leon + McFadden + Leon + McFadden + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26691 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/xI2Sl2weTcia89jd5tvnYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26691.png + small + + https://s.yimg.com/iu/api/res/1.2/xI2Sl2weTcia89jd5tvnYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26691.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31375 + 31375 + + Henre' Toliver + Henre' + Toliver + Henre' + Toliver + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31375 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 42 + CB + + https://s.yimg.com/iu/api/res/1.2/H_igqVieKf60vW5O8x82OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31375.png + small + + https://s.yimg.com/iu/api/res/1.2/H_igqVieKf60vW5O8x82OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31375.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29407 + 29407 + + Trey Caldwell + Trey + Caldwell + Trey + Caldwell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29407 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/CmljHXnkXQkUFfb0FqfhEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29407.1.png + small + + https://s.yimg.com/iu/api/res/1.2/CmljHXnkXQkUFfb0FqfhEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29407.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29483 + 29483 + + Prince Charles Iworah + Prince Charles + Iworah + Prince Charles + Iworah + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29483 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/5FsQWAqdpg3qvYJB8hzsUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29483.png + small + + https://s.yimg.com/iu/api/res/1.2/5FsQWAqdpg3qvYJB8hzsUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29483.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28959 + 28959 + + Robertson Daniel + Robertson + Daniel + Robertson + Daniel + + nfl.p.28959 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/Tqd1uQnJFfCm3iI.bMiRYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28959.png + small + + https://s.yimg.com/iu/api/res/1.2/Tqd1uQnJFfCm3iI.bMiRYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28959.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29452 + 29452 + + Kevon Seymour + Kevon + Seymour + Kevon + Seymour + + IR + Injured Reserve + nfl.p.29452 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/KyZK6rYbUbAtHYU82qK9Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29452.png + small + + https://s.yimg.com/iu/api/res/1.2/KyZK6rYbUbAtHYU82qK9Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29452.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28450 + 28450 + + Quinten Rollins + Quinten + Rollins + Quinten + Rollins + + NA + Inactive: Coach's Decision or Not on Roster + hamstring + nfl.p.28450 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/Gj8RWYnB4Zvh4.IUyjZnEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28450.png + small + + https://s.yimg.com/iu/api/res/1.2/Gj8RWYnB4Zvh4.IUyjZnEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28450.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31386 + 31386 + + Emmanuel Moseley + Emmanuel + Moseley + Emmanuel + Moseley + + IR + Injured Reserve + dislocated shoulder + nfl.p.31386 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/ClhfLXRqxIEnXyhJNtWKUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31386.png + small + + https://s.yimg.com/iu/api/res/1.2/ClhfLXRqxIEnXyhJNtWKUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31386.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30311 + 30311 + + Jeremy Clark + Jeremy + Clark + Jeremy + Clark + + nfl.p.30311 + nfl.t.20 + New York Jets + NYJ + + 11 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/.DNg6WT3RlxffLMXfyGFOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30311.png + small + + https://s.yimg.com/iu/api/res/1.2/.DNg6WT3RlxffLMXfyGFOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30311.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31261 + 31261 + + Dee Delaney + Dee + Delaney + Dee + Delaney + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31261 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/yMWS19pyrfZ8H0XiPsGcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31261.png + small + + https://s.yimg.com/iu/api/res/1.2/yMWS19pyrfZ8H0XiPsGcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31261.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31786 + 31786 + + Mike Basile + Mike + Basile + Mike + Basile + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31786 + nfl.t.19 + New York Giants + NYG + + 9 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30664 + 30664 + + D.J. Killings + D.J. + Killings + D.J. + Killings + + Q + Questionable + ankle + nfl.p.30664 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/yeVutnPaHiDIKv.aghtGYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30664.png + small + + https://s.yimg.com/iu/api/res/1.2/yeVutnPaHiDIKv.aghtGYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30664.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29245 + 29245 + + Vernon Hargreaves III + Vernon + Hargreaves III + Vernon + Hargreaves III + + IR + Injured Reserve + shoulder + nfl.p.29245 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/mWXMJj.vs4n5b3x_s6LCjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29245.png + small + + https://s.yimg.com/iu/api/res/1.2/mWXMJj.vs4n5b3x_s6LCjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29245.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 6 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28371 + 28371 + + Delvin Breaux Sr. + Delvin + Breaux Sr. + Delvin + Breaux Sr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28371 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/WhNNDUXlmXZbNpEAnb4ijg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28371.png + small + + https://s.yimg.com/iu/api/res/1.2/WhNNDUXlmXZbNpEAnb4ijg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28371.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29724 + 29724 + + Mike Jordan + Mike + Jordan + Mike + Jordan + + nfl.p.29724 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/t.czjv1juX16CcSABPk08w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29724.png + small + + https://s.yimg.com/iu/api/res/1.2/t.czjv1juX16CcSABPk08w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29724.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29308 + 29308 + + KeiVarae Russell + KeiVarae + Russell + KeiVarae + Russell + + finger + nfl.p.29308 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/RZw0MAK9LCdWlLPBCzf3zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29308.png + small + + https://s.yimg.com/iu/api/res/1.2/RZw0MAK9LCdWlLPBCzf3zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29308.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 9 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29808 + 29808 + + Duke Thomas + Duke + Thomas + Duke + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29808 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/yv7.dRdTs9MsssOBFkKj8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29808.png + small + + https://s.yimg.com/iu/api/res/1.2/yv7.dRdTs9MsssOBFkKj8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29808.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31358 + 31358 + + Joseph Putu + Joseph + Putu + Joseph + Putu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31358 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27723 + 27723 + + Brandon Dixon + Brandon + Dixon + Brandon + Dixon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27723 + nfl.t.19 + New York Giants + NYG + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/Ajxm2Ymcp8H.1GOXQK98Bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27723.png + small + + https://s.yimg.com/iu/api/res/1.2/Ajxm2Ymcp8H.1GOXQK98Bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27723.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31755 + 31755 + + Jackson Porter + Jackson + Porter + Jackson + Porter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31755 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28544 + 28544 + + Tony Lippett + Tony + Lippett + Tony + Lippett + + nfl.p.28544 + nfl.t.19 + New York Giants + NYG + + 9 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/b5S7EMZMkye_WQnl5yjRtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28544.png + small + + https://s.yimg.com/iu/api/res/1.2/b5S7EMZMkye_WQnl5yjRtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28544.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30865 + 30865 + + Dominique Hatfield + Dominique + Hatfield + Dominique + Hatfield + + IR + Injured Reserve + ankle + nfl.p.30865 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/Nh4H4pd50s8CKzouDre4fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30865.png + small + + https://s.yimg.com/iu/api/res/1.2/Nh4H4pd50s8CKzouDre4fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30865.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30716 + 30716 + + Jomal Wiltz + Jomal + Wiltz + Jomal + Wiltz + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30716 + nfl.t.17 + New England Patriots + NE + + 11 + + 42 + CB + + https://s.yimg.com/iu/api/res/1.2/Y8lytTXAzIiJCDsp_HR4Gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30716.png + small + + https://s.yimg.com/iu/api/res/1.2/Y8lytTXAzIiJCDsp_HR4Gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30716.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30710 + 30710 + + Randall Goforth + Randall + Goforth + Randall + Goforth + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30710 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/Gjt_htp8Ah6ko7RGbPAX3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30710.png + small + + https://s.yimg.com/iu/api/res/1.2/Gjt_htp8Ah6ko7RGbPAX3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30710.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29375 + 29375 + + Zack Sanchez + Zack + Sanchez + Zack + Sanchez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29375 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/91a2gj.ofe.XvKbquAqdWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29375.png + small + + https://s.yimg.com/iu/api/res/1.2/91a2gj.ofe.XvKbquAqdWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29375.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29916 + 29916 + + Taveze Calhoun + Taveze + Calhoun + Taveze + Calhoun + + nfl.p.29916 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/aAg10TzWWDphzWb8O0gA1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29916.png + small + + https://s.yimg.com/iu/api/res/1.2/aAg10TzWWDphzWb8O0gA1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29916.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9452 + 9452 + + Brice McCain + Brice + McCain + Brice + McCain + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9452 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/uQtd6tAWLdTzCSe1IUqUZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9452.png + small + + https://s.yimg.com/iu/api/res/1.2/uQtd6tAWLdTzCSe1IUqUZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9452.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31524 + 31524 + + Malik Reaves + Malik + Reaves + Malik + Reaves + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31524 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30495 + 30495 + + Sojourn Shelton + Sojourn + Shelton + Sojourn + Shelton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30495 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/l.mVsuxa1R27WZfSCvP6Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30495.png + small + + https://s.yimg.com/iu/api/res/1.2/l.mVsuxa1R27WZfSCvP6Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30495.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29443 + 29443 + + Maurice Canady + Maurice + Canady + Maurice + Canady + + thigh + nfl.p.29443 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/ur_WUeAcQGC1xIzCOsthlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29443.png + small + + https://s.yimg.com/iu/api/res/1.2/ur_WUeAcQGC1xIzCOsthlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29443.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 5 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30569 + 30569 + + Xavier Coleman + Xavier + Coleman + Xavier + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30569 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/yxdvDhLUXQV5Wcx5xlQbMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30569.png + small + + https://s.yimg.com/iu/api/res/1.2/yxdvDhLUXQV5Wcx5xlQbMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30569.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25401 + 25401 + + Sterling Moore + Sterling + Moore + Sterling + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25401 + nfl.t.8 + Detroit Lions + Det + + 6 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/_E9mkXP2xWj6NWrR0DE_DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/25401.png + small + + https://s.yimg.com/iu/api/res/1.2/_E9mkXP2xWj6NWrR0DE_DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/25401.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28430 + 28430 + + Jalen Collins + Jalen + Collins + Jalen + Collins + + nfl.p.28430 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/_1UJN0Gvw7PiMPC1h5uoQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28430.png + small + + https://s.yimg.com/iu/api/res/1.2/_1UJN0Gvw7PiMPC1h5uoQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28430.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31672 + 31672 + + B.J. Clay + B.J. + Clay + B.J. + Clay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31672 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31789 + 31789 + + Bryce Canady + Bryce + Canady + Bryce + Canady + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31789 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28404 + 28404 + + Kevin Johnson + Kevin + Johnson + Kevin + Johnson + + IR + Injured Reserve + concussion + nfl.p.28404 + nfl.t.34 + Houston Texans + Hou + + 10 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/Be0G_frWFWDzDH9nFt9XeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28404.png + small + + https://s.yimg.com/iu/api/res/1.2/Be0G_frWFWDzDH9nFt9XeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28404.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31370 + 31370 + + Robert Jackson + Robert + Jackson + Robert + Jackson + + undisclosed + nfl.p.31370 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lHx9Hb2_0XbtFyemTbqn0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31370.png + small + + https://s.yimg.com/iu/api/res/1.2/lHx9Hb2_0XbtFyemTbqn0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31370.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30108 + 30108 + + Bradley Sylve + Bradley + Sylve + Bradley + Sylve + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30108 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31498 + 31498 + + Arrion Springs + Arrion + Springs + Arrion + Springs + + nfl.p.31498 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31658 + 31658 + + Rashard Fant + Rashard + Fant + Rashard + Fant + + undisclosed + nfl.p.31658 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31600 + 31600 + + Ryan Carter + Ryan + Carter + Ryan + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31600 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 46 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30214 + 30214 + + Brendan Langley + Brendan + Langley + Brendan + Langley + + concussion + nfl.p.30214 + nfl.t.7 + Denver Broncos + Den + + 10 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/WT.9Y93DvcdU_deZWClBcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30214.png + small + + https://s.yimg.com/iu/api/res/1.2/WT.9Y93DvcdU_deZWClBcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30214.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 3 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25872 + 25872 + + Corey White + Corey + White + Corey + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25872 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/LvJS1pkvY0BlGRBVpItLJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25872.1.png + small + + https://s.yimg.com/iu/api/res/1.2/LvJS1pkvY0BlGRBVpItLJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25872.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27123 + 27123 + + Sheldon Price + Sheldon + Price + Sheldon + Price + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27123 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/DvKCwOphIuL8KtiG0QzX2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27123.png + small + + https://s.yimg.com/iu/api/res/1.2/DvKCwOphIuL8KtiG0QzX2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27123.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30695 + 30695 + + Raysean Pringle + Raysean + Pringle + Raysean + Pringle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30695 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/_gbAesz77aBvww7ps.uzwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30695.png + small + + https://s.yimg.com/iu/api/res/1.2/_gbAesz77aBvww7ps.uzwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30695.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31406 + 31406 + + Ranthony Texada + Ranthony + Texada + Ranthony + Texada + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31406 + nfl.t.28 + Washington Redskins + Was + + 4 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/zAeLfDoHiMbR5M9QVLDQLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31406.png + small + + https://s.yimg.com/iu/api/res/1.2/zAeLfDoHiMbR5M9QVLDQLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31406.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25882 + 25882 + + Jeremy Lane + Jeremy + Lane + Jeremy + Lane + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25882 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/6UtKaU97XBthmMwxv71QBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25882.png + small + + https://s.yimg.com/iu/api/res/1.2/6UtKaU97XBthmMwxv71QBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25882.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29412 + 29412 + + D.J. White + D.J. + White + D.J. + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29412 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/zXGfPLfSuGQzynlDtvqP3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29412.png + small + + https://s.yimg.com/iu/api/res/1.2/zXGfPLfSuGQzynlDtvqP3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29412.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31451 + 31451 + + Elijah Campbell + Elijah + Campbell + Elijah + Campbell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31451 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26713 + 26713 + + Kayvon Webster + Kayvon + Webster + Kayvon + Webster + + IR + Injured Reserve + quadriceps + nfl.p.26713 + nfl.t.34 + Houston Texans + Hou + + 10 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/srPOxiO5B9Cr0xm7.HFOJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26713.png + small + + https://s.yimg.com/iu/api/res/1.2/srPOxiO5B9Cr0xm7.HFOJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26713.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29723 + 29723 + + Makinton Dorleant + Makinton + Dorleant + Makinton + Dorleant + + nfl.p.29723 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/T2Xo5F1_qjypAtY7MqYK_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29723.png + small + + https://s.yimg.com/iu/api/res/1.2/T2Xo5F1_qjypAtY7MqYK_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29723.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29956 + 29956 + + Kenneth Durden + Kenneth + Durden + Kenneth + Durden + + nfl.p.29956 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/KGNYbyTSbEIiVjp59KLNWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29956.png + small + + https://s.yimg.com/iu/api/res/1.2/KGNYbyTSbEIiVjp59KLNWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29956.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30329 + 30329 + + Marquez White + Marquez + White + Marquez + White + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30329 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/xa6PSBe02W6wn0n6NE4vNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30329.png + small + + https://s.yimg.com/iu/api/res/1.2/xa6PSBe02W6wn0n6NE4vNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30329.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29924 + 29924 + + Kevin Peterson + Kevin + Peterson + Kevin + Peterson + + IR + Injured Reserve + torn ACL + nfl.p.29924 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/fgNmMSxD54gZbEg9riyIhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29924.png + small + + https://s.yimg.com/iu/api/res/1.2/fgNmMSxD54gZbEg9riyIhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29924.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31610 + 31610 + + Ryan McKinley + Ryan + McKinley + Ryan + McKinley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31610 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30846 + 30846 + + Jaylen Hill + Jaylen + Hill + Jaylen + Hill + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30846 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/dzlZW32iRMa8.tuNGbeB2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30846.png + small + + https://s.yimg.com/iu/api/res/1.2/dzlZW32iRMa8.tuNGbeB2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30846.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31294 + 31294 + + Kam Kelly + Kam + Kelly + Kam + Kelly + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31294 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/8Aevrh31WwNJByOnQWtEog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31294.png + small + + https://s.yimg.com/iu/api/res/1.2/8Aevrh31WwNJByOnQWtEog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31294.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30623 + 30623 + + Breon Borders + Breon + Borders + Breon + Borders + + nfl.p.30623 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/KiAb0PBloVZGC4DyiRJBzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30623.png + small + + https://s.yimg.com/iu/api/res/1.2/KiAb0PBloVZGC4DyiRJBzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30623.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30683 + 30683 + + Ashton Lampkin + Ashton + Lampkin + Ashton + Lampkin + + nfl.p.30683 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/F7pYahVXD3lYuAqZkNjVvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30683.png + small + + https://s.yimg.com/iu/api/res/1.2/F7pYahVXD3lYuAqZkNjVvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30683.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30472 + 30472 + + Maurice Fleming + Maurice + Fleming + Maurice + Fleming + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30472 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27989 + 27989 + + Sammy Seamster + Sammy + Seamster + Sammy + Seamster + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27989 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/B9Cil_FxHDwxzxbpDrNncg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27989.png + small + + https://s.yimg.com/iu/api/res/1.2/B9Cil_FxHDwxzxbpDrNncg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27989.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28630 + 28630 + + Dexter McDonald + Dexter + McDonald + Dexter + McDonald + + IR + Injured Reserve + undisclosed + nfl.p.28630 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/90xEtQYruTA3L4HMduSHpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28630.png + small + + https://s.yimg.com/iu/api/res/1.2/90xEtQYruTA3L4HMduSHpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28630.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28136 + 28136 + + Dashaun Phillips + Dashaun + Phillips + Dashaun + Phillips + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28136 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/9F3NBKGqLAHj2Klgbh4lbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28136.png + small + + https://s.yimg.com/iu/api/res/1.2/9F3NBKGqLAHj2Klgbh4lbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28136.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29706 + 29706 + + Darius Hillary + Darius + Hillary + Darius + Hillary + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29706 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/.Bvjuj9twLJg9OhdWpSB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29706.1.png + small + + https://s.yimg.com/iu/api/res/1.2/.Bvjuj9twLJg9OhdWpSB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29706.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30443 + 30443 + + Horace Richardson + Horace + Richardson + Horace + Richardson + + nfl.p.30443 + nfl.t.7 + Denver Broncos + Den + + 10 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/v85j_MKZowLhMRAczbPI2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30443.png + small + + https://s.yimg.com/iu/api/res/1.2/v85j_MKZowLhMRAczbPI2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30443.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30282 + 30282 + + Treston Decoud + Treston + Decoud + Treston + Decoud + + nfl.p.30282 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/.LnjxX_bQ0dLfvxEICF5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30282.png + small + + https://s.yimg.com/iu/api/res/1.2/.LnjxX_bQ0dLfvxEICF5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30282.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28715 + 28715 + + Trovon Reed + Trovon + Reed + Trovon + Reed + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28715 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/uxeOMIPh6zAk_dIjBSyW3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28715.png + small + + https://s.yimg.com/iu/api/res/1.2/uxeOMIPh6zAk_dIjBSyW3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28715.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31418 + 31418 + + Trey Johnson + Trey + Johnson + Trey + Johnson + + IR + Injured Reserve + shoulder + nfl.p.31418 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30348 + 30348 + + Joshua Holsey + Joshua + Holsey + Joshua + Holsey + + IR + Injured Reserve + knee + nfl.p.30348 + nfl.t.28 + Washington Redskins + Was + + 4 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/2WHbqR4Vsha8MAlDFr.PaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30348.png + small + + https://s.yimg.com/iu/api/res/1.2/2WHbqR4Vsha8MAlDFr.PaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30348.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31589 + 31589 + + Chandon Sullivan + Chandon + Sullivan + Chandon + Sullivan + + nfl.p.31589 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 7 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30794 + 30794 + + Dee Virgin + Dee + Virgin + Dee + Virgin + + nfl.p.30794 + nfl.t.8 + Detroit Lions + Det + + 6 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/XVUOR0wT7VNDS58rIjYF7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30794.png + small + + https://s.yimg.com/iu/api/res/1.2/XVUOR0wT7VNDS58rIjYF7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30794.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30859 + 30859 + + Bryce Jones + Bryce + Jones + Bryce + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30859 + nfl.t.34 + Houston Texans + Hou + + 10 + + 44 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30776 + 30776 + + Josh Thornton + Josh + Thornton + Josh + Thornton + + undisclosed + nfl.p.30776 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/m.RSzqY1JFH9BZJx88iVRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30776.png + small + + https://s.yimg.com/iu/api/res/1.2/m.RSzqY1JFH9BZJx88iVRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30776.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31509 + 31509 + + Craig James + Craig + James + Craig + James + + undisclosed + nfl.p.31509 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28639 + 28639 + + Taurean Nixon + Taurean + Nixon + Taurean + Nixon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28639 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/jsdDmsChgaI7BWfflW8AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28639.png + small + + https://s.yimg.com/iu/api/res/1.2/jsdDmsChgaI7BWfflW8AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28639.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31385 + 31385 + + Tarvarus McFadden + Tarvarus + McFadden + Tarvarus + McFadden + + nfl.p.31385 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 45 + CB + + https://s.yimg.com/iu/api/res/1.2/bcQu0XEjIq9i_1LVYsoMIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31385.png + small + + https://s.yimg.com/iu/api/res/1.2/bcQu0XEjIq9i_1LVYsoMIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31385.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31152 + 31152 + + Chris Campbell + Chris + Campbell + Chris + Campbell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31152 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/eCORhkaqXy.eoYdzBBVxVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31152.1.png + small + + https://s.yimg.com/iu/api/res/1.2/eCORhkaqXy.eoYdzBBVxVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31152.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27637 + 27637 + + Ross Cockrell + Ross + Cockrell + Ross + Cockrell + + IR + Injured Reserve + fractured left tibia/fibula + nfl.p.27637 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 47 + CB + + https://s.yimg.com/iu/api/res/1.2/23btzzkqoUiJDCdwGU3P.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27637.png + small + + https://s.yimg.com/iu/api/res/1.2/23btzzkqoUiJDCdwGU3P.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27637.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31779 + 31779 + + Christian Boutte + Christian + Boutte + Christian + Boutte + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31779 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 40 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30239 + 30239 + + Howard Wilson + Howard + Wilson + Howard + Wilson + + IR + Injured Reserve + torn left patellar tendon + nfl.p.30239 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/rwEAbOE79z1Ol2YmPxgGmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30239.png + small + + https://s.yimg.com/iu/api/res/1.2/rwEAbOE79z1Ol2YmPxgGmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30239.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29487 + 29487 + + Kalan Reed + Kalan + Reed + Kalan + Reed + + undisclosed + nfl.p.29487 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/AAIGHTFw_9N68N8YDnbGqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29487.png + small + + https://s.yimg.com/iu/api/res/1.2/AAIGHTFw_9N68N8YDnbGqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29487.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28925 + 28925 + + LaDarius Gunter + LaDarius + Gunter + LaDarius + Gunter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28925 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/3Q47wWbjCJQjK5Wm2vy77w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28925.png + small + + https://s.yimg.com/iu/api/res/1.2/3Q47wWbjCJQjK5Wm2vy77w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28925.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30821 + 30821 + + Marcus Rios + Marcus + Rios + Marcus + Rios + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30821 + nfl.t.7 + Denver Broncos + Den + + 10 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/BthxpXHNWiMTiYT3X9RSjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30821.png + small + + https://s.yimg.com/iu/api/res/1.2/BthxpXHNWiMTiYT3X9RSjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30821.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31553 + 31553 + + Bryon Fields Jr. + Bryon + Fields Jr. + Bryon + Fields Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31553 + nfl.t.19 + New York Giants + NYG + + 9 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29021 + 29021 + + Tim Scott + Tim + Scott + Tim + Scott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29021 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 45 + CB + + https://s.yimg.com/iu/api/res/1.2/RrB_08MapM6_dr64IKV0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29021.1.png + small + + https://s.yimg.com/iu/api/res/1.2/RrB_08MapM6_dr64IKV0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29021.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27657 + 27657 + + Dontae Johnson + Dontae + Johnson + Dontae + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + groin + nfl.p.27657 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/.ZNHwHuYZ581lD9X_xy79g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27657.png + small + + https://s.yimg.com/iu/api/res/1.2/.ZNHwHuYZ581lD9X_xy79g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27657.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28509 + 28509 + + Doran Grant + Doran + Grant + Doran + Grant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28509 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/QiDGrJdw8OYWzIIeDZHwLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28509.png + small + + https://s.yimg.com/iu/api/res/1.2/QiDGrJdw8OYWzIIeDZHwLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28509.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31534 + 31534 + + Jalen Davis + Jalen + Davis + Jalen + Davis + + nfl.p.31534 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 5 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31088 + 31088 + + Anthony Averett + Anthony + Averett + Anthony + Averett + + hamstring + nfl.p.31088 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/GXjdQFT_eD9gA1BLzVaFLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31088.png + small + + https://s.yimg.com/iu/api/res/1.2/GXjdQFT_eD9gA1BLzVaFLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31088.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 5 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31545 + 31545 + + Johnathan Alston + Johnathan + Alston + Johnathan + Alston + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31545 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31314 + 31314 + + Deatrick Nichols + Deatrick + Nichols + Deatrick + Nichols + + nfl.p.31314 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/JA305i6dY4SrABfrpzK6LQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31314.1.png + small + + https://s.yimg.com/iu/api/res/1.2/JA305i6dY4SrABfrpzK6LQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31314.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31675 + 31675 + + Marcus Edmond + Marcus + Edmond + Marcus + Edmond + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31675 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31192 + 31192 + + Jermaine Kelly Jr. + Jermaine + Kelly Jr. + Jermaine + Kelly Jr. + + IR + Injured Reserve + undisclosed + nfl.p.31192 + nfl.t.34 + Houston Texans + Hou + + 10 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/ObIa4tUxSzlX3suUpzKwLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31192.png + small + + https://s.yimg.com/iu/api/res/1.2/ObIa4tUxSzlX3suUpzKwLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31192.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24918 + 24918 + + Davon House + Davon + House + Davon + House + + IR + Injured Reserve + shoulder + nfl.p.24918 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/2I3ry_YgPlUtgRtyfGGfNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24918.png + small + + https://s.yimg.com/iu/api/res/1.2/2I3ry_YgPlUtgRtyfGGfNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24918.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27644 + 27644 + + Keith McGill + Keith + McGill + Keith + McGill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27644 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/9N7VqsCIOepqx1bUS9Kr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27644.png + small + + https://s.yimg.com/iu/api/res/1.2/9N7VqsCIOepqx1bUS9Kr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27644.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31026 + 31026 + + Duke Dawson + Duke + Dawson + Duke + Dawson + + NA + Inactive: Coach's Decision or Not on Roster + hamstring + nfl.p.31026 + nfl.t.17 + New England Patriots + NE + + 11 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/ncojEzn3HjRLJCAFfxn4bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31026.png + small + + https://s.yimg.com/iu/api/res/1.2/ncojEzn3HjRLJCAFfxn4bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31026.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31631 + 31631 + + Antwuan Davis + Antwuan + Davis + Antwuan + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31631 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 49 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29936 + 29936 + + Bryson Keeton + Bryson + Keeton + Bryson + Keeton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29936 + nfl.t.20 + New York Jets + NYJ + + 11 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/x1K0hWN.wMY.kZ0v3nAM4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29936.1.png + small + + https://s.yimg.com/iu/api/res/1.2/x1K0hWN.wMY.kZ0v3nAM4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29936.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30532 + 30532 + + Reggie Porter + Reggie + Porter + Reggie + Porter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30532 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26120 + 26120 + + Terrance Parks + Terrance + Parks + Terrance + Parks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26120 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 46 + CB + + https://s.yimg.com/iu/api/res/1.2/oySZo8vrUgdR6bL6sAX6yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/26120.3.png + small + + https://s.yimg.com/iu/api/res/1.2/oySZo8vrUgdR6bL6sAX6yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/26120.3.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29848 + 29848 + + Michael Hunter + Michael + Hunter + Michael + Hunter + + nfl.p.29848 + nfl.t.19 + New York Giants + NYG + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/VW8sKFDYP7eEmj6NTK9wkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29848.png + small + + https://s.yimg.com/iu/api/res/1.2/VW8sKFDYP7eEmj6NTK9wkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29848.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29814 + 29814 + + DeAndre Elliott + DeAndre + Elliott + DeAndre + Elliott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29814 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/q1ytGnE003KV1jqvlX0P_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29814.png + small + + https://s.yimg.com/iu/api/res/1.2/q1ytGnE003KV1jqvlX0P_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29814.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31762 + 31762 + + Adonis Alexander + Adonis + Alexander + Adonis + Alexander + + nfl.p.31762 + nfl.t.28 + Washington Redskins + Was + + 4 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 4 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30210 + 30210 + + Cordrea Tankersley + Cordrea + Tankersley + Cordrea + Tankersley + + IR + Injured Reserve + torn ACL + nfl.p.30210 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/BLXiPNWvk9Q8UVQlKa3Q5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30210.png + small + + https://s.yimg.com/iu/api/res/1.2/BLXiPNWvk9Q8UVQlKa3Q5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30210.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 2 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30381 + 30381 + + Cole Luke + Cole + Luke + Cole + Luke + + nfl.p.30381 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/hNUYL4Kj9ghXx5BxsugkpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30381.png + small + + https://s.yimg.com/iu/api/res/1.2/hNUYL4Kj9ghXx5BxsugkpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30381.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27215 + 27215 + + Darryl Morris + Darryl + Morris + Darryl + Morris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27215 + nfl.t.19 + New York Giants + NYG + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/PrEP6HPEfMBkKK4c9UY67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27215.1.png + small + + https://s.yimg.com/iu/api/res/1.2/PrEP6HPEfMBkKK4c9UY67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27215.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26693 + 26693 + + Blidi Wreh-Wilson + Blidi + Wreh-Wilson + Blidi + Wreh-Wilson + + shoulder + nfl.p.26693 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/zrTS2.B.ax63GL5uemuiRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26693.png + small + + https://s.yimg.com/iu/api/res/1.2/zrTS2.B.ax63GL5uemuiRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26693.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31297 + 31297 + + Elijah Battle + Elijah + Battle + Elijah + Battle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31297 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 7 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28471 + 28471 + + Craig Mager + Craig + Mager + Craig + Mager + + hamstring + nfl.p.28471 + nfl.t.7 + Denver Broncos + Den + + 10 + + 49 + CB + + https://s.yimg.com/iu/api/res/1.2/aaZJAENevbGAfThl2_4kOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28471.png + small + + https://s.yimg.com/iu/api/res/1.2/aaZJAENevbGAfThl2_4kOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28471.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28237 + 28237 + + Robert Nelson Jr. + Robert + Nelson Jr. + Robert + Nelson Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28237 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/tTPlRxa95GLZg6sifswL1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28237.1.png + small + + https://s.yimg.com/iu/api/res/1.2/tTPlRxa95GLZg6sifswL1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28237.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31409 + 31409 + + Curtis Mikell Jr. + Curtis + Mikell Jr. + Curtis + Mikell Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31409 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/ms4Idb4r1z2MTEUTEGM6ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31409.png + small + + https://s.yimg.com/iu/api/res/1.2/ms4Idb4r1z2MTEUTEGM6ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31409.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29090 + 29090 + + De'Vante Bausby + De'Vante + Bausby + De'Vante + Bausby + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29090 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/yS6E19lOysfThuDl8FHBvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29090.png + small + + https://s.yimg.com/iu/api/res/1.2/yS6E19lOysfThuDl8FHBvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29090.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 12 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30620 + 30620 + + David Rivers + David + Rivers + David + Rivers + + nfl.p.30620 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/QNU6m3erK9YOMCJfM_fiiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30620.png + small + + https://s.yimg.com/iu/api/res/1.2/QNU6m3erK9YOMCJfM_fiiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30620.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24960 + 24960 + + Byron Maxwell + Byron + Maxwell + Byron + Maxwell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24960 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/yYX1NXUucmV5DsR5C_GtVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24960.png + small + + https://s.yimg.com/iu/api/res/1.2/yYX1NXUucmV5DsR5C_GtVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24960.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27586 + 27586 + + Stanley Jean-Baptiste + Stanley + Jean-Baptiste + Stanley + Jean-Baptiste + + IR + Injured Reserve + undisclosed + nfl.p.27586 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/worvM3YDTbjSQWUKzGAonA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27586.png + small + + https://s.yimg.com/iu/api/res/1.2/worvM3YDTbjSQWUKzGAonA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27586.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29667 + 29667 + + Tracy Howard + Tracy + Howard + Tracy + Howard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29667 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/BLWGeIDdwKrY8jQvREwuLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29667.1.png + small + + https://s.yimg.com/iu/api/res/1.2/BLWGeIDdwKrY8jQvREwuLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29667.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31591 + 31591 + + Jordan Thomas + Jordan + Thomas + Jordan + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31591 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 48 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29662 + 29662 + + Dominique Alexander + Dominique + Alexander + Dominique + Alexander + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29662 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/NGMM.XaNMb8RHr0TcEBFjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29662.1.png + small + + https://s.yimg.com/iu/api/res/1.2/NGMM.XaNMb8RHr0TcEBFjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29662.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31313 + 31313 + + Mike Needham + Mike + Needham + Mike + Needham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31313 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28798 + 28798 + + Marcus Rush + Marcus + Rush + Marcus + Rush + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28798 + nfl.t.7 + Denver Broncos + Den + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/xJYNOLHP9I14.uSxiGrwYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28798.png + small + + https://s.yimg.com/iu/api/res/1.2/xJYNOLHP9I14.uSxiGrwYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28798.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27275 + 27275 + + Terence Garvin + Terence + Garvin + Terence + Garvin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27275 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/0B4F3oiWQH0KbuBGgjOf_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27275.png + small + + https://s.yimg.com/iu/api/res/1.2/0B4F3oiWQH0KbuBGgjOf_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27275.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29403 + 29403 + + Antwione Williams + Antwione + Williams + Antwione + Williams + + nfl.p.29403 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/6jn9r5gy_svnQUfRTVIbow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29403.png + small + + https://s.yimg.com/iu/api/res/1.2/6jn9r5gy_svnQUfRTVIbow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29403.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24507 + 24507 + + Frank Zombo + Frank + Zombo + Frank + Zombo + + hamstring + nfl.p.24507 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/StSkt11vMlcFAkNoPNsxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/24507.png + small + + https://s.yimg.com/iu/api/res/1.2/StSkt11vMlcFAkNoPNsxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/24507.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7769 + 7769 + + Tamba Hali + Tamba + Hali + Tamba + Hali + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7769 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/AQVO_KLSlcwroiN838j6zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/7769.png + small + + https://s.yimg.com/iu/api/res/1.2/AQVO_KLSlcwroiN838j6zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/7769.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31487 + 31487 + + Raymond Davison + Raymond + Davison + Raymond + Davison + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31487 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30424 + 30424 + + Nigel Harris + Nigel + Harris + Nigel + Harris + + nfl.p.30424 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/M7fAtvPd2yUtinYV9.oM2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30424.png + small + + https://s.yimg.com/iu/api/res/1.2/M7fAtvPd2yUtinYV9.oM2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30424.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30315 + 30315 + + Pita Taumoepenu + Pita + Taumoepenu + Pita + Taumoepenu + + nfl.p.30315 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/oYkHa0zez621_oUq0OqDMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30315.png + small + + https://s.yimg.com/iu/api/res/1.2/oYkHa0zez621_oUq0OqDMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30315.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 3 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30576 + 30576 + + Brandon Bell + Brandon + Bell + Brandon + Bell + + nfl.p.30576 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/rUmq8WNe06g6UuvCgwRqXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30576.1.png + small + + https://s.yimg.com/iu/api/res/1.2/rUmq8WNe06g6UuvCgwRqXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30576.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 2 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30428 + 30428 + + James Onwualu + James + Onwualu + James + Onwualu + + nfl.p.30428 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/tvxo6Ea9YIWHUarKU9g9ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30428.png + small + + https://s.yimg.com/iu/api/res/1.2/tvxo6Ea9YIWHUarKU9g9ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30428.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29424 + 29424 + + Josh Forrest + Josh + Forrest + Josh + Forrest + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29424 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/yOLFFnzwmBIg52F8hjCdRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29424.png + small + + https://s.yimg.com/iu/api/res/1.2/yOLFFnzwmBIg52F8hjCdRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29424.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31563 + 31563 + + Junior Joseph + Junior + Joseph + Junior + Joseph + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31563 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29937 + 29937 + + Pete Robertson + Pete + Robertson + Pete + Robertson + + nfl.p.29937 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/V32taWh3r7eOxpy8K5BI9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29937.png + small + + https://s.yimg.com/iu/api/res/1.2/V32taWh3r7eOxpy8K5BI9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29937.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31264 + 31264 + + Reggie Hunter + Reggie + Hunter + Reggie + Hunter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31264 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/dv47WuPl9ByRKLCmXcYJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31264.png + small + + https://s.yimg.com/iu/api/res/1.2/dv47WuPl9ByRKLCmXcYJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31264.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27424 + 27424 + + Freddie Bishop III + Freddie + Bishop III + Freddie + Bishop III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27424 + nfl.t.8 + Detroit Lions + Det + + 6 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/2vkmcsLu47plxcqp_EubPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27424.1.png + small + + https://s.yimg.com/iu/api/res/1.2/2vkmcsLu47plxcqp_EubPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27424.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31300 + 31300 + + Frank Ginda + Frank + Ginda + Frank + Ginda + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31300 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29926 + 29926 + + Micah Awe + Micah + Awe + Micah + Awe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29926 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/Y1qz_uBJgSqgdmL6_uYm0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29926.png + small + + https://s.yimg.com/iu/api/res/1.2/Y1qz_uBJgSqgdmL6_uYm0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29926.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30172 + 30172 + + Tanoh Kpassagnon + Tanoh + Kpassagnon + Tanoh + Kpassagnon + + NA + Inactive: Coach's Decision or Not on Roster + ankle + nfl.p.30172 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 92 + LB + + https://s.yimg.com/iu/api/res/1.2/MTIknze5wXPNJeemSL6u4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30172.png + small + + https://s.yimg.com/iu/api/res/1.2/MTIknze5wXPNJeemSL6u4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30172.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31597 + 31597 + + Corey Thompson + Corey + Thompson + Corey + Thompson + + nfl.p.31597 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 8 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31714 + 31714 + + KeShun Freeman + KeShun + Freeman + KeShun + Freeman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31714 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28599 + 28599 + + Reshard Cliett + Reshard + Cliett + Reshard + Cliett + + nfl.p.28599 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/sPK0uFHuufgfoDgQOJr4SA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28599.png + small + + https://s.yimg.com/iu/api/res/1.2/sPK0uFHuufgfoDgQOJr4SA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28599.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28554 + 28554 + + Joe Cardona + Joe + Cardona + Joe + Cardona + + shoulder + nfl.p.28554 + nfl.t.17 + New England Patriots + NE + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/SziwAvUQ5dHlOBCdnBxbIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28554.png + small + + https://s.yimg.com/iu/api/res/1.2/SziwAvUQ5dHlOBCdnBxbIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28554.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31742 + 31742 + + Shaheed Salmon + Shaheed + Salmon + Shaheed + Salmon + + NA + Inactive: Coach's Decision or Not on Roster + ankle + nfl.p.31742 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30904 + 30904 + + Brady Sheldon + Brady + Sheldon + Brady + Sheldon + + nfl.p.30904 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/AGSvQx0nUAqvXs0ncfwklA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30904.png + small + + https://s.yimg.com/iu/api/res/1.2/AGSvQx0nUAqvXs0ncfwklA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30904.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30659 + 30659 + + Brooks Ellis + Brooks + Ellis + Brooks + Ellis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30659 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/vMOk7L75ZWpxjkG7jkyKaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30659.png + small + + https://s.yimg.com/iu/api/res/1.2/vMOk7L75ZWpxjkG7jkyKaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30659.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30021 + 30021 + + Kyle Coleman + Kyle + Coleman + Kyle + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30021 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/9efpXp0.NgpaLPodR97GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30021.png + small + + https://s.yimg.com/iu/api/res/1.2/9efpXp0.NgpaLPodR97GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30021.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27699 + 27699 + + Jordan Tripp + Jordan + Tripp + Jordan + Tripp + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27699 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/OjBZK78rawxrpNZ3k2iDIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27699.png + small + + https://s.yimg.com/iu/api/res/1.2/OjBZK78rawxrpNZ3k2iDIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27699.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26711 + 26711 + + Corey Lemonier + Corey + Lemonier + Corey + Lemonier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26711 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/KQDeFzoiZ_mhcVJQEZXpAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26711.png + small + + https://s.yimg.com/iu/api/res/1.2/KQDeFzoiZ_mhcVJQEZXpAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26711.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30760 + 30760 + + Otha Peters + Otha + Peters + Otha + Peters + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30760 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31720 + 31720 + + Vontae Diggs + Vontae + Diggs + Vontae + Diggs + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31720 + nfl.t.28 + Washington Redskins + Was + + 4 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31218 + 31218 + + Kendall Donnerson + Kendall + Donnerson + Kendall + Donnerson + + nfl.p.31218 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/Nb_Q3p6r5Qxw9Vj6TaBgOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31218.png + small + + https://s.yimg.com/iu/api/res/1.2/Nb_Q3p6r5Qxw9Vj6TaBgOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31218.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25021 + 25021 + + Andrew Gachkar + Andrew + Gachkar + Andrew + Gachkar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25021 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/kKXW_6twzut9tnRw8ZOZzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25021.png + small + + https://s.yimg.com/iu/api/res/1.2/kKXW_6twzut9tnRw8ZOZzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25021.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27040 + 27040 + + Paul Worrilow + Paul + Worrilow + Paul + Worrilow + + IR + Injured Reserve + torn right ACL + nfl.p.27040 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/MnrLX5Ax3mOmHCQoYHFdmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27040.png + small + + https://s.yimg.com/iu/api/res/1.2/MnrLX5Ax3mOmHCQoYHFdmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27040.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29832 + 29832 + + Farrington Huguenin + Farrington + Huguenin + Farrington + Huguenin + + nfl.p.29832 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 95 + LB + + https://s.yimg.com/iu/api/res/1.2/hXeypI.PRTmO7LcrheOt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29832.png + small + + https://s.yimg.com/iu/api/res/1.2/hXeypI.PRTmO7LcrheOt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29832.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27770 + 27770 + + Corey Nelson + Corey + Nelson + Corey + Nelson + + calf + nfl.p.27770 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/qKbexNcVnhZx2DdYcsMACw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27770.png + small + + https://s.yimg.com/iu/api/res/1.2/qKbexNcVnhZx2DdYcsMACw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27770.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29093 + 29093 + + Andrew East + Andrew + East + Andrew + East + + nfl.p.29093 + nfl.t.28 + Washington Redskins + Was + + 4 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/aaFyjF7SjyL1XGjGkdaJ2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29093.png + small + + https://s.yimg.com/iu/api/res/1.2/aaFyjF7SjyL1XGjGkdaJ2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29093.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30387 + 30387 + + Keith Kelsey + Keith + Kelsey + Keith + Kelsey + + IR + Injured Reserve + undisclosed + nfl.p.30387 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/lARlSz5ROINpP6G5WHG62g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30387.png + small + + https://s.yimg.com/iu/api/res/1.2/lARlSz5ROINpP6G5WHG62g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30387.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28698 + 28698 + + Rick Lovato + Rick + Lovato + Rick + Lovato + + nfl.p.28698 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/6uhwUsTxhuAH3vP1zzJsFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28698.png + small + + https://s.yimg.com/iu/api/res/1.2/6uhwUsTxhuAH3vP1zzJsFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28698.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31292 + 31292 + + Kyle Queiro + Kyle + Queiro + Kyle + Queiro + + nfl.p.31292 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/iRa.nG7Sduk81WWOwU.9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31292.png + small + + https://s.yimg.com/iu/api/res/1.2/iRa.nG7Sduk81WWOwU.9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31292.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29428 + 29428 + + Cory James + Cory + James + Cory + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29428 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/kvlBKFMHvkKy0bAsFYTOfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29428.png + small + + https://s.yimg.com/iu/api/res/1.2/kvlBKFMHvkKy0bAsFYTOfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29428.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26897 + 26897 + + John Lotulelei + John + Lotulelei + John + Lotulelei + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26897 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/Zb6DJgG2TOPoDPr3PPf9ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26897.png + small + + https://s.yimg.com/iu/api/res/1.2/Zb6DJgG2TOPoDPr3PPf9ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26897.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31374 + 31374 + + William Ossai + William + Ossai + William + Ossai + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31374 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/6haBXLfTfL73Dji8v3pLjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31374.png + small + + https://s.yimg.com/iu/api/res/1.2/6haBXLfTfL73Dji8v3pLjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31374.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.6792 + 6792 + + Karlos Dansby + Karlos + Dansby + Karlos + Dansby + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6792 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/fXfoWFhWkhwYBOXTkC1XMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/6792.png + small + + https://s.yimg.com/iu/api/res/1.2/fXfoWFhWkhwYBOXTkC1XMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/6792.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26727 + 26727 + + Jelani Jenkins + Jelani + Jenkins + Jelani + Jenkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26727 + nfl.t.34 + Houston Texans + Hou + + 10 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/vnJ0tq4N8U0II203sjShfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/26727.png + small + + https://s.yimg.com/iu/api/res/1.2/vnJ0tq4N8U0II203sjShfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/26727.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30635 + 30635 + + Ahmad Thomas + Ahmad + Thomas + Ahmad + Thomas + + pectoral + nfl.p.30635 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/ZJOZ7KY6wt29BU8ZDq.Gtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30635.png + small + + https://s.yimg.com/iu/api/res/1.2/ZJOZ7KY6wt29BU8ZDq.Gtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30635.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29336 + 29336 + + Josh Perry + Josh + Perry + Josh + Perry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29336 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/2bWAk6B6qTw1.w0bMgyuBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29336.png + small + + https://s.yimg.com/iu/api/res/1.2/2bWAk6B6qTw1.w0bMgyuBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29336.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28733 + 28733 + + Arthur Miley + Arthur + Miley + Arthur + Miley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28733 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/gyweImilJLjtBIGklXxPqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28733.png + small + + https://s.yimg.com/iu/api/res/1.2/gyweImilJLjtBIGklXxPqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28733.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25327 + 25327 + + Jonathan Freeny + Jonathan + Freeny + Jonathan + Freeny + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25327 + nfl.t.8 + Detroit Lions + Det + + 6 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/3Ck4Vao_.wjhWdPXfjC2yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25327.png + small + + https://s.yimg.com/iu/api/res/1.2/3Ck4Vao_.wjhWdPXfjC2yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25327.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24855 + 24855 + + Kelvin Sheppard + Kelvin + Sheppard + Kelvin + Sheppard + + nfl.p.24855 + nfl.t.8 + Detroit Lions + Det + + 6 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/CbPfXlMVSxraOyKvKTgvkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24855.png + small + + https://s.yimg.com/iu/api/res/1.2/CbPfXlMVSxraOyKvKTgvkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24855.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 5 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30039 + 30039 + + Darnell Sankey + Darnell + Sankey + Darnell + Sankey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30039 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31197 + 31197 + + Quentin Poling + Quentin + Poling + Quentin + Poling + + nfl.p.31197 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/QI.vdNeV0Yrf2bO4ak9dEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31197.png + small + + https://s.yimg.com/iu/api/res/1.2/QI.vdNeV0Yrf2bO4ak9dEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31197.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30361 + 30361 + + Keion Adams + Keion + Adams + Keion + Adams + + nfl.p.30361 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/sfnx0Gc5nG1ifjr.y.0t7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30361.png + small + + https://s.yimg.com/iu/api/res/1.2/sfnx0Gc5nG1ifjr.y.0t7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30361.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31761 + 31761 + + Bo Bower + Bo + Bower + Bo + Bower + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31761 + nfl.t.7 + Denver Broncos + Den + + 10 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25857 + 25857 + + Tank Carder + Tank + Carder + Tank + Carder + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25857 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/Q0YcgPH_NGAihy7jTgNIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25857.png + small + + https://s.yimg.com/iu/api/res/1.2/Q0YcgPH_NGAihy7jTgNIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25857.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30220 + 30220 + + Kendell Beckwith + Kendell + Beckwith + Kendell + Beckwith + + IR + Injured Reserve + nfl.p.30220 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/usC6H3_n1cg6ueOtKJeJIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30220.png + small + + https://s.yimg.com/iu/api/res/1.2/usC6H3_n1cg6ueOtKJeJIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30220.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9302 + 9302 + + Rey Maualuga + Rey + Maualuga + Rey + Maualuga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9302 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/ciEcaDBCCtm.HO_quiG6sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9302.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ciEcaDBCCtm.HO_quiG6sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9302.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8269 + 8269 + + Lawrence Timmons + Lawrence + Timmons + Lawrence + Timmons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8269 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 94 + LB + + https://s.yimg.com/iu/api/res/1.2/ACl1UtFxtD_3KVZHgG0fPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/8269.png + small + + https://s.yimg.com/iu/api/res/1.2/ACl1UtFxtD_3KVZHgG0fPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/8269.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27543 + 27543 + + Ryan Shazier + Ryan + Shazier + Ryan + Shazier + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.27543 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/.ikTPmmkEggoG._WTntAXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27543.png + small + + https://s.yimg.com/iu/api/res/1.2/.ikTPmmkEggoG._WTntAXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27543.png + 0 + DP + + LB + + 1 + 1547676600 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24189 + 24189 + + Willie Young + Willie + Young + Willie + Young + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24189 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 97 + LB + + https://s.yimg.com/iu/api/res/1.2/7qxX9IcidaxK9nkgledRLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24189.png + small + + https://s.yimg.com/iu/api/res/1.2/7qxX9IcidaxK9nkgledRLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24189.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29456 + 29456 + + Aaron Wallace + Aaron + Wallace + Aaron + Wallace + + nfl.p.29456 + nfl.t.7 + Denver Broncos + Den + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/exMowJqu6MzyYYZeyk0rNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29456.png + small + + https://s.yimg.com/iu/api/res/1.2/exMowJqu6MzyYYZeyk0rNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29456.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 0 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28487 + 28487 + + Paul Dawson + Paul + Dawson + Paul + Dawson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28487 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/zhu3RcNmxpjJGs1kB.c7gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28487.1.png + small + + https://s.yimg.com/iu/api/res/1.2/zhu3RcNmxpjJGs1kB.c7gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28487.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31230 + 31230 + + Garret Dooley + Garret + Dooley + Garret + Dooley + + nfl.p.31230 + nfl.t.8 + Detroit Lions + Det + + 6 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/nYGkRfh_4W98QZiV.qhm_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31230.png + small + + https://s.yimg.com/iu/api/res/1.2/nYGkRfh_4W98QZiV.qhm_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31230.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9279 + 9279 + + Brian Cushing + Brian + Cushing + Brian + Cushing + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9279 + nfl.t.34 + Houston Texans + Hou + + 10 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/gLwdXlTHLTbf6POZllJMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/9279.png + small + + https://s.yimg.com/iu/api/res/1.2/gLwdXlTHLTbf6POZllJMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/9279.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30094 + 30094 + + Jeff Knox + Jeff + Knox + Jeff + Knox + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30094 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28517 + 28517 + + Jake Ryan + Jake + Ryan + Jake + Ryan + + IR + Injured Reserve + torn right ACL + nfl.p.28517 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/SdgMOre60XzY88Ci_sCn_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28517.png + small + + https://s.yimg.com/iu/api/res/1.2/SdgMOre60XzY88Ci_sCn_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28517.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31440 + 31440 + + Marcus Porter + Marcus + Porter + Marcus + Porter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31440 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27813 + 27813 + + Howard Jones + Howard + Jones + Howard + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27813 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/GiI.1QSeQn4vSSP7GeamtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27813.png + small + + https://s.yimg.com/iu/api/res/1.2/GiI.1QSeQn4vSSP7GeamtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27813.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9537 + 9537 + + Garrison Sanborn + Garrison + Sanborn + Garrison + Sanborn + + knee + nfl.p.9537 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 89 + LB + + https://s.yimg.com/iu/api/res/1.2/S5GaJTGxVTl.6U17ncglGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9537.1.png + small + + https://s.yimg.com/iu/api/res/1.2/S5GaJTGxVTl.6U17ncglGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9537.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 2 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30857 + 30857 + + Matt Galambos + Matt + Galambos + Matt + Galambos + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30857 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/N7TySwsvw0PBJ5369ePXrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30857.png + small + + https://s.yimg.com/iu/api/res/1.2/N7TySwsvw0PBJ5369ePXrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30857.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31204 + 31204 + + Andre Smith + Andre + Smith + Andre + Smith + + hamstring + nfl.p.31204 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/M9KgPxTQ1wKDxuS5UeVxMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31204.png + small + + https://s.yimg.com/iu/api/res/1.2/M9KgPxTQ1wKDxuS5UeVxMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31204.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28470 + 28470 + + Lorenzo Mauldin + Lorenzo + Mauldin + Lorenzo + Mauldin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28470 + nfl.t.20 + New York Jets + NYJ + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/IMiGI2geerdoxtnmhYScZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28470.png + small + + https://s.yimg.com/iu/api/res/1.2/IMiGI2geerdoxtnmhYScZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28470.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31502 + 31502 + + Greer Martini + Greer + Martini + Greer + Martini + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31502 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31802 + 31802 + + Jaboree Williams + Jaboree + Williams + Jaboree + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31802 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31468 + 31468 + + Emmanuel Beal + Emmanuel + Beal + Emmanuel + Beal + + IR + Injured Reserve + undisclosed + nfl.p.31468 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29501 + 29501 + + Jeremy Cash + Jeremy + Cash + Jeremy + Cash + + IR + Injured Reserve + undisclosed + nfl.p.29501 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/PeAdLoTG7jRtqa6U0mUM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29501.1.png + small + + https://s.yimg.com/iu/api/res/1.2/PeAdLoTG7jRtqa6U0mUM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29501.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28075 + 28075 + + Jayrone Elliott + Jayrone + Elliott + Jayrone + Elliott + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28075 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/2EdZNyCSTtFMXgLkMp2gag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28075.png + small + + https://s.yimg.com/iu/api/res/1.2/2EdZNyCSTtFMXgLkMp2gag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28075.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25509 + 25509 + + Mark Herzlich + Mark + Herzlich + Mark + Herzlich + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25509 + nfl.t.19 + New York Giants + NYG + + 9 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/I_.rs4di1J_UlnAxRtVbCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25509.png + small + + https://s.yimg.com/iu/api/res/1.2/I_.rs4di1J_UlnAxRtVbCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25509.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25864 + 25864 + + Korey Toomer + Korey + Toomer + Korey + Toomer + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25864 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/wU1BhSs31ozOcx8ViiDBQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/25864.png + small + + https://s.yimg.com/iu/api/res/1.2/wU1BhSs31ozOcx8ViiDBQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/25864.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 3 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29822 + 29822 + + James Burgess Jr. + James + Burgess Jr. + James + Burgess Jr. + + undisclosed + nfl.p.29822 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/wh1cwYLHY0gHM_YlkylRXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29822.png + small + + https://s.yimg.com/iu/api/res/1.2/wh1cwYLHY0gHM_YlkylRXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29822.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 6 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27736 + 27736 + + Eric Pinkins + Eric + Pinkins + Eric + Pinkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27736 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/uBVF2ofXdEw72LMWft_f9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27736.png + small + + https://s.yimg.com/iu/api/res/1.2/uBVF2ofXdEw72LMWft_f9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27736.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31696 + 31696 + + Manase Hungalu + Manase + Hungalu + Manase + Hungalu + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31696 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31113 + 31113 + + Ja'Whaun Bentley + Ja'Whaun + Bentley + Ja'Whaun + Bentley + + IR + Injured Reserve + undisclosed + nfl.p.31113 + nfl.t.17 + New England Patriots + NE + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/Lx_e4c20.eVfLqqB2NtLcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31113.png + small + + https://s.yimg.com/iu/api/res/1.2/Lx_e4c20.eVfLqqB2NtLcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31113.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 9 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26856 + 26856 + + David Bass + David + Bass + David + Bass + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26856 + nfl.t.20 + New York Jets + NYJ + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/.JbgTT3e9wjPTVDXG.ChFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26856.png + small + + https://s.yimg.com/iu/api/res/1.2/.JbgTT3e9wjPTVDXG.ChFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26856.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24066 + 24066 + + NaVorro Bowman + NaVorro + Bowman + NaVorro + Bowman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24066 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/uuWKPvtHox2tWqK3d8M1Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24066.png + small + + https://s.yimg.com/iu/api/res/1.2/uuWKPvtHox2tWqK3d8M1Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24066.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31434 + 31434 + + Naashon Hughes + Naashon + Hughes + Naashon + Hughes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31434 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30103 + 30103 + + Bo Lokombo + Bo + Lokombo + Bo + Lokombo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30103 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/_TSznHxRMBvOpQh1OItskA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30103.png + small + + https://s.yimg.com/iu/api/res/1.2/_TSznHxRMBvOpQh1OItskA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30103.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31568 + 31568 + + Asantay Brown + Asantay + Brown + Asantay + Brown + + nfl.p.31568 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28845 + 28845 + + Thurston Armbrister + Thurston + Armbrister + Thurston + Armbrister + + IR + Injured Reserve + hamstring + nfl.p.28845 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/BcHMVkLUCvQT1f2.bUJHXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28845.png + small + + https://s.yimg.com/iu/api/res/1.2/BcHMVkLUCvQT1f2.bUJHXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28845.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30462 + 30462 + + Chris Odom + Chris + Odom + Chris + Odom + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30462 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 98 + LB + + https://s.yimg.com/iu/api/res/1.2/y5RMXuw7Mzr4c52lrqScvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30462.png + small + + https://s.yimg.com/iu/api/res/1.2/y5RMXuw7Mzr4c52lrqScvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30462.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30736 + 30736 + + Calvin Munson + Calvin + Munson + Calvin + Munson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30736 + nfl.t.17 + New England Patriots + NE + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/a6UbUYy.xKixczcdLKgZJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30736.png + small + + https://s.yimg.com/iu/api/res/1.2/a6UbUYy.xKixczcdLKgZJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30736.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30261 + 30261 + + Blair Brown + Blair + Brown + Blair + Brown + + nfl.p.30261 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/m30TeLbZWJb.jCqVWBLPvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30261.png + small + + https://s.yimg.com/iu/api/res/1.2/m30TeLbZWJb.jCqVWBLPvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30261.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31470 + 31470 + + Tanner Carew + Tanner + Carew + Tanner + Carew + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31470 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 63 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31175 + 31175 + + Trevon Young + Trevon + Young + Trevon + Young + + NA + Inactive: Coach's Decision or Not on Roster + back + nfl.p.31175 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/Ywg__DvLyRUp.ZJ8eRc.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31175.png + small + + https://s.yimg.com/iu/api/res/1.2/Ywg__DvLyRUp.ZJ8eRc.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31175.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31792 + 31792 + + A.J. Johnson + A.J. + Johnson + A.J. + Johnson + + nfl.p.31792 + nfl.t.7 + Denver Broncos + Den + + 10 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31717 + 31717 + + Airius Moore + Airius + Moore + Airius + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31717 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28695 + 28695 + + John Timu + John + Timu + John + Timu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28695 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/Jd7GajuQ56ospkS_R6wjNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28695.png + small + + https://s.yimg.com/iu/api/res/1.2/Jd7GajuQ56ospkS_R6wjNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28695.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29505 + 29505 + + Jared Norris + Jared + Norris + Jared + Norris + + IR + Injured Reserve + toe + nfl.p.29505 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/h8hKzBs0l68hhytEFVy.Cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29505.png + small + + https://s.yimg.com/iu/api/res/1.2/h8hKzBs0l68hhytEFVy.Cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29505.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9554 + 9554 + + Jonathan Casillas + Jonathan + Casillas + Jonathan + Casillas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9554 + nfl.t.19 + New York Giants + NYG + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/dxzslZ.VrJVujUj6ge5gvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/9554.png + small + + https://s.yimg.com/iu/api/res/1.2/dxzslZ.VrJVujUj6ge5gvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/9554.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31780 + 31780 + + Jonathan Celestin + Jonathan + Celestin + Jonathan + Celestin + + nfl.p.31780 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31745 + 31745 + + Kyle Wilson + Kyle + Wilson + Kyle + Wilson + + concussion + nfl.p.31745 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24193 + 24193 + + Dekoda Watson + Dekoda + Watson + Dekoda + Watson + + IR + Injured Reserve + torn calf + nfl.p.24193 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 97 + LB + + https://s.yimg.com/iu/api/res/1.2/rIkwBbbMZEf6EI0q_B.zTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24193.png + small + + https://s.yimg.com/iu/api/res/1.2/rIkwBbbMZEf6EI0q_B.zTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24193.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 4 + + + 39 + 2 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24826 + 24826 + + Akeem Ayers + Akeem + Ayers + Akeem + Ayers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24826 + nfl.t.19 + New York Giants + NYG + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/SDggTDRRr5crILk9ZY4gFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/24826.png + small + + https://s.yimg.com/iu/api/res/1.2/SDggTDRRr5crILk9ZY4gFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/24826.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31629 + 31629 + + Al-Rasheed Benton + Al-Rasheed + Benton + Al-Rasheed + Benton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31629 + nfl.t.8 + Detroit Lions + Det + + 6 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25508 + 25508 + + Spencer Paysinger + Spencer + Paysinger + Spencer + Paysinger + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25508 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/DAYktoSNyfhjdjpqlBUcbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25508.1.png + small + + https://s.yimg.com/iu/api/res/1.2/DAYktoSNyfhjdjpqlBUcbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25508.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27649 + 27649 + + Carl Bradford + Carl + Bradford + Carl + Bradford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27649 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/HSYX3YkryoFicCCcqnS01w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27649.png + small + + https://s.yimg.com/iu/api/res/1.2/HSYX3YkryoFicCCcqnS01w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27649.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29894 + 29894 + + Deon King + Deon + King + Deon + King + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29894 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/GR21ehAWnovn.y6AlPKbCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29894.png + small + + https://s.yimg.com/iu/api/res/1.2/GR21ehAWnovn.y6AlPKbCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29894.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25976 + 25976 + + Aaron Brewer + Aaron + Brewer + Aaron + Brewer + + nfl.p.25976 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/UlFm3YkHK9SC9HM92P0O.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25976.1.png + small + + https://s.yimg.com/iu/api/res/1.2/UlFm3YkHK9SC9HM92P0O.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25976.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30564 + 30564 + + Donavin Newsom + Donavin + Newsom + Donavin + Newsom + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30564 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/DZoUQyN.T2XsuJl.mg_WLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30564.png + small + + https://s.yimg.com/iu/api/res/1.2/DZoUQyN.T2XsuJl.mg_WLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30564.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27740 + 27740 + + Marquis Flowers + Marquis + Flowers + Marquis + Flowers + + nfl.p.27740 + nfl.t.28 + Washington Redskins + Was + + 4 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/LTUaud5BtXEBCq3ORuYMSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27740.png + small + + https://s.yimg.com/iu/api/res/1.2/LTUaud5BtXEBCq3ORuYMSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27740.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30099 + 30099 + + Adam Bighill + Adam + Bighill + Adam + Bighill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30099 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27682 + 27682 + + Jeremiah George + Jeremiah + George + Jeremiah + George + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27682 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/n5xZ8dh0xegETk3mD33b4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27682.png + small + + https://s.yimg.com/iu/api/res/1.2/n5xZ8dh0xegETk3mD33b4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27682.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31290 + 31290 + + Joel Lanning + Joel + Lanning + Joel + Lanning + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31290 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/w1FtW76lCN7pY0Wji2p5vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31290.png + small + + https://s.yimg.com/iu/api/res/1.2/w1FtW76lCN7pY0Wji2p5vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31290.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31571 + 31571 + + Davin Bellamy + Davin + Bellamy + Davin + Bellamy + + nfl.p.31571 + nfl.t.34 + Houston Texans + Hou + + 10 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8944 + 8944 + + Erik Walden + Erik + Walden + Erik + Walden + + NA + Inactive: Coach's Decision or Not on Roster + hip + nfl.p.8944 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/nRAgAzyUombIBWV_0iFvyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8944.1.png + small + + https://s.yimg.com/iu/api/res/1.2/nRAgAzyUombIBWV_0iFvyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8944.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31412 + 31412 + + Colton Jumper + Colton + Jumper + Colton + Jumper + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31412 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31147 + 31147 + + Christian Sam + Christian + Sam + Christian + Sam + + IR + Injured Reserve + undisclosed + nfl.p.31147 + nfl.t.17 + New England Patriots + NE + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/WtLZqELIs8PEIlVEb.1DKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31147.png + small + + https://s.yimg.com/iu/api/res/1.2/WtLZqELIs8PEIlVEb.1DKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31147.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29111 + 29111 + + Tyrell Adams + Tyrell + Adams + Tyrell + Adams + + undisclosed + nfl.p.29111 + nfl.t.34 + Houston Texans + Hou + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/fzRmWE.Zck05nJSsd6lmkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29111.png + small + + https://s.yimg.com/iu/api/res/1.2/fzRmWE.Zck05nJSsd6lmkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29111.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 1 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30030 + 30030 + + Jeff Overbaugh + Jeff + Overbaugh + Jeff + Overbaugh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30030 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31430 + 31430 + + Parris Bennett + Parris + Bennett + Parris + Bennett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31430 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8370 + 8370 + + Zak DeOssie + Zak + DeOssie + Zak + DeOssie + + nfl.p.8370 + nfl.t.19 + New York Giants + NYG + + 9 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/DaXA45bcylpBr.z35DCKLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8370.png + small + + https://s.yimg.com/iu/api/res/1.2/DaXA45bcylpBr.z35DCKLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8370.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 3 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28720 + 28720 + + Zaire Anderson + Zaire + Anderson + Zaire + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28720 + nfl.t.7 + Denver Broncos + Den + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/KSHp1IB0bgsXEWib5g_z9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28720.png + small + + https://s.yimg.com/iu/api/res/1.2/KSHp1IB0bgsXEWib5g_z9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28720.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30783 + 30783 + + Kennan Gilchrist + Kennan + Gilchrist + Kennan + Gilchrist + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30783 + nfl.t.34 + Houston Texans + Hou + + 10 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/UuMTOI_KavaUX9ZMe9Ov7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30783.png + small + + https://s.yimg.com/iu/api/res/1.2/UuMTOI_KavaUX9ZMe9Ov7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30783.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24949 + 24949 + + Chris Carter + Chris + Carter + Chris + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24949 + nfl.t.28 + Washington Redskins + Was + + 4 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/bYn17XtA_3pZk8TUCH8vOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24949.1.png + small + + https://s.yimg.com/iu/api/res/1.2/bYn17XtA_3pZk8TUCH8vOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24949.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30347 + 30347 + + Ejuan Price + Ejuan + Price + Ejuan + Price + + nfl.p.30347 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/96ik94eS_NyPlHYzdlfCUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30347.png + small + + https://s.yimg.com/iu/api/res/1.2/96ik94eS_NyPlHYzdlfCUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30347.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31272 + 31272 + + Andrew Motuapuaka + Andrew + Motuapuaka + Andrew + Motuapuaka + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31272 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/wY59SrmbuYTpl6asGPOmuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31272.png + small + + https://s.yimg.com/iu/api/res/1.2/wY59SrmbuYTpl6asGPOmuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31272.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28529 + 28529 + + Martrell Spaight + Martrell + Spaight + Martrell + Spaight + + nfl.p.28529 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/3PYO9GXFPsJDpoj0EItf5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28529.png + small + + https://s.yimg.com/iu/api/res/1.2/3PYO9GXFPsJDpoj0EItf5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28529.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25688 + 25688 + + Michael Wilhoite + Michael + Wilhoite + Michael + Wilhoite + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25688 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/SJmin0yAee2.8yi1fgMFvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25688.png + small + + https://s.yimg.com/iu/api/res/1.2/SJmin0yAee2.8yi1fgMFvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25688.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30500 + 30500 + + Mike Moore + Mike + Moore + Mike + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30500 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28902 + 28902 + + Tony Washington + Tony + Washington + Tony + Washington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28902 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/9TbpK_eNVillm3EU46oz6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28902.1.png + small + + https://s.yimg.com/iu/api/res/1.2/9TbpK_eNVillm3EU46oz6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28902.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26979 + 26979 + + Carson Tinker + Carson + Tinker + Carson + Tinker + + IR + Injured Reserve + knee + nfl.p.26979 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lkFphUtbhRxRIekez0Jycw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/26979.png + small + + https://s.yimg.com/iu/api/res/1.2/lkFphUtbhRxRIekez0Jycw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/26979.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31246 + 31246 + + Mason McKenrick + Mason + McKenrick + Mason + McKenrick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31246 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31201 + 31201 + + Travin Howard + Travin + Howard + Travin + Howard + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31201 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/x9Vim2dPPwHff5TQiuaxIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31201.png + small + + https://s.yimg.com/iu/api/res/1.2/x9Vim2dPPwHff5TQiuaxIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31201.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30417 + 30417 + + Sae Tautu + Sae + Tautu + Sae + Tautu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30417 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28900 + 28900 + + Carlos Thompson + Carlos + Thompson + Carlos + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28900 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/5MK2ogISZ_db9hgnjmmouQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28900.1.png + small + + https://s.yimg.com/iu/api/res/1.2/5MK2ogISZ_db9hgnjmmouQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28900.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31357 + 31357 + + Richard Jarvis + Richard + Jarvis + Richard + Jarvis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31357 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/O3Gl3f5qa3MqBw4TnSsppg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31357.png + small + + https://s.yimg.com/iu/api/res/1.2/O3Gl3f5qa3MqBw4TnSsppg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31357.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30294 + 30294 + + Dylan Donahue + Dylan + Donahue + Dylan + Donahue + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30294 + nfl.t.20 + New York Jets + NYJ + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/U_BQg_UA9XsPerOAPOxogQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30294.png + small + + https://s.yimg.com/iu/api/res/1.2/U_BQg_UA9XsPerOAPOxogQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30294.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30340 + 30340 + + Josh Carraway + Josh + Carraway + Josh + Carraway + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30340 + nfl.t.28 + Washington Redskins + Was + + 4 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/Z0FJ0.iRme1UmX5E2kn5Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30340.png + small + + https://s.yimg.com/iu/api/res/1.2/Z0FJ0.iRme1UmX5E2kn5Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30340.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31471 + 31471 + + Warren Long + Warren + Long + Warren + Long + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31471 + nfl.t.19 + New York Giants + NYG + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27801 + 27801 + + Brock Coyle + Brock + Coyle + Brock + Coyle + + IR + Injured Reserve + concussion + nfl.p.27801 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/l2BQpLT0BqVDo.164IO6Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27801.png + small + + https://s.yimg.com/iu/api/res/1.2/l2BQpLT0BqVDo.164IO6Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27801.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 4 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31172 + 31172 + + Jack Cichy + Jack + Cichy + Jack + Cichy + + IR + Injured Reserve + torn ACL + nfl.p.31172 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/aGDZPhX_BZAct4Z9KqBJHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31172.png + small + + https://s.yimg.com/iu/api/res/1.2/aGDZPhX_BZAct4Z9KqBJHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31172.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25796 + 25796 + + Sean Spence + Sean + Spence + Sean + Spence + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25796 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/2KgHhD9GBLWxLTjDFVwccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25796.png + small + + https://s.yimg.com/iu/api/res/1.2/2KgHhD9GBLWxLTjDFVwccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25796.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31163 + 31163 + + Chris Covington + Chris + Covington + Chris + Covington + + nfl.p.31163 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/TYOjoQED3ofRzFuLSSLzWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31163.png + small + + https://s.yimg.com/iu/api/res/1.2/TYOjoQED3ofRzFuLSSLzWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31163.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31377 + 31377 + + Jeff Holland + Jeff + Holland + Jeff + Holland + + nfl.p.31377 + nfl.t.7 + Denver Broncos + Den + + 10 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/9Lmv_XT4uBtsoh8mYp9cWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31377.png + small + + https://s.yimg.com/iu/api/res/1.2/9Lmv_XT4uBtsoh8mYp9cWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31377.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28707 + 28707 + + Jonathan Anderson + Jonathan + Anderson + Jonathan + Anderson + + undisclosed + nfl.p.28707 + nfl.t.19 + New York Giants + NYG + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/KYeMhU.WqbAW1Nxodtrzcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28707.png + small + + https://s.yimg.com/iu/api/res/1.2/KYeMhU.WqbAW1Nxodtrzcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28707.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24890 + 24890 + + Sam Acho + Sam + Acho + Sam + Acho + + IR + Injured Reserve + torn pectoral muscle + nfl.p.24890 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/FLBk7ULeeCdPQfK5DlOYBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24890.png + small + + https://s.yimg.com/iu/api/res/1.2/FLBk7ULeeCdPQfK5DlOYBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24890.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28620 + 28620 + + Edmond Robinson + Edmond + Robinson + Edmond + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28620 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/JunI1GMQyT0RlNmDjRyXdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28620.1.png + small + + https://s.yimg.com/iu/api/res/1.2/JunI1GMQyT0RlNmDjRyXdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28620.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24028 + 24028 + + Jermaine Cunningham + Jermaine + Cunningham + Jermaine + Cunningham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24028 + nfl.t.20 + New York Jets + NYJ + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/0Qz5jjhFeoK_92JsJWMdcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/24028.png + small + + https://s.yimg.com/iu/api/res/1.2/0Qz5jjhFeoK_92JsJWMdcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/24028.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25980 + 25980 + + Steven Johnson + Steven + Johnson + Steven + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25980 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/rqEPdFNFZaqf12vHo3wexQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/25980.png + small + + https://s.yimg.com/iu/api/res/1.2/rqEPdFNFZaqf12vHo3wexQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/25980.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31533 + 31533 + + Cayson Collins + Cayson + Collins + Cayson + Collins + + nfl.p.31533 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9803 + 9803 + + Matt Overton + Matt + Overton + Matt + Overton + + nfl.p.9803 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/eGGHkI0VamPHHdIzBsudNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9803.1.png + small + + https://s.yimg.com/iu/api/res/1.2/eGGHkI0VamPHHdIzBsudNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9803.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25697 + 25697 + + Jerrell Freeman + Jerrell + Freeman + Jerrell + Freeman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25697 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/WqlxGveV.etPIr2NYqXXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/25697.png + small + + https://s.yimg.com/iu/api/res/1.2/WqlxGveV.etPIr2NYqXXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/25697.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31708 + 31708 + + Robert Spillane + Robert + Spillane + Robert + Spillane + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.31708 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31398 + 31398 + + Jerod Fernandez + Jerod + Fernandez + Jerod + Fernandez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31398 + nfl.t.28 + Washington Redskins + Was + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/dqY0dnbYRZliCH8_AMO6qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31398.png + small + + https://s.yimg.com/iu/api/res/1.2/dqY0dnbYRZliCH8_AMO6qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31398.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28565 + 28565 + + Deiontrez Mount + Deiontrez + Mount + Deiontrez + Mount + + IR + Injured Reserve + undisclosed + nfl.p.28565 + nfl.t.7 + Denver Broncos + Den + + 10 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/z6pNG.434CXxoE1sprHusQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28565.png + small + + https://s.yimg.com/iu/api/res/1.2/z6pNG.434CXxoE1sprHusQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28565.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26836 + 26836 + + Michael Mauti + Michael + Mauti + Michael + Mauti + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26836 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/7f9_IG9Ty0_miF11Ar9UcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26836.png + small + + https://s.yimg.com/iu/api/res/1.2/7f9_IG9Ty0_miF11Ar9UcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26836.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31484 + 31484 + + Olasunkanmi Adeniyi + Olasunkanmi + Adeniyi + Olasunkanmi + Adeniyi + + hamstring + nfl.p.31484 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 92 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30556 + 30556 + + Jimmie Gilbert + Jimmie + Gilbert + Jimmie + Gilbert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30556 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/f7f12sDFMzCR0Tu3CiyxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30556.png + small + + https://s.yimg.com/iu/api/res/1.2/f7f12sDFMzCR0Tu3CiyxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30556.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25549 + 25549 + + Jake McQuaide + Jake + McQuaide + Jake + McQuaide + + nfl.p.25549 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/YZez6OjnyEpoSOW0kpyEqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/25549.png + small + + https://s.yimg.com/iu/api/res/1.2/YZez6OjnyEpoSOW0kpyEqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/25549.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31317 + 31317 + + Matthew Oplinger + Matthew + Oplinger + Matthew + Oplinger + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31317 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/HxX_qsu_ohNt0snPOpBu.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31317.1.png + small + + https://s.yimg.com/iu/api/res/1.2/HxX_qsu_ohNt0snPOpBu.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31317.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30573 + 30573 + + Connor Harris + Connor + Harris + Connor + Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30573 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31504 + 31504 + + Anthony Wint + Anthony + Wint + Anthony + Wint + + nfl.p.31504 + nfl.t.20 + New York Jets + NYJ + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.7455 + 7455 + + Jon Condo + Jon + Condo + Jon + Condo + + nfl.p.7455 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/iDxR1JicLZkaYmLgef2HZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7455.png + small + + https://s.yimg.com/iu/api/res/1.2/iDxR1JicLZkaYmLgef2HZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7455.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31638 + 31638 + + Chad Meredith + Chad + Meredith + Chad + Meredith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31638 + nfl.t.8 + Detroit Lions + Det + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8302 + 8302 + + Justin Durant + Justin + Durant + Justin + Durant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8302 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/9yB1OsJ83mEMDPVgdabUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/8302.png + small + + https://s.yimg.com/iu/api/res/1.2/9yB1OsJ83mEMDPVgdabUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/8302.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30539 + 30539 + + B.J. Bello + B.J. + Bello + B.J. + Bello + + nfl.p.30539 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/62tEHvlCnmQ2QheQBA0eQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30539.png + small + + https://s.yimg.com/iu/api/res/1.2/62tEHvlCnmQ2QheQBA0eQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30539.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31744 + 31744 + + DeMarquis Gates + DeMarquis + Gates + DeMarquis + Gates + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31744 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24019 + 24019 + + Lamarr Houston + Lamarr + Houston + Lamarr + Houston + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24019 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/8oEI03NgGEL4L3R2QGa.RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/24019.png + small + + https://s.yimg.com/iu/api/res/1.2/8oEI03NgGEL4L3R2QGa.RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/24019.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7512 + 7512 + + L.P. Ladouceur + L.P. + Ladouceur + L.P. + Ladouceur + + nfl.p.7512 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/tdluPhTCMRvacZ9rqVbPyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/7512.png + small + + https://s.yimg.com/iu/api/res/1.2/tdluPhTCMRvacZ9rqVbPyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/7512.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30954 + 30954 + + Christian Kuntz + Christian + Kuntz + Christian + Kuntz + + nfl.p.30954 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/WVQ9yWsfwe0PPNi3RPqf3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30954.png + small + + https://s.yimg.com/iu/api/res/1.2/WVQ9yWsfwe0PPNi3RPqf3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30954.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30622 + 30622 + + Donald Payne + Donald + Payne + Donald + Payne + + MCL sprain + nfl.p.30622 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/8EN3tYYFPQJ0YPEXiXAs0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30622.png + small + + https://s.yimg.com/iu/api/res/1.2/8EN3tYYFPQJ0YPEXiXAs0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30622.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29484 + 29484 + + Scooby Wright III + Scooby + Wright III + Scooby + Wright III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29484 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/8uBWvH.uFSELrCMB.LUQKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29484.png + small + + https://s.yimg.com/iu/api/res/1.2/8uBWvH.uFSELrCMB.LUQKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29484.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8006 + 8006 + + Ahmad Brooks + Ahmad + Brooks + Ahmad + Brooks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8006 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/XdPjxsKHu7wRbN8yw.6s0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8006.png + small + + https://s.yimg.com/iu/api/res/1.2/XdPjxsKHu7wRbN8yw.6s0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8006.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30514 + 30514 + + Bam Bradley + Bam + Bradley + Bam + Bradley + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30514 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/GhB9Q1Nuwjoq1OSWgbUlaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30514.png + small + + https://s.yimg.com/iu/api/res/1.2/GhB9Q1Nuwjoq1OSWgbUlaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30514.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31372 + 31372 + + Skai Moore + Skai + Moore + Skai + Moore + + IR + Injured Reserve + neck + nfl.p.31372 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/8_xj6DnUJlp_R40KMWKLVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31372.png + small + + https://s.yimg.com/iu/api/res/1.2/8_xj6DnUJlp_R40KMWKLVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31372.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 4 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27761 + 27761 + + Trevor Reilly + Trevor + Reilly + Trevor + Reilly + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27761 + nfl.t.17 + New England Patriots + NE + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/RqwttVx3vqntNqWZfPrGsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27761.1.png + small + + https://s.yimg.com/iu/api/res/1.2/RqwttVx3vqntNqWZfPrGsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27761.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27179 + 27179 + + Josh Martin + Josh + Martin + Josh + Martin + + IR + Injured Reserve + concussion + nfl.p.27179 + nfl.t.20 + New York Jets + NYJ + + 11 + + 95 + LB + + https://s.yimg.com/iu/api/res/1.2/kW33tzLIz.iV.d6Ygc8fEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27179.png + small + + https://s.yimg.com/iu/api/res/1.2/kW33tzLIz.iV.d6Ygc8fEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27179.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29584 + 29584 + + Cassanova McKinzy + Cassanova + McKinzy + Cassanova + McKinzy + + IR + Injured Reserve + torn pectoral + nfl.p.29584 + nfl.t.28 + Washington Redskins + Was + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/ptqw1tIXkGCIuQvE024Dkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29584.png + small + + https://s.yimg.com/iu/api/res/1.2/ptqw1tIXkGCIuQvE024Dkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29584.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28528 + 28528 + + Ben Heeney + Ben + Heeney + Ben + Heeney + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28528 + nfl.t.34 + Houston Texans + Hou + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/e8cGHLZwEapil9Em1f.Usw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28528.png + small + + https://s.yimg.com/iu/api/res/1.2/e8cGHLZwEapil9Em1f.Usw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28528.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31305 + 31305 + + Chris Frey + Chris + Frey + Chris + Frey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31305 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/GFgRCPx06m33U1kP5Eu8xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31305.png + small + + https://s.yimg.com/iu/api/res/1.2/GFgRCPx06m33U1kP5Eu8xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31305.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30666 + 30666 + + Harvey Langi + Harvey + Langi + Harvey + Langi + + nfl.p.30666 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/xmuNw2K3cr7Dpta0XgvWzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30666.png + small + + https://s.yimg.com/iu/api/res/1.2/xmuNw2K3cr7Dpta0XgvWzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30666.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26168 + 26168 + + Josh Harris + Josh + Harris + Josh + Harris + + IR + Injured Reserve + undisclosed + nfl.p.26168 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/hXbT9RPjdjLutWV9XQrq2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26168.png + small + + https://s.yimg.com/iu/api/res/1.2/hXbT9RPjdjLutWV9XQrq2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26168.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31753 + 31753 + + Josh Woods + Josh + Woods + Josh + Woods + + nfl.p.31753 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30881 + 30881 + + Eric Nzeocha + Eric + Nzeocha + Eric + Nzeocha + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30881 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/o9DobglRO19LNY8osIOLcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30881.png + small + + https://s.yimg.com/iu/api/res/1.2/o9DobglRO19LNY8osIOLcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30881.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30535 + 30535 + + Garrett Sickels + Garrett + Sickels + Garrett + Sickels + + IR + Injured Reserve + undisclosed + nfl.p.30535 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/TCMksahY5aCyl0fqq4NVtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30535.png + small + + https://s.yimg.com/iu/api/res/1.2/TCMksahY5aCyl0fqq4NVtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30535.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31790 + 31790 + + Davond Dade + Davond + Dade + Davond + Dade + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31790 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31766 + 31766 + + Ro'Derrick Hoskins + Ro'Derrick + Hoskins + Ro'Derrick + Hoskins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31766 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 63 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29210 + 29210 + + Derrick Mathews + Derrick + Mathews + Derrick + Mathews + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29210 + nfl.t.19 + New York Giants + NYG + + 9 + + 39 + LB + + https://s.yimg.com/iu/api/res/1.2/UteEou2GuRbLRz4KY2hLqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29210.png + small + + https://s.yimg.com/iu/api/res/1.2/UteEou2GuRbLRz4KY2hLqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29210.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9601 + 9601 + + Dannell Ellerbe + Dannell + Ellerbe + Dannell + Ellerbe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9601 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/XByQuxtsgeP4gdGhBLmMRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9601.png + small + + https://s.yimg.com/iu/api/res/1.2/XByQuxtsgeP4gdGhBLmMRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9601.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31356 + 31356 + + Emmanuel Ellerbee + Emmanuel + Ellerbee + Emmanuel + Ellerbee + + nfl.p.31356 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/QaAfi33btRvWytd8gjbikQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31356.png + small + + https://s.yimg.com/iu/api/res/1.2/QaAfi33btRvWytd8gjbikQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31356.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30470 + 30470 + + Richie Brown + Richie + Brown + Richie + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30470 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/7St5iEt.jkAWnOIB0AIInw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30470.png + small + + https://s.yimg.com/iu/api/res/1.2/7St5iEt.jkAWnOIB0AIInw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30470.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29267 + 29267 + + Kevin Dodd + Kevin + Dodd + Kevin + Dodd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29267 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/1ty1m0pOWy3Bay36iiUYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29267.png + small + + https://s.yimg.com/iu/api/res/1.2/1ty1m0pOWy3Bay36iiUYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29267.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30640 + 30640 + + Chase Allen + Chase + Allen + Chase + Allen + + IR + Injured Reserve + undisclosed + nfl.p.30640 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/vH.ie5oY8U94Yje4aLRfbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30640.png + small + + https://s.yimg.com/iu/api/res/1.2/vH.ie5oY8U94Yje4aLRfbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30640.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 0 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31435 + 31435 + + C.J. Johnson + C.J. + Johnson + C.J. + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + hamstring + nfl.p.31435 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31291 + 31291 + + Ed Shockley + Ed + Shockley + Ed + Shockley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31291 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31186 + 31186 + + Azeem Victor + Azeem + Victor + Azeem + Victor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31186 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31511 + 31511 + + Brett Taylor + Brett + Taylor + Brett + Taylor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31511 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28070 + 28070 + + Shayne Skov + Shayne + Skov + Shayne + Skov + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28070 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/.WakHlkK3396gcqb83ULOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28070.png + small + + https://s.yimg.com/iu/api/res/1.2/.WakHlkK3396gcqb83ULOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28070.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26816 + 26816 + + Nate Palmer + Nate + Palmer + Nate + Palmer + + IR + Injured Reserve + leg + nfl.p.26816 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/MPW.7vXpZLg2X2DxEwDN2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26816.png + small + + https://s.yimg.com/iu/api/res/1.2/MPW.7vXpZLg2X2DxEwDN2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26816.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30700 + 30700 + + LaTroy Lewis + LaTroy + Lewis + LaTroy + Lewis + + nfl.p.30700 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/8Xz8JsRBrhC0Bg2IUuntqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30700.png + small + + https://s.yimg.com/iu/api/res/1.2/8Xz8JsRBrhC0Bg2IUuntqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30700.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30499 + 30499 + + Jermaine Grace + Jermaine + Grace + Jermaine + Grace + + undisclosed + nfl.p.30499 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/dn6JBhEpt4hP7IH6ltgDHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30499.png + small + + https://s.yimg.com/iu/api/res/1.2/dn6JBhEpt4hP7IH6ltgDHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30499.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31566 + 31566 + + Chris Worley + Chris + Worley + Chris + Worley + + nfl.p.31566 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31472 + 31472 + + Jake Pugh + Jake + Pugh + Jake + Pugh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31472 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31245 + 31245 + + Alvin Jones + Alvin + Jones + Alvin + Jones + + undisclosed + nfl.p.31245 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/Awfwe._DsD.Jp.f7T5eFoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/31245.png + small + + https://s.yimg.com/iu/api/res/1.2/Awfwe._DsD.Jp.f7T5eFoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/31245.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31661 + 31661 + + Nyles Morgan + Nyles + Morgan + Nyles + Morgan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31661 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31354 + 31354 + + Emmanuel Smith + Emmanuel + Smith + Emmanuel + Smith + + nfl.p.31354 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/tcEOLFXCRAPIuMPeAOB1oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31354.png + small + + https://s.yimg.com/iu/api/res/1.2/tcEOLFXCRAPIuMPeAOB1oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31354.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29818 + 29818 + + Steve Longa + Steve + Longa + Steve + Longa + + IR + Injured Reserve + torn ACL + nfl.p.29818 + nfl.t.8 + Detroit Lions + Det + + 6 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/VwUZKM5G9p79rGML2jiCpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29818.png + small + + https://s.yimg.com/iu/api/res/1.2/VwUZKM5G9p79rGML2jiCpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29818.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28597 + 28597 + + Obum Gwacham + Obum + Gwacham + Obum + Gwacham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28597 + nfl.t.20 + New York Jets + NYJ + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/sqY4vlnZRDvQXFMBKp7yKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28597.png + small + + https://s.yimg.com/iu/api/res/1.2/sqY4vlnZRDvQXFMBKp7yKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28597.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23994 + 23994 + + Sean Weatherspoon + Sean + Weatherspoon + Sean + Weatherspoon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.23994 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/urnYcuh1w70ShVA9khirxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23994.png + small + + https://s.yimg.com/iu/api/res/1.2/urnYcuh1w70ShVA9khirxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23994.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31195 + 31195 + + Devante Downs + Devante + Downs + Devante + Downs + + nfl.p.31195 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/H018Jm5MLiUhMSjTuod.cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31195.png + small + + https://s.yimg.com/iu/api/res/1.2/H018Jm5MLiUhMSjTuod.cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31195.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31355 + 31355 + + Anthony Winbush + Anthony + Winbush + Anthony + Winbush + + nfl.p.31355 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/zY5LYPF848iotk_NhlEuDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31355.png + small + + https://s.yimg.com/iu/api/res/1.2/zY5LYPF848iotk_NhlEuDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31355.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29955 + 29955 + + James Cowser + James + Cowser + James + Cowser + + nfl.p.29955 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/i0kBura9Xo0T594fVOz7Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29955.png + small + + https://s.yimg.com/iu/api/res/1.2/i0kBura9Xo0T594fVOz7Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29955.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28809 + 28809 + + Gabe Martin + Gabe + Martin + Gabe + Martin + + IR + Injured Reserve + undisclosed + nfl.p.28809 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/4.xFaDcvVvIieymyt.xrrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28809.png + small + + https://s.yimg.com/iu/api/res/1.2/4.xFaDcvVvIieymyt.xrrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28809.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31540 + 31540 + + Mike McCray + Mike + McCray + Mike + McCray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31540 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30815 + 30815 + + Jerrol Garcia-Williams + Jerrol + Garcia-Williams + Jerrol + Garcia-Williams + + IR + Injured Reserve + knee + nfl.p.30815 + nfl.t.7 + Denver Broncos + Den + + 10 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/TZM7ZfujxS.wFy4F0efvrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30815.png + small + + https://s.yimg.com/iu/api/res/1.2/TZM7ZfujxS.wFy4F0efvrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30815.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25519 + 25519 + + Bryan Braman + Bryan + Braman + Bryan + Braman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25519 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/EoJRvpTWirfof.bi0jey5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25519.png + small + + https://s.yimg.com/iu/api/res/1.2/EoJRvpTWirfof.bi0jey5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25519.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29473 + 29473 + + Trevor Bates + Trevor + Bates + Trevor + Bates + + ankle + nfl.p.29473 + nfl.t.8 + Detroit Lions + Det + + 6 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/9UoTxVpiU.2efsAyrEvJvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29473.png + small + + https://s.yimg.com/iu/api/res/1.2/9UoTxVpiU.2efsAyrEvJvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29473.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 1 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25829 + 25829 + + Keenan Robinson + Keenan + Robinson + Keenan + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25829 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/RRMBbuTFKLN3V7bdmPLdXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/25829.png + small + + https://s.yimg.com/iu/api/res/1.2/RRMBbuTFKLN3V7bdmPLdXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/25829.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30638 + 30638 + + Xavier Woodson-Luster + Xavier + Woodson-Luster + Xavier + Woodson-Luster + + nfl.p.30638 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/nULMVQ7KceIQv9NjwE3hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30638.png + small + + https://s.yimg.com/iu/api/res/1.2/nULMVQ7KceIQv9NjwE3hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30638.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30489 + 30489 + + Tre'von Johnson + Tre'von + Johnson + Tre'von + Johnson + + nfl.p.30489 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/Dw017hxAhWEvDCpZaLga.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30489.png + small + + https://s.yimg.com/iu/api/res/1.2/Dw017hxAhWEvDCpZaLga.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30489.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29713 + 29713 + + Brandon Chubb + Brandon + Chubb + Brandon + Chubb + + nfl.p.29713 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/9HXO7mL4ULvCNCtY.4Ie8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29713.png + small + + https://s.yimg.com/iu/api/res/1.2/9HXO7mL4ULvCNCtY.4Ie8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29713.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28788 + 28788 + + Josh Keyes + Josh + Keyes + Josh + Keyes + + nfl.p.28788 + nfl.t.34 + Houston Texans + Hou + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/LAxzO2nX1LeTzJpygKQpCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28788.png + small + + https://s.yimg.com/iu/api/res/1.2/LAxzO2nX1LeTzJpygKQpCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28788.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 3 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28006 + 28006 + + Deontae Skinner + Deontae + Skinner + Deontae + Skinner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28006 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/QOdE84fLLerFm8N0bmIHxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28006.png + small + + https://s.yimg.com/iu/api/res/1.2/QOdE84fLLerFm8N0bmIHxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28006.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31410 + 31410 + + Tegray Scales + Tegray + Scales + Tegray + Scales + + nfl.p.31410 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/HRhc8WINmLoGHcg7_8n4VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31410.png + small + + https://s.yimg.com/iu/api/res/1.2/HRhc8WINmLoGHcg7_8n4VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31410.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30803 + 30803 + + Gimel President + Gimel + President + Gimel + President + + undisclosed + nfl.p.30803 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/SavpNexq3iGk_RyS6WfOnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30803.png + small + + https://s.yimg.com/iu/api/res/1.2/SavpNexq3iGk_RyS6WfOnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30803.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29231 + 29231 + + Drew Ferris + Drew + Ferris + Drew + Ferris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29231 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/iBes1.gb3WoP8P7Snxp3VA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29231.png + small + + https://s.yimg.com/iu/api/res/1.2/iBes1.gb3WoP8P7Snxp3VA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29231.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24405 + 24405 + + Junior Galette + Junior + Galette + Junior + Galette + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24405 + nfl.t.28 + Washington Redskins + Was + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/0H4U1iuEmYpSEyoJ330jlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24405.png + small + + https://s.yimg.com/iu/api/res/1.2/0H4U1iuEmYpSEyoJ330jlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24405.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28439 + 28439 + + Nate Orchard + Nate + Orchard + Nate + Orchard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28439 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 54 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/qZ4RbhnDaHmRLNRVDLwVkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28439.png + small + + https://s.yimg.com/iu/api/res/1.2/qZ4RbhnDaHmRLNRVDLwVkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28439.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30856 + 30856 + + Darnell Leslie + Darnell + Leslie + Darnell + Leslie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30856 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/6UVmX6Yit1Ertopj27JHJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30856.png + small + + https://s.yimg.com/iu/api/res/1.2/6UVmX6Yit1Ertopj27JHJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30856.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30190 + 30190 + + Daeshon Hall + Daeshon + Hall + Daeshon + Hall + + nfl.p.30190 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 74 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/_f.oH1n2D46A8BlK5.PrjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30190.png + small + + https://s.yimg.com/iu/api/res/1.2/_f.oH1n2D46A8BlK5.PrjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30190.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7875 + 7875 + + Elvis Dumervil + Elvis + Dumervil + Elvis + Dumervil + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7875 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 58 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/435xJrXxfTgf5xZTw4N02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7875.png + small + + https://s.yimg.com/iu/api/res/1.2/435xJrXxfTgf5xZTw4N02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7875.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29474 + 29474 + + Alex McCalister + Alex + McCalister + Alex + McCalister + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29474 + nfl.t.28 + Washington Redskins + Was + + 4 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/RahXib3bSoTG0_uy2wSlig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29474.png + small + + https://s.yimg.com/iu/api/res/1.2/RahXib3bSoTG0_uy2wSlig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29474.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31288 + 31288 + + James Hearns + James + Hearns + James + Hearns + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31288 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/8h6LSuXhO9DVppzB0cwtlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31288.png + small + + https://s.yimg.com/iu/api/res/1.2/8h6LSuXhO9DVppzB0cwtlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31288.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29437 + 29437 + + Dadi Nicolas + Dadi + Nicolas + Dadi + Nicolas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29437 + nfl.t.28 + Washington Redskins + Was + + 4 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/qYUMhyPXzXI8ahAg9.MtjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29437.png + small + + https://s.yimg.com/iu/api/res/1.2/qYUMhyPXzXI8ahAg9.MtjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29437.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29797 + 29797 + + Ufomba Kamalu + Ufomba + Kamalu + Ufomba + Kamalu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29797 + nfl.t.17 + New England Patriots + NE + + 11 + + 97 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/uLR.igtetKYHDiw6x3VWpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29797.png + small + + https://s.yimg.com/iu/api/res/1.2/uLR.igtetKYHDiw6x3VWpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29797.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26776 + 26776 + + Stansly Maponga + Stansly + Maponga + Stansly + Maponga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26776 + nfl.t.7 + Denver Broncos + Den + + 10 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/dxTGC4xAzBr.FfBZdKps4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/26776.png + small + + https://s.yimg.com/iu/api/res/1.2/dxTGC4xAzBr.FfBZdKps4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/26776.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29546 + 29546 + + Bryson Albright + Bryson + Albright + Bryson + Albright + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29546 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 54 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/EcRJ9mq_pAbAQ.tNpRegmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29546.1.png + small + + https://s.yimg.com/iu/api/res/1.2/EcRJ9mq_pAbAQ.tNpRegmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29546.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31130 + 31130 + + Ogbonnia Okoronkwo + Ogbonnia + Okoronkwo + Ogbonnia + Okoronkwo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31130 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 45 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/gUzNifHHdFMgDalcalbz7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31130.png + small + + https://s.yimg.com/iu/api/res/1.2/gUzNifHHdFMgDalcalbz7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31130.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30766 + 30766 + + Alex Barrett + Alex + Barrett + Alex + Barrett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30766 + nfl.t.8 + Detroit Lions + Det + + 6 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/kqiW10.C2UEgOIXV7f4iew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30766.png + small + + https://s.yimg.com/iu/api/res/1.2/kqiW10.C2UEgOIXV7f4iew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30766.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31523 + 31523 + + Rob McCray + Rob + McCray + Rob + McCray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31523 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 52 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31151 + 31151 + + Kylie Fitts + Kylie + Fitts + Kylie + Fitts + + nfl.p.31151 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/d3aLG792xr7lZLoLzJ7z5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31151.png + small + + https://s.yimg.com/iu/api/res/1.2/d3aLG792xr7lZLoLzJ7z5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31151.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24154 + 24154 + + Arthur Moats + Arthur + Moats + Arthur + Moats + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24154 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 93 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/IXkV8zH1JIlQ29NUtHKaTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24154.png + small + + https://s.yimg.com/iu/api/res/1.2/IXkV8zH1JIlQ29NUtHKaTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24154.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30280 + 30280 + + Avery Moss + Avery + Moss + Avery + Moss + + nfl.p.30280 + nfl.t.19 + New York Giants + NYG + + 9 + + 79 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/fSpanz0ilu0pcS4EBVu_eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30280.png + small + + https://s.yimg.com/iu/api/res/1.2/fSpanz0ilu0pcS4EBVu_eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30280.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29415 + 29415 + + Tyrone Holmes + Tyrone + Holmes + Tyrone + Holmes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29415 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/eFFsJSfaMaGWrSjs4Y_PIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29415.png + small + + https://s.yimg.com/iu/api/res/1.2/eFFsJSfaMaGWrSjs4Y_PIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29415.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28943 + 28943 + + Jordan Williams + Jordan + Williams + Jordan + Williams + + IR + Injured Reserve + undisclosed + nfl.p.28943 + nfl.t.19 + New York Giants + NYG + + 9 + + 79 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/t8hHacDj3xXekojiDRUhfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28943.png + small + + https://s.yimg.com/iu/api/res/1.2/t8hHacDj3xXekojiDRUhfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28943.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31235 + 31235 + + Hercules Mata'afa + Hercules + Mata'afa + Hercules + Mata'afa + + IR + Injured Reserve + torn ACL + nfl.p.31235 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 51 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/KVSzfQhtokS3bgF5QlZiZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31235.png + small + + https://s.yimg.com/iu/api/res/1.2/KVSzfQhtokS3bgF5QlZiZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31235.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27923 + 27923 + + Kasim Edebali + Kasim + Edebali + Kasim + Edebali + + nfl.p.27923 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 95 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/U55byectrmuZrz6gcNh3wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27923.png + small + + https://s.yimg.com/iu/api/res/1.2/U55byectrmuZrz6gcNh3wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27923.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29617 + 29617 + + Vontarrius Dora + Vontarrius + Dora + Vontarrius + Dora + + nfl.p.29617 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 54 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/VNy7WfQrD.kKJum8nZ94SA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29617.1.png + small + + https://s.yimg.com/iu/api/res/1.2/VNy7WfQrD.kKJum8nZ94SA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29617.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31266 + 31266 + + Darius Jackson + Darius + Jackson + Darius + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31266 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 66 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/wLfpM1S0mt1JvGV3lzBHXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31266.png + small + + https://s.yimg.com/iu/api/res/1.2/wLfpM1S0mt1JvGV3lzBHXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31266.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27554 + 27554 + + Marcus Smith + Marcus + Smith + Marcus + Smith + + nfl.p.27554 + nfl.t.28 + Washington Redskins + Was + + 4 + + 58 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/kA.2x2bXB9DB2uzILe2kmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27554.png + small + + https://s.yimg.com/iu/api/res/1.2/kA.2x2bXB9DB2uzILe2kmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27554.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31709 + 31709 + + Tobenna Okeke + Tobenna + Okeke + Tobenna + Okeke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31709 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 49 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31668 + 31668 + + Andrew Trumbetti + Andrew + Trumbetti + Andrew + Trumbetti + + IR + Injured Reserve + undisclosed + nfl.p.31668 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 48 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31663 + 31663 + + Elijah Norris + Elijah + Norris + Elijah + Norris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31663 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 50 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28432 + 28432 + + Hau'oli Kikaha + Hau'oli + Kikaha + Hau'oli + Kikaha + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28432 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 44 + DE + + https://s.yimg.com/iu/api/res/1.2/05CV9W.BVx2jhBfQe54cqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28432.png + small + + https://s.yimg.com/iu/api/res/1.2/05CV9W.BVx2jhBfQe54cqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28432.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31784 + 31784 + + Dante Sawyer + Dante + Sawyer + Dante + Sawyer + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31784 + nfl.t.28 + Washington Redskins + Was + + 4 + + 63 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29767 + 29767 + + Lenny Jones + Lenny + Jones + Lenny + Jones + + IR + Injured Reserve + undisclosed + nfl.p.29767 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/uoJny_Csj0XpAAOAQu0Mgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29767.png + small + + https://s.yimg.com/iu/api/res/1.2/uoJny_Csj0XpAAOAQu0Mgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29767.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9282 + 9282 + + Robert Ayers Jr. + Robert + Ayers Jr. + Robert + Ayers Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9282 + nfl.t.8 + Detroit Lions + Det + + 6 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/lQOOPyMODFDGfGaoyOsekw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9282.png + small + + https://s.yimg.com/iu/api/res/1.2/lQOOPyMODFDGfGaoyOsekw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9282.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31274 + 31274 + + Evan Perroni + Evan + Perroni + Evan + Perroni + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31274 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29488 + 29488 + + Johnny Maxey + Johnny + Maxey + Johnny + Maxey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29488 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/_GY78Te0CZMZPZqlL8SPJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29488.png + small + + https://s.yimg.com/iu/api/res/1.2/_GY78Te0CZMZPZqlL8SPJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29488.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31578 + 31578 + + Joe Ostman + Joe + Ostman + Joe + Ostman + + nfl.p.31578 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29593 + 29593 + + Channing Ward + Channing + Ward + Channing + Ward + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29593 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/4KksNY2swU8fYmy2PChECA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29593.png + small + + https://s.yimg.com/iu/api/res/1.2/4KksNY2swU8fYmy2PChECA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29593.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25761 + 25761 + + Jerel Worthy + Jerel + Worthy + Jerel + Worthy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25761 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/bcgDHNcFShMzXLRsNOW84w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25761.1.png + small + + https://s.yimg.com/iu/api/res/1.2/bcgDHNcFShMzXLRsNOW84w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25761.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31581 + 31581 + + Mason Gentry + Mason + Gentry + Mason + Gentry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31581 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30536 + 30536 + + Jhaustin Thomas + Jhaustin + Thomas + Jhaustin + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30536 + nfl.t.7 + Denver Broncos + Den + + 10 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8880 + 8880 + + William Hayes + William + Hayes + William + Hayes + + IR + Injured Reserve + torn ACL + nfl.p.8880 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/AFhBuj9P24xDS3VlceJN7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8880.png + small + + https://s.yimg.com/iu/api/res/1.2/AFhBuj9P24xDS3VlceJN7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8880.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 4 + + + 39 + 0 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29622 + 29622 + + Shaneil Jenkins + Shaneil + Jenkins + Shaneil + Jenkins + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29622 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/kenzJLW_ZZTvhsSV96nk5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29622.1.png + small + + https://s.yimg.com/iu/api/res/1.2/kenzJLW_ZZTvhsSV96nk5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29622.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31602 + 31602 + + Mat Boesen + Mat + Boesen + Mat + Boesen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31602 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 43 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31267 + 31267 + + Lyndon Johnson + Lyndon + Johnson + Lyndon + Johnson + + nfl.p.31267 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/TJgC3O6hpxgw6cX1Gndmcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31267.png + small + + https://s.yimg.com/iu/api/res/1.2/TJgC3O6hpxgw6cX1Gndmcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31267.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31098 + 31098 + + Kentavius Street + Kentavius + Street + Kentavius + Street + + O + Out + nfl.p.31098 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/ntQePxM9Kr2.tz0PZ_IWPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31098.png + small + + https://s.yimg.com/iu/api/res/1.2/ntQePxM9Kr2.tz0PZ_IWPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31098.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31702 + 31702 + + Pat Afriyie + Pat + Afriyie + Pat + Afriyie + + nfl.p.31702 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31765 + 31765 + + Kiante Anderson + Kiante + Anderson + Kiante + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31765 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 76 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8356 + 8356 + + Brian Robison + Brian + Robison + Brian + Robison + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8356 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/LVO.KNdUdmyO37vBUPoQxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8356.png + small + + https://s.yimg.com/iu/api/res/1.2/LVO.KNdUdmyO37vBUPoQxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8356.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30363 + 30363 + + Pat O'Connor + Pat + O'Connor + Pat + O'Connor + + nfl.p.30363 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 79 + DE + + https://s.yimg.com/iu/api/res/1.2/o6uV9UHm0H1YeqJ3a5JFYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30363.png + small + + https://s.yimg.com/iu/api/res/1.2/o6uV9UHm0H1YeqJ3a5JFYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30363.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30386 + 30386 + + Francis Kallon + Francis + Kallon + Francis + Kallon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30386 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/VeUFFhfXow9yHrqD0Qwayw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30386.png + small + + https://s.yimg.com/iu/api/res/1.2/VeUFFhfXow9yHrqD0Qwayw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30386.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25915 + 25915 + + Billy Winn + Billy + Winn + Billy + Winn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25915 + nfl.t.7 + Denver Broncos + Den + + 10 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/a6lZ3vQKWvaxJboHjR7M3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/25915.png + small + + https://s.yimg.com/iu/api/res/1.2/a6lZ3vQKWvaxJboHjR7M3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/25915.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28587 + 28587 + + L.T. Walton + L.T. + Walton + L.T. + Walton + + nfl.p.28587 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/1iBbO4KdZdF7NAETMiPTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28587.png + small + + https://s.yimg.com/iu/api/res/1.2/1iBbO4KdZdF7NAETMiPTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28587.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31632 + 31632 + + Quincy Redmon + Quincy + Redmon + Quincy + Redmon + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31632 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 66 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9110 + 9110 + + Leger Douzable + Leger + Douzable + Leger + Douzable + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9110 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/rLlAfLq6FKVqUvyNSxICbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9110.1.png + small + + https://s.yimg.com/iu/api/res/1.2/rLlAfLq6FKVqUvyNSxICbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9110.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26085 + 26085 + + Ryan Davis + Ryan + Davis + Ryan + Davis + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.26085 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/j62TTENTNFTbZ8iMQ6v41A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26085.1.png + small + + https://s.yimg.com/iu/api/res/1.2/j62TTENTNFTbZ8iMQ6v41A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26085.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31594 + 31594 + + Jalen Wilkerson + Jalen + Wilkerson + Jalen + Wilkerson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31594 + nfl.t.28 + Washington Redskins + Was + + 4 + + 64 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29714 + 29714 + + Morgan Fox + Morgan + Fox + Morgan + Fox + + IR + Injured Reserve + undisclosed + nfl.p.29714 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/EUeYsf_tqRhhcqxJ6RRoOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29714.png + small + + https://s.yimg.com/iu/api/res/1.2/EUeYsf_tqRhhcqxJ6RRoOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29714.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30701 + 30701 + + Ricky Ali'ifua + Ricky + Ali'ifua + Ricky + Ali'ifua + + IR + Injured Reserve + undisclosed + nfl.p.30701 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31807 + 31807 + + Eric Cotton + Eric + Cotton + Eric + Cotton + + nfl.p.31807 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27862 + 27862 + + Kerry Hyder Jr. + Kerry + Hyder Jr. + Kerry + Hyder Jr. + + illness + nfl.p.27862 + nfl.t.8 + Detroit Lions + Det + + 6 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/Ew1HH6xYzzLi4u6WFXb0pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27862.png + small + + https://s.yimg.com/iu/api/res/1.2/Ew1HH6xYzzLi4u6WFXb0pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27862.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 5 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31428 + 31428 + + Christian LaCouture + Christian + LaCouture + Christian + LaCouture + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31428 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29802 + 29802 + + Claude Pelon + Claude + Pelon + Claude + Pelon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29802 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/kzGBFxTyQwr3Wc969SZfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29802.1.png + small + + https://s.yimg.com/iu/api/res/1.2/kzGBFxTyQwr3Wc969SZfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29802.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31710 + 31710 + + Connor Flagel + Connor + Flagel + Connor + Flagel + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31710 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29856 + 29856 + + Mitchell Loewen + Mitchell + Loewen + Mitchell + Loewen + + neck + nfl.p.29856 + nfl.t.8 + Detroit Lions + Det + + 6 + + 70 + DE + + https://s.yimg.com/iu/api/res/1.2/Zt7KdMSp8XaPpXnZDRrtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29856.png + small + + https://s.yimg.com/iu/api/res/1.2/Zt7KdMSp8XaPpXnZDRrtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29856.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29794 + 29794 + + Joel Heath + Joel + Heath + Joel + Heath + + nfl.p.29794 + nfl.t.34 + Houston Texans + Hou + + 10 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/.R3OJzjDntgZ3qmvkrgOxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29794.png + small + + https://s.yimg.com/iu/api/res/1.2/.R3OJzjDntgZ3qmvkrgOxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29794.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30823 + 30823 + + Shakir Soto + Shakir + Soto + Shakir + Soto + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30823 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 64 + DE + + https://s.yimg.com/iu/api/res/1.2/cijKUGreM5Npwz6yFepJVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30823.png + small + + https://s.yimg.com/iu/api/res/1.2/cijKUGreM5Npwz6yFepJVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30823.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26811 + 26811 + + Cornelius Washington + Cornelius + Washington + Cornelius + Washington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26811 + nfl.t.8 + Detroit Lions + Det + + 6 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/E59hWkBD0l75f8mmco9HWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/26811.png + small + + https://s.yimg.com/iu/api/res/1.2/E59hWkBD0l75f8mmco9HWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/26811.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28754 + 28754 + + Tavaris Barnes + Tavaris + Barnes + Tavaris + Barnes + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28754 + nfl.t.28 + Washington Redskins + Was + + 4 + + 63 + DE + + https://s.yimg.com/iu/api/res/1.2/diT9IqHEYmy5Xgq6wyfTFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28754.png + small + + https://s.yimg.com/iu/api/res/1.2/diT9IqHEYmy5Xgq6wyfTFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28754.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8337 + 8337 + + Charles Johnson + Charles + Johnson + Charles + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8337 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/v6qJb0n76oyl5JQNTTDDCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8337.png + small + + https://s.yimg.com/iu/api/res/1.2/v6qJb0n76oyl5JQNTTDDCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8337.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24665 + 24665 + + George Johnson + George + Johnson + George + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24665 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/uHwNbIHBPYUdjZ95AbTS_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24665.png + small + + https://s.yimg.com/iu/api/res/1.2/uHwNbIHBPYUdjZ95AbTS_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24665.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30649 + 30649 + + Joby Saint Fleur + Joby + Saint Fleur + Joby + Saint Fleur + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30649 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 67 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30880 + 30880 + + Alex Jenkins + Alex + Jenkins + Alex + Jenkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30880 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29335 + 29335 + + Charles Tapper + Charles + Tapper + Charles + Tapper + + nfl.p.29335 + nfl.t.20 + New York Jets + NYJ + + 11 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/MUd9BpRI7ana4vX10SfDmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29335.png + small + + https://s.yimg.com/iu/api/res/1.2/MUd9BpRI7ana4vX10SfDmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29335.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7467 + 7467 + + John Denney + John + Denney + John + Denney + + shoulder + nfl.p.7467 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/wAEHvwpZDN2Cya1de.4Pyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/7467.png + small + + https://s.yimg.com/iu/api/res/1.2/wAEHvwpZDN2Cya1de.4Pyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/7467.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30455 + 30455 + + JT Jones + JT + Jones + JT + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30455 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/RwbpNaGcLtBuqyrTAgGNyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30455.png + small + + https://s.yimg.com/iu/api/res/1.2/RwbpNaGcLtBuqyrTAgGNyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30455.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26862 + 26862 + + David King + David + King + David + King + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26862 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/5WLlZDp..9i.gS.l1mOs6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26862.png + small + + https://s.yimg.com/iu/api/res/1.2/5WLlZDp..9i.gS.l1mOs6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26862.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30333 + 30333 + + Ifeadi Odenigbo + Ifeadi + Odenigbo + Ifeadi + Odenigbo + + nfl.p.30333 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/UmOcLbSQBQFA8GwuetjSrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30333.png + small + + https://s.yimg.com/iu/api/res/1.2/UmOcLbSQBQFA8GwuetjSrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30333.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27588 + 27588 + + Kony Ealy + Kony + Ealy + Kony + Ealy + + nfl.p.27588 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/HQYtUQFGGZxZfFv6g.VlAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27588.png + small + + https://s.yimg.com/iu/api/res/1.2/HQYtUQFGGZxZfFv6g.VlAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27588.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 0 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31307 + 31307 + + Alec James + Alec + James + Alec + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31307 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/cOeadV4ki0Xy2yjGE..6og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31307.1.png + small + + https://s.yimg.com/iu/api/res/1.2/cOeadV4ki0Xy2yjGE..6og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31307.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25947 + 25947 + + Cam Johnson + Cam + Johnson + Cam + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25947 + nfl.t.8 + Detroit Lions + Det + + 6 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/J4ZZDn0fW_MJzgvZSJ2H7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25947.png + small + + https://s.yimg.com/iu/api/res/1.2/J4ZZDn0fW_MJzgvZSJ2H7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25947.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31037 + 31037 + + Chad Thomas + Chad + Thomas + Chad + Thomas + + nfl.p.31037 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/WSqf7wLjU.oi42udjOTV1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31037.png + small + + https://s.yimg.com/iu/api/res/1.2/WSqf7wLjU.oi42udjOTV1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31037.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31678 + 31678 + + Albert Havili + Albert + Havili + Albert + Havili + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31678 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27762 + 27762 + + Terrence Fede + Terrence + Fede + Terrence + Fede + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27762 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/UHzSvy.AvMGA0i9uxYpejg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27762.png + small + + https://s.yimg.com/iu/api/res/1.2/UHzSvy.AvMGA0i9uxYpejg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27762.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31726 + 31726 + + Nick Thurman + Nick + Thurman + Nick + Thurman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31726 + nfl.t.34 + Houston Texans + Hou + + 10 + + 68 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31188 + 31188 + + Ade Aruna + Ade + Aruna + Ade + Aruna + + IR + Injured Reserve + right knee + nfl.p.31188 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/2XZAwoMS28EPRcmY7wzU_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31188.png + small + + https://s.yimg.com/iu/api/res/1.2/2XZAwoMS28EPRcmY7wzU_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31188.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31243 + 31243 + + Jonathan Wynn + Jonathan + Wynn + Jonathan + Wynn + + nfl.p.31243 + nfl.t.8 + Detroit Lions + Det + + 6 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/j5wf7v9EOnuiy7eJbIFS7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31243.png + small + + https://s.yimg.com/iu/api/res/1.2/j5wf7v9EOnuiy7eJbIFS7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31243.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31666 + 31666 + + Bunmi Rotimi + Bunmi + Rotimi + Bunmi + Rotimi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31666 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 74 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30427 + 30427 + + Tashawn Bower + Tashawn + Bower + Tashawn + Bower + + ankle + nfl.p.30427 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/Y5P85Z0RD3UbZSY34KmAsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30427.png + small + + https://s.yimg.com/iu/api/res/1.2/Y5P85Z0RD3UbZSY34KmAsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30427.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 4 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.26649 + 26649 + + Datone Jones + Datone + Jones + Datone + Jones + + IR + Injured Reserve + knee + nfl.p.26649 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/4.yaA1wAy68Lpyiaj_dKjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26649.png + small + + https://s.yimg.com/iu/api/res/1.2/4.yaA1wAy68Lpyiaj_dKjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26649.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31605 + 31605 + + Mike Love + Mike + Love + Mike + Love + + nfl.p.31605 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 0 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25510 + 25510 + + Justin Trattou + Justin + Trattou + Justin + Trattou + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25510 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/xy8BJ3OI2nrbnX0Wri2uyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25510.png + small + + https://s.yimg.com/iu/api/res/1.2/xy8BJ3OI2nrbnX0Wri2uyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25510.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30778 + 30778 + + Jeremiah Valoaga + Jeremiah + Valoaga + Jeremiah + Valoaga + + nfl.p.30778 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/sgXHr2zlXhtfqiGcdlgyFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30778.png + small + + https://s.yimg.com/iu/api/res/1.2/sgXHr2zlXhtfqiGcdlgyFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30778.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31101 + 31101 + + Josh Sweat + Josh + Sweat + Josh + Sweat + + IR + Injured Reserve + ankle + nfl.p.31101 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/bQUC6MBT5A.U2SwpiW7Dng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31101.png + small + + https://s.yimg.com/iu/api/res/1.2/bQUC6MBT5A.U2SwpiW7Dng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31101.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31353 + 31353 + + Mackendy Cheridor + Mackendy + Cheridor + Mackendy + Cheridor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31353 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/S6sQtd3DHTTDdP900tpa4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31353.png + small + + https://s.yimg.com/iu/api/res/1.2/S6sQtd3DHTTDdP900tpa4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31353.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31507 + 31507 + + Myles Humphrey + Myles + Humphrey + Myles + Humphrey + + nfl.p.31507 + nfl.t.19 + New York Giants + NYG + + 9 + + 47 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26300 + 26300 + + Jacquies Smith + Jacquies + Smith + Jacquies + Smith + + IR + Injured Reserve + Achilles + nfl.p.26300 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/FmO9YZP0RN3wmHLY2i0pUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26300.png + small + + https://s.yimg.com/iu/api/res/1.2/FmO9YZP0RN3wmHLY2i0pUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26300.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 1 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31442 + 31442 + + Conor Sheehy + Conor + Sheehy + Conor + Sheehy + + nfl.p.31442 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 67 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31735 + 31735 + + Brian Womac + Brian + Womac + Brian + Womac + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31735 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 62 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29029 + 29029 + + Cap Capi + Cap + Capi + Cap + Capi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29029 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/wCn582o_W_7YGXYsKRfpvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29029.png + small + + https://s.yimg.com/iu/api/res/1.2/wCn582o_W_7YGXYsKRfpvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29029.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31286 + 31286 + + Austin Larkin + Austin + Larkin + Austin + Larkin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31286 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 65 + DE + + https://s.yimg.com/iu/api/res/1.2/ClAadZapbejyVnIeUS08xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31286.png + small + + https://s.yimg.com/iu/api/res/1.2/ClAadZapbejyVnIeUS08xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31286.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28242 + 28242 + + Chris McCain + Chris + McCain + Chris + McCain + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28242 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 76 + DE + + https://s.yimg.com/iu/api/res/1.2/3DFHXhomL_Lp6Y9gz1sJhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28242.png + small + + https://s.yimg.com/iu/api/res/1.2/3DFHXhomL_Lp6Y9gz1sJhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28242.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28233 + 28233 + + Julius Warmsley + Julius + Warmsley + Julius + Warmsley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28233 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/NgSUBlMv09qkUTs74u..Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28233.png + small + + https://s.yimg.com/iu/api/res/1.2/NgSUBlMv09qkUTs74u..Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28233.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28462 + 28462 + + Owamagbe Odighizuwa + Owamagbe + Odighizuwa + Owamagbe + Odighizuwa + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28462 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/a8aC2E.s_YkR_JDrW0gw0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28462.png + small + + https://s.yimg.com/iu/api/res/1.2/a8aC2E.s_YkR_JDrW0gw0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28462.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30969 + 30969 + + Moubarak Djeri + Moubarak + Djeri + Moubarak + Djeri + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30969 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 61 + DE + + https://s.yimg.com/iu/api/res/1.2/3VU4iOfXVylBN2dMeplLtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30969.1.png + small + + https://s.yimg.com/iu/api/res/1.2/3VU4iOfXVylBN2dMeplLtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30969.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31565 + 31565 + + Ja'Von Rolland-Jones + Ja'Von + Rolland-Jones + Ja'Von + Rolland-Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31565 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 51 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28784 + 28784 + + Ryan Delaire + Ryan + Delaire + Ryan + Delaire + + nfl.p.28784 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/_UAPGETPxrBfOWJPo5Fweg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28784.png + small + + https://s.yimg.com/iu/api/res/1.2/_UAPGETPxrBfOWJPo5Fweg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28784.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28928 + 28928 + + Lavon Hooks + Lavon + Hooks + Lavon + Hooks + + nfl.p.28928 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/oC1ZhLsr8sYmDOHHt2eKbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28928.png + small + + https://s.yimg.com/iu/api/res/1.2/oC1ZhLsr8sYmDOHHt2eKbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28928.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29304 + 29304 + + Bronson Kaufusi + Bronson + Kaufusi + Bronson + Kaufusi + + nfl.p.29304 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/W7_MkFzqRwRWUsw_eEDqfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29304.png + small + + https://s.yimg.com/iu/api/res/1.2/W7_MkFzqRwRWUsw_eEDqfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29304.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28484 + 28484 + + Xavier Cooper + Xavier + Cooper + Xavier + Cooper + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28484 + nfl.t.20 + New York Jets + NYJ + + 11 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/zJECA57S8C5wBhGD1VLKHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28484.png + small + + https://s.yimg.com/iu/api/res/1.2/zJECA57S8C5wBhGD1VLKHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28484.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31473 + 31473 + + Marcell Frazier + Marcell + Frazier + Marcell + Frazier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31473 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26704 + 26704 + + Damontre' Moore + Damontre' + Moore + Damontre' + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26704 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/ljuOVyXDS9qiBw._Nd2b8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26704.png + small + + https://s.yimg.com/iu/api/res/1.2/ljuOVyXDS9qiBw._Nd2b8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26704.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28485 + 28485 + + Geneo Grissom + Geneo + Grissom + Geneo + Grissom + + ankle + nfl.p.28485 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/2x_RL3WHEjMYbmHgERAmvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28485.png + small + + https://s.yimg.com/iu/api/res/1.2/2x_RL3WHEjMYbmHgERAmvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28485.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30948 + 30948 + + Whitney Richardson + Whitney + Richardson + Whitney + Richardson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30948 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/zz.cVNinyzAgBKeyV7bKUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30948.png + small + + https://s.yimg.com/iu/api/res/1.2/zz.cVNinyzAgBKeyV7bKUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30948.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30645 + 30645 + + Praise Martin-Oguike + Praise + Martin-Oguike + Praise + Martin-Oguike + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30645 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 51 + DE + + https://s.yimg.com/iu/api/res/1.2/wSHKaozAiArddRZeBYfOkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30645.1.png + small + + https://s.yimg.com/iu/api/res/1.2/wSHKaozAiArddRZeBYfOkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30645.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30405 + 30405 + + Carroll Phillips + Carroll + Phillips + Carroll + Phillips + + IR + Injured Reserve + groin + nfl.p.30405 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/1nxDMYtyWxw5Vy15GDTZFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30405.png + small + + https://s.yimg.com/iu/api/res/1.2/1nxDMYtyWxw5Vy15GDTZFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30405.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 2 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30255 + 30255 + + Carlos Watkins + Carlos + Watkins + Carlos + Watkins + + nfl.p.30255 + nfl.t.34 + Houston Texans + Hou + + 10 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/wxpBlM9hR9xf8YzLaHQ6kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30255.png + small + + https://s.yimg.com/iu/api/res/1.2/wxpBlM9hR9xf8YzLaHQ6kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30255.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 2 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31256 + 31256 + + Demone Harris + Demone + Harris + Demone + Harris + + nfl.p.31256 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 71 + DE + + https://s.yimg.com/iu/api/res/1.2/Z.fl8Q0OCiwYnUgBP99F.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31256.png + small + + https://s.yimg.com/iu/api/res/1.2/Z.fl8Q0OCiwYnUgBP99F.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31256.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30921 + 30921 + + Jeremy Faulk + Jeremy + Faulk + Jeremy + Faulk + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30921 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/dQ_Bkm4y3VVF1AnY6LNhVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30921.png + small + + https://s.yimg.com/iu/api/res/1.2/dQ_Bkm4y3VVF1AnY6LNhVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30921.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29696 + 29696 + + Anthony Lanier + Anthony + Lanier + Anthony + Lanier + + nfl.p.29696 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/d6EQSQ_AO7GsOgEbopEcaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29696.png + small + + https://s.yimg.com/iu/api/res/1.2/d6EQSQ_AO7GsOgEbopEcaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29696.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8869 + 8869 + + Cliff Avril + Cliff + Avril + Cliff + Avril + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8869 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/kekljEgSH6_6AQlUZcjm_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8869.png + small + + https://s.yimg.com/iu/api/res/1.2/kekljEgSH6_6AQlUZcjm_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8869.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28551 + 28551 + + Ryan Russell + Ryan + Russell + Ryan + Russell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28551 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 59 + DE + + https://s.yimg.com/iu/api/res/1.2/Eh.KPt.R5aF53Nw2IFNTZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28551.png + small + + https://s.yimg.com/iu/api/res/1.2/Eh.KPt.R5aF53Nw2IFNTZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28551.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24817 + 24817 + + Muhammad Wilkerson + Muhammad + Wilkerson + Muhammad + Wilkerson + + IR + Injured Reserve + ankle + nfl.p.24817 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/agzXpZ1HtFUuEOWrmQtDHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/24817.png + small + + https://s.yimg.com/iu/api/res/1.2/agzXpZ1HtFUuEOWrmQtDHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/24817.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31570 + 31570 + + Danny Ezechukwu + Danny + Ezechukwu + Danny + Ezechukwu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31570 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 63 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30804 + 30804 + + Matthew Godin + Matthew + Godin + Matthew + Godin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30804 + nfl.t.34 + Houston Texans + Hou + + 10 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26840 + 26840 + + Armonty Bryant + Armonty + Bryant + Armonty + Bryant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26840 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/F5ft5Sn_Qix5QKS.fCx3cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26840.1.png + small + + https://s.yimg.com/iu/api/res/1.2/F5ft5Sn_Qix5QKS.fCx3cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26840.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30164 + 30164 + + DeMarcus Walker + DeMarcus + Walker + DeMarcus + Walker + + nfl.p.30164 + nfl.t.7 + Denver Broncos + Den + + 10 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/x3P_avCsj8eHsj8AbsIhXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30164.png + small + + https://s.yimg.com/iu/api/res/1.2/x3P_avCsj8eHsj8AbsIhXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30164.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25759 + 25759 + + Kendall Reyes + Kendall + Reyes + Kendall + Reyes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25759 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/rLiJTP.iQjD_9x5wo5Ad7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25759.png + small + + https://s.yimg.com/iu/api/res/1.2/rLiJTP.iQjD_9x5wo5Ad7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25759.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31106 + 31106 + + Marquis Haynes + Marquis + Haynes + Marquis + Haynes + + illness + nfl.p.31106 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/A1SZj0MZWLnZJ.Y0iTKAgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31106.png + small + + https://s.yimg.com/iu/api/res/1.2/A1SZj0MZWLnZJ.Y0iTKAgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31106.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 1 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30393 + 30393 + + Hunter Dimick + Hunter + Dimick + Hunter + Dimick + + nfl.p.30393 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 79 + DE + + https://s.yimg.com/iu/api/res/1.2/p6dP9FpjYBDqvmYvBXpLtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30393.png + small + + https://s.yimg.com/iu/api/res/1.2/p6dP9FpjYBDqvmYvBXpLtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30393.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27616 + 27616 + + Will Clarke + Will + Clarke + Will + Clarke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27616 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/2fBD8NC54VKXXnnH4vsa_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27616.png + small + + https://s.yimg.com/iu/api/res/1.2/2fBD8NC54VKXXnnH4vsa_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27616.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30196 + 30196 + + Derek Rivers + Derek + Rivers + Derek + Rivers + + nfl.p.30196 + nfl.t.17 + New England Patriots + NE + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/DGWSIY1Rp7i6mEkcRIGfcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30196.png + small + + https://s.yimg.com/iu/api/res/1.2/DGWSIY1Rp7i6mEkcRIGfcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30196.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 2 + + + 39 + 0 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31738 + 31738 + + Blaine Woodson + Blaine + Woodson + Blaine + Woodson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31738 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 68 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30565 + 30565 + + Noble Nwachukwu + Noble + Nwachukwu + Noble + Nwachukwu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30565 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 67 + DE + + https://s.yimg.com/iu/api/res/1.2/yASQuWG6p44AeIvGBtRA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30565.png + small + + https://s.yimg.com/iu/api/res/1.2/yASQuWG6p44AeIvGBtRA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30565.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31277 + 31277 + + Antonio Simmons + Antonio + Simmons + Antonio + Simmons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31277 + nfl.t.7 + Denver Broncos + Den + + 10 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26765 + 26765 + + Lavar Edwards + Lavar + Edwards + Lavar + Edwards + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26765 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/TJUfq1Bp61jUWJKJluEqWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26765.1.png + small + + https://s.yimg.com/iu/api/res/1.2/TJUfq1Bp61jUWJKJluEqWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26765.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24451 + 24451 + + Mitch Unrein + Mitch + Unrein + Mitch + Unrein + + IR + Injured Reserve + concussion + nfl.p.24451 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/KhefiiW1GKv_n4nfmlXbvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24451.png + small + + https://s.yimg.com/iu/api/res/1.2/KhefiiW1GKv_n4nfmlXbvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24451.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30015 + 30015 + + Zach Wood + Zach + Wood + Zach + Wood + + nfl.p.30015 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 49 + DE + + https://s.yimg.com/iu/api/res/1.2/sSbxdERiB3ELMK7q6HNNkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30015.png + small + + https://s.yimg.com/iu/api/res/1.2/sSbxdERiB3ELMK7q6HNNkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30015.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31520 + 31520 + + Evan Perrizo + Evan + Perrizo + Evan + Perrizo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31520 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 78 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31728 + 31728 + + Da'Sean Downey + Da'Sean + Downey + Da'Sean + Downey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31728 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 49 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29522 + 29522 + + Chris Landrum + Chris + Landrum + Chris + Landrum + + hip + nfl.p.29522 + nfl.t.34 + Houston Texans + Hou + + 10 + + 42 + DE + + https://s.yimg.com/iu/api/res/1.2/7gOaEZeBY8lGTsa1SNhp_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29522.png + small + + https://s.yimg.com/iu/api/res/1.2/7gOaEZeBY8lGTsa1SNhp_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29522.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 3 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.5897 + 5897 + + Dwight Freeney + Dwight + Freeney + Dwight + Freeney + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.5897 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/cRSH6EYAogHlaG57R.0Aiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130923/5897.png + small + + https://s.yimg.com/iu/api/res/1.2/cRSH6EYAogHlaG57R.0Aiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130923/5897.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25836 + 25836 + + Jared Crick + Jared + Crick + Jared + Crick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25836 + nfl.t.7 + Denver Broncos + Den + + 10 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/TZXzjPSU26DMzW1FE80LMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25836.1.png + small + + https://s.yimg.com/iu/api/res/1.2/TZXzjPSU26DMzW1FE80LMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25836.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26663 + 26663 + + Tank Carradine + Tank + Carradine + Tank + Carradine + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26663 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/kEb9d81e96Qp8BfBTOT9Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26663.png + small + + https://s.yimg.com/iu/api/res/1.2/kEb9d81e96Qp8BfBTOT9Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26663.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31558 + 31558 + + Gaelin Elmore + Gaelin + Elmore + Gaelin + Elmore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31558 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 69 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31539 + 31539 + + Claudy Mathieu + Claudy + Mathieu + Claudy + Mathieu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31539 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 60 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29566 + 29566 + + Kameron Canaday + Kameron + Canaday + Kameron + Canaday + + nfl.p.29566 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/22L4UXZbCwbloqVyczdb0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29566.png + small + + https://s.yimg.com/iu/api/res/1.2/22L4UXZbCwbloqVyczdb0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29566.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29596 + 29596 + + Sterling Bailey + Sterling + Bailey + Sterling + Bailey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29596 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 79 + DE + + https://s.yimg.com/iu/api/res/1.2/3l3g6xONG97rKfZma0WRkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29596.1.png + small + + https://s.yimg.com/iu/api/res/1.2/3l3g6xONG97rKfZma0WRkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29596.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8843 + 8843 + + Kendall Langford + Kendall + Langford + Kendall + Langford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8843 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/4dKq9OlAWP2Lhim0S7.ASg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/8843.png + small + + https://s.yimg.com/iu/api/res/1.2/4dKq9OlAWP2Lhim0S7.ASg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/8843.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30608 + 30608 + + Johnathan Calvin + Johnathan + Calvin + Johnathan + Calvin + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30608 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 76 + LB,DT + + https://s.yimg.com/iu/api/res/1.2/5.LgaOayCMxoQchEY4tA1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30608.png + small + + https://s.yimg.com/iu/api/res/1.2/5.LgaOayCMxoQchEY4tA1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30608.png + 0 + DP + + LB + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27557 + 27557 + + Dominique Easley + Dominique + Easley + Dominique + Easley + + IR + Injured Reserve + left knee + nfl.p.27557 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 91 + LB,DT + + https://s.yimg.com/iu/api/res/1.2/b8hSoQjUnONdYQXFkIYO0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27557.png + small + + https://s.yimg.com/iu/api/res/1.2/b8hSoQjUnONdYQXFkIYO0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27557.png + 0 + DP + + LB + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 4 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30787 + 30787 + + Lewis Neal + Lewis + Neal + Lewis + Neal + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30787 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 66 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/f9nxKSwm_W4L60KAi2reaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30787.png + small + + https://s.yimg.com/iu/api/res/1.2/f9nxKSwm_W4L60KAi2reaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30787.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30596 + 30596 + + Marquavius Lewis + Marquavius + Lewis + Marquavius + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30596 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 97 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/pd7iS2e.SeQi8DR1pAwQRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30596.png + small + + https://s.yimg.com/iu/api/res/1.2/pd7iS2e.SeQi8DR1pAwQRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30596.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31208 + 31208 + + Zach Sieler + Zach + Sieler + Zach + Sieler + + nfl.p.31208 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 95 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/0mj7akeQ2wUHVnauomI8DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/31208.png + small + + https://s.yimg.com/iu/api/res/1.2/0mj7akeQ2wUHVnauomI8DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/31208.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28982 + 28982 + + DeShawn Williams + DeShawn + Williams + DeShawn + Williams + + nfl.p.28982 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 95 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/DppVID4eaN3mE78TRP8aAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28982.png + small + + https://s.yimg.com/iu/api/res/1.2/DppVID4eaN3mE78TRP8aAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28982.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31202 + 31202 + + James Looney + James + Looney + James + Looney + + nfl.p.31202 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 99 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/Ybz6p7UC1qN_bMxyyPM4Qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31202.png + small + + https://s.yimg.com/iu/api/res/1.2/Ybz6p7UC1qN_bMxyyPM4Qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31202.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31649 + 31649 + + Frank Herron + Frank + Herron + Frank + Herron + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31649 + nfl.t.17 + New England Patriots + NE + + 11 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31128 + 31128 + + Andrew Brown + Andrew + Brown + Andrew + Brown + + nfl.p.31128 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 93 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/pDzy8uYDCIYd6yyh2UHKSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31128.png + small + + https://s.yimg.com/iu/api/res/1.2/pDzy8uYDCIYd6yyh2UHKSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31128.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31072 + 31072 + + Jalyn Holmes + Jalyn + Holmes + Jalyn + Holmes + + nfl.p.31072 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/YWEYJYfosT7n1gusELjPVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31072.png + small + + https://s.yimg.com/iu/api/res/1.2/YWEYJYfosT7n1gusELjPVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31072.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 3 + + + 39 + 0 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28605 + 28605 + + Rakeem Nunez-Roches + Rakeem + Nunez-Roches + Rakeem + Nunez-Roches + + knee, ankle + nfl.p.28605 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 56 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/C5NvuVGAuT4XZ._wQ20f3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28605.png + small + + https://s.yimg.com/iu/api/res/1.2/C5NvuVGAuT4XZ._wQ20f3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28605.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26846 + 26846 + + Nick Williams + Nick + Williams + Nick + Williams + + nfl.p.26846 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 97 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/vdgU3uOcqz.oNOmBc5VBDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26846.png + small + + https://s.yimg.com/iu/api/res/1.2/vdgU3uOcqz.oNOmBc5VBDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26846.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31417 + 31417 + + Greg Gilmore + Greg + Gilmore + Greg + Gilmore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31417 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 62 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28789 + 28789 + + Caushaud Lyons + Caushaud + Lyons + Caushaud + Lyons + + nfl.p.28789 + nfl.t.7 + Denver Broncos + Den + + 10 + + 97 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/XtVVvDygNAjPRNKG.fqsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28789.png + small + + https://s.yimg.com/iu/api/res/1.2/XtVVvDygNAjPRNKG.fqsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28789.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28097 + 28097 + + Anthony Johnson + Anthony + Johnson + Anthony + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28097 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 96 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/cT6zLMBzlhHe3w19VFZpBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28097.png + small + + https://s.yimg.com/iu/api/res/1.2/cT6zLMBzlhHe3w19VFZpBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28097.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31420 + 31420 + + Kendal Vickers + Kendal + Vickers + Kendal + Vickers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31420 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 64 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30546 + 30546 + + Karter Schult + Karter + Schult + Karter + Schult + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30546 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 76 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/cotrFEQuR1ww0GfTtWnkdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30546.png + small + + https://s.yimg.com/iu/api/res/1.2/cotrFEQuR1ww0GfTtWnkdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30546.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31612 + 31612 + + Matt Dickerson + Matt + Dickerson + Matt + Dickerson + + nfl.p.31612 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29028 + 29028 + + Richard Ash + Richard + Ash + Richard + Ash + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.29028 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 93 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/0l4yvR1Sj0yTDOOVDv3KTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29028.png + small + + https://s.yimg.com/iu/api/res/1.2/0l4yvR1Sj0yTDOOVDv3KTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29028.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27576 + 27576 + + Timmy Jernigan + Timmy + Jernigan + Timmy + Jernigan + + back + nfl.p.27576 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/vIuSd0GYqLtp.JY4cDdf3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27576.png + small + + https://s.yimg.com/iu/api/res/1.2/vIuSd0GYqLtp.JY4cDdf3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27576.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24800 + 24800 + + Nick Fairley + Nick + Fairley + Nick + Fairley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24800 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/f5tBTybd9G92raix3kZ6jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24800.png + small + + https://s.yimg.com/iu/api/res/1.2/f5tBTybd9G92raix3kZ6jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24800.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31791 + 31791 + + Simeyon Robinson + Simeyon + Robinson + Simeyon + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31791 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30201 + 30201 + + Eddie Vanderdoes + Eddie + Vanderdoes + Eddie + Vanderdoes + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30201 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/3M4NMAq7pkgvwZvEjqxtbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30201.png + small + + https://s.yimg.com/iu/api/res/1.2/3M4NMAq7pkgvwZvEjqxtbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30201.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30718 + 30718 + + Rashaad Coward + Rashaad + Coward + Rashaad + Coward + + nfl.p.30718 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/17Llns.r9ZTNYJaBu6eV1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30718.png + small + + https://s.yimg.com/iu/api/res/1.2/17Llns.r9ZTNYJaBu6eV1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30718.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30615 + 30615 + + Izaah Lunsford + Izaah + Lunsford + Izaah + Lunsford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30615 + nfl.t.19 + New York Giants + NYG + + 9 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/DSgXetgVmg1jRUHVrzs7RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30615.png + small + + https://s.yimg.com/iu/api/res/1.2/DSgXetgVmg1jRUHVrzs7RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30615.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28568 + 28568 + + Michael Bennett + Michael + Bennett + Michael + Bennett + + nfl.p.28568 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/99XZUpAcxmM85FwokRlQiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28568.png + small + + https://s.yimg.com/iu/api/res/1.2/99XZUpAcxmM85FwokRlQiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28568.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30336 + 30336 + + Stevie Tu'ikolovatu + Stevie + Tu'ikolovatu + Stevie + Tu'ikolovatu + + IR + Injured Reserve + undisclosed + nfl.p.30336 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/XnGKoeup4DtEcYi_wxU2Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30336.png + small + + https://s.yimg.com/iu/api/res/1.2/XnGKoeup4DtEcYi_wxU2Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30336.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28771 + 28771 + + Justin Hamilton + Justin + Hamilton + Justin + Hamilton + + nfl.p.28771 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/yyVq.pmDPTzoEgFcF8y4lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28771.png + small + + https://s.yimg.com/iu/api/res/1.2/yyVq.pmDPTzoEgFcF8y4lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28771.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29630 + 29630 + + Kyle Peko + Kyle + Peko + Kyle + Peko + + nfl.p.29630 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/XpXpWm4HLaxPp4oOhQsRuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29630.png + small + + https://s.yimg.com/iu/api/res/1.2/XpXpWm4HLaxPp4oOhQsRuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29630.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26821 + 26821 + + Chris Jones + Chris + Jones + Chris + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26821 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/m1WqC668xc9e.xWhzvOzzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26821.png + small + + https://s.yimg.com/iu/api/res/1.2/m1WqC668xc9e.xWhzvOzzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26821.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28109 + 28109 + + Garrison Smith + Garrison + Smith + Garrison + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28109 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/0T6SHRV2TrLk9kf9NT1ETg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28109.png + small + + https://s.yimg.com/iu/api/res/1.2/0T6SHRV2TrLk9kf9NT1ETg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28109.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 2 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29873 + 29873 + + Woodrow Hamilton IV + Woodrow + Hamilton IV + Woodrow + Hamilton IV + + nfl.p.29873 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 70 + DT + + https://s.yimg.com/iu/api/res/1.2/S68S0U.nEh4Ajh55j0RK1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29873.png + small + + https://s.yimg.com/iu/api/res/1.2/S68S0U.nEh4Ajh55j0RK1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29873.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31229 + 31229 + + Curtis Cothran + Curtis + Cothran + Curtis + Cothran + + nfl.p.31229 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/BWNwm6RTfEUETpkZaTKV9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31229.png + small + + https://s.yimg.com/iu/api/res/1.2/BWNwm6RTfEUETpkZaTKV9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31229.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31633 + 31633 + + Josh Fatu + Josh + Fatu + Josh + Fatu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31633 + nfl.t.8 + Detroit Lions + Det + + 6 + + 62 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31648 + 31648 + + Trent Harris + Trent + Harris + Trent + Harris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31648 + nfl.t.17 + New England Patriots + NE + + 11 + + 45 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29687 + 29687 + + Destiny Vaeao + Destiny + Vaeao + Destiny + Vaeao + + undisclosed + nfl.p.29687 + nfl.t.20 + New York Jets + NYJ + + 11 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/X9jh_kY5arzzb_gkFJm9Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29687.png + small + + https://s.yimg.com/iu/api/res/1.2/X9jh_kY5arzzb_gkFJm9Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29687.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 2 + + + 39 + 0 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24929 + 24929 + + Karl Klug + Karl + Klug + Karl + Klug + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24929 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/_GbQWFur2NNuetlqQvtkoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24929.png + small + + https://s.yimg.com/iu/api/res/1.2/_GbQWFur2NNuetlqQvtkoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24929.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30327 + 30327 + + Elijah Qualls + Elijah + Qualls + Elijah + Qualls + + nfl.p.30327 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/MyhSGqcsdEnH3TLtAvyfGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30327.png + small + + https://s.yimg.com/iu/api/res/1.2/MyhSGqcsdEnH3TLtAvyfGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30327.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29114 + 29114 + + T.Y. McGill + T.Y. + McGill + T.Y. + McGill + + nfl.p.29114 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/yUkiOLgb6cmnPLKj84DTXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29114.png + small + + https://s.yimg.com/iu/api/res/1.2/yUkiOLgb6cmnPLKj84DTXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29114.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 2 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31109 + 31109 + + RJ McIntosh + RJ + McIntosh + RJ + McIntosh + + nfl.p.31109 + nfl.t.19 + New York Giants + NYG + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/.yT5qa2_HRwm0aChoTb9Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31109.png + small + + https://s.yimg.com/iu/api/res/1.2/.yT5qa2_HRwm0aChoTb9Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31109.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 5 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30497 + 30497 + + Pasoni Tasini + Pasoni + Tasini + Pasoni + Tasini + + nfl.p.30497 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/I.4QlAzch0rKIXsboO_57w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30497.1.png + small + + https://s.yimg.com/iu/api/res/1.2/I.4QlAzch0rKIXsboO_57w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30497.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31392 + 31392 + + McKay Murphy + McKay + Murphy + McKay + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31392 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 61 + DT + + https://s.yimg.com/iu/api/res/1.2/M4p5w2_i83Kdtt6d0aIW2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31392.png + small + + https://s.yimg.com/iu/api/res/1.2/M4p5w2_i83Kdtt6d0aIW2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31392.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30504 + 30504 + + Brandon Banks + Brandon + Banks + Brandon + Banks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30504 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 54 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29050 + 29050 + + Toby Johnson + Toby + Johnson + Toby + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29050 + nfl.t.8 + Detroit Lions + Det + + 6 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/di.2NlZMjMqrSQEgiygu6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29050.png + small + + https://s.yimg.com/iu/api/res/1.2/di.2NlZMjMqrSQEgiygu6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29050.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31263 + 31263 + + Mike Hughes Jr. + Mike + Hughes Jr. + Mike + Hughes Jr. + + IR + Injured Reserve + undisclosed + nfl.p.31263 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/HtpNf2Jx3GKA_UmONpea9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31263.png + small + + https://s.yimg.com/iu/api/res/1.2/HtpNf2Jx3GKA_UmONpea9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31263.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31774 + 31774 + + Zaycoven Henderson + Zaycoven + Henderson + Zaycoven + Henderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31774 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30792 + 30792 + + Eli Ankou + Eli + Ankou + Eli + Ankou + + calf + nfl.p.30792 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 54 + DT + + https://s.yimg.com/iu/api/res/1.2/flXp41.k7Up55Odrimsqzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30792.png + small + + https://s.yimg.com/iu/api/res/1.2/flXp41.k7Up55Odrimsqzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30792.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 2 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29366 + 29366 + + Willie Henry + Willie + Henry + Willie + Henry + + IR + Injured Reserve + abdomen + nfl.p.29366 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/Re2vwoiDLfjypwz33aF6eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29366.png + small + + https://s.yimg.com/iu/api/res/1.2/Re2vwoiDLfjypwz33aF6eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29366.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 2 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31449 + 31449 + + Mychealon Thomas + Mychealon + Thomas + Mychealon + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31449 + nfl.t.20 + New York Jets + NYJ + + 11 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28501 + 28501 + + Gabe Wright + Gabe + Wright + Gabe + Wright + + nfl.p.28501 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 57 + DT + + https://s.yimg.com/iu/api/res/1.2/vmEsUkXsAjg8pQ13Jjqm5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28501.png + small + + https://s.yimg.com/iu/api/res/1.2/vmEsUkXsAjg8pQ13Jjqm5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28501.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31380 + 31380 + + Lowell Lotulelei + Lowell + Lotulelei + Lowell + Lotulelei + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31380 + nfl.t.7 + Denver Broncos + Den + + 10 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29096 + 29096 + + David Irving + David + Irving + David + Irving + + Q + Questionable + ankle + nfl.p.29096 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/uYrlRVGwWkTYhRWA2OMQpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29096.png + small + + https://s.yimg.com/iu/api/res/1.2/uYrlRVGwWkTYhRWA2OMQpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29096.png + 0 + DP + + DT + + 1 + 1547239140 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 3 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27688 + 27688 + + Ed Stinson + Ed + Stinson + Ed + Stinson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27688 + nfl.t.20 + New York Jets + NYJ + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/VOSWnJjhdKSMbCDbRObQeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27688.png + small + + https://s.yimg.com/iu/api/res/1.2/VOSWnJjhdKSMbCDbRObQeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27688.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31613 + 31613 + + Mike Ramsay + Mike + Ramsay + Mike + Ramsay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31613 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 70 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31362 + 31362 + + Jon Cunningham + Jon + Cunningham + Jon + Cunningham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31362 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/0tT_SN9J5s2kyfHdasLmMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31362.png + small + + https://s.yimg.com/iu/api/res/1.2/0tT_SN9J5s2kyfHdasLmMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31362.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31312 + 31312 + + Tracy Sprinkle + Tracy + Sprinkle + Tracy + Sprinkle + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31312 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 68 + DT + + https://s.yimg.com/iu/api/res/1.2/kHptl23gD8sTUpzyvKmjsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31312.png + small + + https://s.yimg.com/iu/api/res/1.2/kHptl23gD8sTUpzyvKmjsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/31312.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31248 + 31248 + + Du'Vonta Lampkin + Du'Vonta + Lampkin + Du'Vonta + Lampkin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31248 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30251 + 30251 + + Ryan Glasgow + Ryan + Glasgow + Ryan + Glasgow + + IR + Injured Reserve + torn ACL + nfl.p.30251 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/kdNc_9VKxTnS7qgOwMunbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30251.1.png + small + + https://s.yimg.com/iu/api/res/1.2/kdNc_9VKxTnS7qgOwMunbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30251.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 6 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30905 + 30905 + + Chunky Clements + Chunky + Clements + Chunky + Clements + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30905 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/Vf0V5ACS8vCWhYA3KKyGtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30905.png + small + + https://s.yimg.com/iu/api/res/1.2/Vf0V5ACS8vCWhYA3KKyGtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30905.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31334 + 31334 + + Niles Scott + Niles + Scott + Niles + Scott + + nfl.p.31334 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/WNGnDOnjmkdFoEKxQv17Jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31334.png + small + + https://s.yimg.com/iu/api/res/1.2/WNGnDOnjmkdFoEKxQv17Jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31334.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 4 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27610 + 27610 + + Will Sutton + Will + Sutton + Will + Sutton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27610 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 66 + DT + + https://s.yimg.com/iu/api/res/1.2/ZsCFCFv.kivZClrLHI7KBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/27610.png + small + + https://s.yimg.com/iu/api/res/1.2/ZsCFCFv.kivZClrLHI7KBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/27610.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27983 + 27983 + + Jamie Meder + Jamie + Meder + Jamie + Meder + + nfl.p.27983 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/bQpFWm01lPv7nvVC5qKq5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27983.png + small + + https://s.yimg.com/iu/api/res/1.2/bQpFWm01lPv7nvVC5qKq5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27983.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31694 + 31694 + + Chris Okoye + Chris + Okoye + Chris + Okoye + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31694 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8854 + 8854 + + Pat Sims + Pat + Sims + Pat + Sims + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8854 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/XCqXL2rCTR4.Ac6_FVMSDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8854.1.png + small + + https://s.yimg.com/iu/api/res/1.2/XCqXL2rCTR4.Ac6_FVMSDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8854.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31572 + 31572 + + Bruce Hector + Bruce + Hector + Bruce + Hector + + nfl.p.31572 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 0 + + + 39 + 2 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31527 + 31527 + + Parker Cothren + Parker + Cothren + Parker + Cothren + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31527 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 61 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25797 + 25797 + + John Hughes III + John + Hughes III + John + Hughes III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25797 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/HoJ0NLHFN2d5_5jM3mE7Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25797.1.png + small + + https://s.yimg.com/iu/api/res/1.2/HoJ0NLHFN2d5_5jM3mE7Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25797.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28591 + 28591 + + Darius Kilgo + Darius + Kilgo + Darius + Kilgo + + nfl.p.28591 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/5bx6UA0IDnBj4dvQKkOfCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28591.png + small + + https://s.yimg.com/iu/api/res/1.2/5bx6UA0IDnBj4dvQKkOfCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28591.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27853 + 27853 + + Tenny Palepoi + Tenny + Palepoi + Tenny + Palepoi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27853 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/FRVFHMhptZMAXjqk_9rkBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27853.png + small + + https://s.yimg.com/iu/api/res/1.2/FRVFHMhptZMAXjqk_9rkBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27853.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30654 + 30654 + + Josh Augusta + Josh + Augusta + Josh + Augusta + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30654 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 72 + DT + + https://s.yimg.com/iu/api/res/1.2/GhGxw.8BnAzoU1dcrD2svA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30654.png + small + + https://s.yimg.com/iu/api/res/1.2/GhGxw.8BnAzoU1dcrD2svA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30654.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29959 + 29959 + + Drew Iddings + Drew + Iddings + Drew + Iddings + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29959 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/ECWe.ezEVukTqtmV.1esvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29959.png + small + + https://s.yimg.com/iu/api/res/1.2/ECWe.ezEVukTqtmV.1esvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29959.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30917 + 30917 + + Peli Anau + Peli + Anau + Peli + Anau + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30917 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/b5c_E8F6_778cSsiVJ.yDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30917.png + small + + https://s.yimg.com/iu/api/res/1.2/b5c_E8F6_778cSsiVJ.yDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30917.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31586 + 31586 + + Kingsley Opara + Kingsley + Opara + Kingsley + Opara + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31586 + nfl.t.34 + Houston Texans + Hou + + 10 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31150 + 31150 + + Folorunso Fatukasi + Folorunso + Fatukasi + Folorunso + Fatukasi + + nfl.p.31150 + nfl.t.20 + New York Jets + NYJ + + 11 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/olC5vis2iQZBsY7rrjbMvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/31150.png + small + + https://s.yimg.com/iu/api/res/1.2/olC5vis2iQZBsY7rrjbMvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/31150.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26823 + 26823 + + Kapron Lewis-Moore + Kapron + Lewis-Moore + Kapron + Lewis-Moore + + undisclosed + nfl.p.26823 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/GzjbAiQ1H2zOkVuqN42DEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26823.png + small + + https://s.yimg.com/iu/api/res/1.2/GzjbAiQ1H2zOkVuqN42DEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26823.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27298 + 27298 + + Stefan Charles + Stefan + Charles + Stefan + Charles + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27298 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/EKG1kvUnpP1ABN9us75Ceg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27298.png + small + + https://s.yimg.com/iu/api/res/1.2/EKG1kvUnpP1ABN9us75Ceg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27298.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30148 + 30148 + + Malik McDowell + Malik + McDowell + Malik + McDowell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30148 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/my847bIDc5.U4jqCUOaD7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30148.png + small + + https://s.yimg.com/iu/api/res/1.2/my847bIDc5.U4jqCUOaD7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30148.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31518 + 31518 + + Henry Mondeaux + Henry + Mondeaux + Henry + Mondeaux + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31518 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31212 + 31212 + + Kendrick Norton + Kendrick + Norton + Kendrick + Norton + + ankle + nfl.p.31212 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31736 + 31736 + + Dalton Keene + Dalton + Keene + Dalton + Keene + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31736 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 67 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31489 + 31489 + + Dee Liner + Dee + Liner + Dee + Liner + + nfl.p.31489 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30515 + 30515 + + Omarius Bryant + Omarius + Bryant + Omarius + Bryant + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30515 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/._m5G1WBxaJ0vagKqQn53g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30515.png + small + + https://s.yimg.com/iu/api/res/1.2/._m5G1WBxaJ0vagKqQn53g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30515.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31446 + 31446 + + Lord Hyeamang + Lord + Hyeamang + Lord + Hyeamang + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31446 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8967 + 8967 + + Ahtyba Rubin + Ahtyba + Rubin + Ahtyba + Rubin + + IR + Injured Reserve + undisclosed + nfl.p.8967 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/BgBYaR_Kts388S86kOjeYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/8967.png + small + + https://s.yimg.com/iu/api/res/1.2/BgBYaR_Kts388S86kOjeYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/8967.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25225 + 25225 + + Sealver Siliga + Sealver + Siliga + Sealver + Siliga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25225 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/6lD4DUCzjIsUd.kDoRNR0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25225.png + small + + https://s.yimg.com/iu/api/res/1.2/6lD4DUCzjIsUd.kDoRNR0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25225.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30298 + 30298 + + Caleb Brantley + Caleb + Brantley + Caleb + Brantley + + nfl.p.30298 + nfl.t.28 + Washington Redskins + Was + + 4 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/den2hmW56KVM_GdRd5vG0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30298.png + small + + https://s.yimg.com/iu/api/res/1.2/den2hmW56KVM_GdRd5vG0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30298.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31165 + 31165 + + Sebastian Joseph-Day + Sebastian + Joseph-Day + Sebastian + Joseph-Day + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31165 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 69 + DT + + https://s.yimg.com/iu/api/res/1.2/ovm19cYS4dxB8KJq.33htw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31165.png + small + + https://s.yimg.com/iu/api/res/1.2/ovm19cYS4dxB8KJq.33htw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31165.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31289 + 31289 + + DeQuinton Osborne + DeQuinton + Osborne + DeQuinton + Osborne + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31289 + nfl.t.7 + Denver Broncos + Den + + 10 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29330 + 29330 + + Vincent Valentine + Vincent + Valentine + Vincent + Valentine + + nfl.p.29330 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/PUCcUdiugPLA9G3FxgXcrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29330.png + small + + https://s.yimg.com/iu/api/res/1.2/PUCcUdiugPLA9G3FxgXcrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29330.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28826 + 28826 + + Joey Mbu + Joey + Mbu + Joey + Mbu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28826 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 73 + DT + + https://s.yimg.com/iu/api/res/1.2/MiiYwpqzOhsLXvOfhVeKaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28826.png + small + + https://s.yimg.com/iu/api/res/1.2/MiiYwpqzOhsLXvOfhVeKaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28826.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.24808 + 24808 + + Phil Taylor Sr. + Phil + Taylor Sr. + Phil + Taylor Sr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24808 + nfl.t.28 + Washington Redskins + Was + + 4 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/oEIzLLt5tTFvvKFd8Eidaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24808.png + small + + https://s.yimg.com/iu/api/res/1.2/oEIzLLt5tTFvvKFd8Eidaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24808.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26054 + 26054 + + Tyrunn Walker + Tyrunn + Walker + Tyrunn + Walker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26054 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/hV8GTLohn7p6kOGoEMKn7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26054.png + small + + https://s.yimg.com/iu/api/res/1.2/hV8GTLohn7p6kOGoEMKn7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26054.png + 0 + DP + + DT + + 1 + 1547579940 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31542 + 31542 + + Jamiyus Pittman + Jamiyus + Pittman + Jamiyus + Pittman + + nfl.p.31542 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 0 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29683 + 29683 + + Aziz Shittu + Aziz + Shittu + Aziz + Shittu + + nfl.p.29683 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/bGedZNEPpWnEVcAa6NdBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29683.png + small + + https://s.yimg.com/iu/api/res/1.2/bGedZNEPpWnEVcAa6NdBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29683.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31645 + 31645 + + Jojo Wicker + Jojo + Wicker + Jojo + Wicker + + nfl.p.31645 + nfl.t.28 + Washington Redskins + Was + + 4 + + 64 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28539 + 28539 + + David Parry + David + Parry + David + Parry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28539 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/q8aj7YZ26EV1iF74eQA47g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28539.1.png + small + + https://s.yimg.com/iu/api/res/1.2/q8aj7YZ26EV1iF74eQA47g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28539.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 3 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28178 + 28178 + + Robert Thomas + Robert + Thomas + Robert + Thomas + + nfl.p.28178 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/GRVUVluMeHM7XFGfjbc1XA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28178.png + small + + https://s.yimg.com/iu/api/res/1.2/GRVUVluMeHM7XFGfjbc1XA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28178.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31541 + 31541 + + Anthony Moten + Anthony + Moten + Anthony + Moten + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31541 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 43 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29939 + 29939 + + Tani Tupou + Tani + Tupou + Tani + Tupou + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29939 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/wRF4C9alBthyfbTocFLsBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29939.png + small + + https://s.yimg.com/iu/api/res/1.2/wRF4C9alBthyfbTocFLsBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29939.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28478 + 28478 + + Carl Davis + Carl + Davis + Carl + Davis + + nfl.p.28478 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/gLYfJIB5hIBZkSHSTpGj_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/28478.png + small + + https://s.yimg.com/iu/api/res/1.2/gLYfJIB5hIBZkSHSTpGj_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/28478.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26710 + 26710 + + Jordan Hill + Jordan + Hill + Jordan + Hill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26710 + nfl.t.8 + Detroit Lions + Det + + 6 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/QYHiajajsZY0sof4InXpTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26710.png + small + + https://s.yimg.com/iu/api/res/1.2/QYHiajajsZY0sof4InXpTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26710.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31439 + 31439 + + Filipo Mokofisi + Filipo + Mokofisi + Filipo + Mokofisi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31439 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26705 + 26705 + + John Jenkins + John + Jenkins + John + Jenkins + + nfl.p.26705 + nfl.t.19 + New York Giants + NYG + + 9 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/DJ65X0.Bvw3pSSpTLczxlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26705.png + small + + https://s.yimg.com/iu/api/res/1.2/DJ65X0.Bvw3pSSpTLczxlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26705.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31776 + 31776 + + Adam Reth + Adam + Reth + Adam + Reth + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31776 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31315 + 31315 + + Owen Obasuyi + Owen + Obasuyi + Owen + Obasuyi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31315 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/STy1UF_2NTnUY1m6AtfQyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31315.1.png + small + + https://s.yimg.com/iu/api/res/1.2/STy1UF_2NTnUY1m6AtfQyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31315.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28755 + 28755 + + Kaleb Eulls + Kaleb + Eulls + Kaleb + Eulls + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28755 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/ALOoQSwfF1tHaTfv1hNcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28755.png + small + + https://s.yimg.com/iu/api/res/1.2/ALOoQSwfF1tHaTfv1hNcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28755.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31217 + 31217 + + Joshua Frazier + Joshua + Frazier + Joshua + Frazier + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31217 + nfl.t.8 + Detroit Lions + Det + + 6 + + 62 + DT + + https://s.yimg.com/iu/api/res/1.2/sQv2ALhgFuK0HhTIs2b_TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31217.png + small + + https://s.yimg.com/iu/api/res/1.2/sQv2ALhgFuK0HhTIs2b_TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31217.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27217 + 27217 + + Mike Purcell + Mike + Purcell + Mike + Purcell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27217 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/w9U0fPXtF_Oe.fmii799Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27217.png + small + + https://s.yimg.com/iu/api/res/1.2/w9U0fPXtF_Oe.fmii799Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27217.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29581 + 29581 + + DaVonte Lambert + DaVonte + Lambert + DaVonte + Lambert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29581 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/xHfkBNpxYiuY3HdDUTDZPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29581.png + small + + https://s.yimg.com/iu/api/res/1.2/xHfkBNpxYiuY3HdDUTDZPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29581.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28611 + 28611 + + Deon Simon + Deon + Simon + Deon + Simon + + nfl.p.28611 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/X49zPnpKH3cgzj7yPAsroQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28611.png + small + + https://s.yimg.com/iu/api/res/1.2/X49zPnpKH3cgzj7yPAsroQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28611.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30708 + 30708 + + Winston Craig + Winston + Craig + Winston + Craig + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30708 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/GPtEttar03Q3bTpeWsAc9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30708.png + small + + https://s.yimg.com/iu/api/res/1.2/GPtEttar03Q3bTpeWsAc9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30708.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27602 + 27602 + + Jay Bromley + Jay + Bromley + Jay + Bromley + + IR + Injured Reserve + right arm + nfl.p.27602 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/T18_BoXPDs6WGDqg69m54g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27602.png + small + + https://s.yimg.com/iu/api/res/1.2/T18_BoXPDs6WGDqg69m54g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27602.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31352 + 31352 + + Jacob Tuioti-Mariner + Jacob + Tuioti-Mariner + Jacob + Tuioti-Mariner + + nfl.p.31352 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/PdJnels21HadIXq_SqfxrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31352.png + small + + https://s.yimg.com/iu/api/res/1.2/PdJnels21HadIXq_SqfxrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31352.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30605 + 30605 + + Nigel Williams + Nigel + Williams + Nigel + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30605 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30341 + 30341 + + Joey Ivie + Joey + Ivie + Joey + Ivie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30341 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/9atzEzQ5ovfZ_NM4s6HSTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30341.png + small + + https://s.yimg.com/iu/api/res/1.2/9atzEzQ5ovfZ_NM4s6HSTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30341.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31461 + 31461 + + Trenton Thompson + Trenton + Thompson + Trenton + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31461 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 77 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31371 + 31371 + + Tomasi Laulile + Tomasi + Laulile + Tomasi + Laulile + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31371 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/RVPvIynP.Ld5ELw0uULEEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31371.png + small + + https://s.yimg.com/iu/api/res/1.2/RVPvIynP.Ld5ELw0uULEEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31371.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30076 + 30076 + + Jake Ceresna + Jake + Ceresna + Jake + Ceresna + + nfl.p.30076 + nfl.t.19 + New York Giants + NYG + + 9 + + 72 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30317 + 30317 + + Jeremiah Ledbetter + Jeremiah + Ledbetter + Jeremiah + Ledbetter + + nfl.p.30317 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/B9UaTV7VQ7_lxBhea94cDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30317.png + small + + https://s.yimg.com/iu/api/res/1.2/B9UaTV7VQ7_lxBhea94cDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30317.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25745 + 25745 + + Courtney Upshaw + Courtney + Upshaw + Courtney + Upshaw + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25745 + nfl.t.20 + New York Jets + NYJ + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/wd2XfolLCMh4DbDFoI4Jzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25745.png + small + + https://s.yimg.com/iu/api/res/1.2/wd2XfolLCMh4DbDFoI4Jzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25745.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28761 + 28761 + + Ashaad Mabry + Ashaad + Mabry + Ashaad + Mabry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28761 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 72 + DT + + https://s.yimg.com/iu/api/res/1.2/mMr0nmuMZPLYWmylx8zxeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28761.png + small + + https://s.yimg.com/iu/api/res/1.2/mMr0nmuMZPLYWmylx8zxeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28761.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31669 + 31669 + + Cavon Walker + Cavon + Walker + Cavon + Walker + + nfl.p.31669 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30624 + 30624 + + Paul Boyette Jr. + Paul + Boyette Jr. + Paul + Boyette Jr. + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30624 + nfl.t.7 + Denver Broncos + Den + + 10 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/PqTdPKyO7DiLI9jE1WpdVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30624.png + small + + https://s.yimg.com/iu/api/res/1.2/PqTdPKyO7DiLI9jE1WpdVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30624.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30730 + 30730 + + Josh Banks + Josh + Banks + Josh + Banks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30730 + nfl.t.19 + New York Giants + NYG + + 9 + + 64 + DT + + https://s.yimg.com/iu/api/res/1.2/Fm.3BSc7mzzjgUJ3vPDlZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30730.png + small + + https://s.yimg.com/iu/api/res/1.2/Fm.3BSc7mzzjgUJ3vPDlZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30730.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24133 + 24133 + + Arthur Jones + Arthur + Jones + Arthur + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24133 + nfl.t.28 + Washington Redskins + Was + + 4 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/3w785Z4BcyvIXBEmWDfD4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24133.1.png + small + + https://s.yimg.com/iu/api/res/1.2/3w785Z4BcyvIXBEmWDfD4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24133.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31474 + 31474 + + Eddy Wilson + Eddy + Wilson + Eddy + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31474 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29559 + 29559 + + Justin Zimmer + Justin + Zimmer + Justin + Zimmer + + nfl.p.29559 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/udVUChk7OW3q87A175Kl2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29559.png + small + + https://s.yimg.com/iu/api/res/1.2/udVUChk7OW3q87A175Kl2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29559.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31647 + 31647 + + John Atkins + John + Atkins + John + Atkins + + nfl.p.31647 + nfl.t.8 + Detroit Lions + Det + + 6 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30810 + 30810 + + Rickey Hatley + Rickey + Hatley + Rickey + Hatley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30810 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/_oiqExBaRJw5wyprVpCXzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30810.png + small + + https://s.yimg.com/iu/api/res/1.2/_oiqExBaRJw5wyprVpCXzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30810.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31686 + 31686 + + Steven Richardson + Steven + Richardson + Steven + Richardson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31686 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 70 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27245 + 27245 + + A.J. Francis + A.J. + Francis + A.J. + Francis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27245 + nfl.t.19 + New York Giants + NYG + + 9 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/pDTv8hvD4fJ5_EoqVT6XMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27245.png + small + + https://s.yimg.com/iu/api/res/1.2/pDTv8hvD4fJ5_EoqVT6XMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27245.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28602 + 28602 + + Kristjan Sokoli + Kristjan + Sokoli + Kristjan + Sokoli + + IR + Injured Reserve + torn ACL + nfl.p.28602 + nfl.t.19 + New York Giants + NYG + + 9 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/kVs6apvv8e6oGp18pn0utA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28602.png + small + + https://s.yimg.com/iu/api/res/1.2/kVs6apvv8e6oGp18pn0utA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28602.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31657 + 31657 + + Abdullah Anderson Jr. + Abdullah + Anderson Jr. + Abdullah + Anderson Jr. + + nfl.p.31657 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31788 + 31788 + + Nathan Bazata + Nathan + Bazata + Nathan + Bazata + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31788 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 73 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31681 + 31681 + + Bijhon Jackson + Bijhon + Jackson + Bijhon + Jackson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31681 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8287 + 8287 + + Alan Branch + Alan + Branch + Alan + Branch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8287 + nfl.t.17 + New England Patriots + NE + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/1N.wmPgSQUye5tmfn8a98g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/8287.png + small + + https://s.yimg.com/iu/api/res/1.2/1N.wmPgSQUye5tmfn8a98g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/8287.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9535 + 9535 + + Chris Baker + Chris + Baker + Chris + Baker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9535 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/hVK8a6Cqwz7E4cM3SwlmFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/9535.png + small + + https://s.yimg.com/iu/api/res/1.2/hVK8a6Cqwz7E4cM3SwlmFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/9535.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30429 + 30429 + + Dylan Bradley + Dylan + Bradley + Dylan + Bradley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30429 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 60 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30302 + 30302 + + Tanzel Smart + Tanzel + Smart + Tanzel + Smart + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30302 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/sXtVZPqIjestQyBQsm3bRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30302.png + small + + https://s.yimg.com/iu/api/res/1.2/sXtVZPqIjestQyBQsm3bRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30302.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29960 + 29960 + + Darius Latham + Darius + Latham + Darius + Latham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29960 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 75 + DT + + https://s.yimg.com/iu/api/res/1.2/4..uCLELok6KTEonMYeQaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29960.png + small + + https://s.yimg.com/iu/api/res/1.2/4..uCLELok6KTEonMYeQaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29960.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30507 + 30507 + + Ondre Pipkins + Ondre + Pipkins + Ondre + Pipkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30507 + nfl.t.28 + Washington Redskins + Was + + 4 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/BZwAG.7u4KQVXR_nONl5nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30507.png + small + + https://s.yimg.com/iu/api/res/1.2/BZwAG.7u4KQVXR_nONl5nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30507.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25048 + 25048 + + Cedric Thornton + Cedric + Thornton + Cedric + Thornton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25048 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 63 + DT + + https://s.yimg.com/iu/api/res/1.2/_lrv5s3F85xhSj0l1GCYcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25048.png + small + + https://s.yimg.com/iu/api/res/1.2/_lrv5s3F85xhSj0l1GCYcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25048.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30412 + 30412 + + Devaroe Lawrence + Devaroe + Lawrence + Devaroe + Lawrence + + nfl.p.30412 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/.h_4E9LJQl3mekzxlxH1PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30412.png + small + + https://s.yimg.com/iu/api/res/1.2/.h_4E9LJQl3mekzxlxH1PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30412.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31454 + 31454 + + Daniel Ekuale + Daniel + Ekuale + Daniel + Ekuale + + nfl.p.31454 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28523 + 28523 + + Marcus Hardison + Marcus + Hardison + Marcus + Hardison + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28523 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/MKCdbro6ryYp4P..0_nyNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28523.png + small + + https://s.yimg.com/iu/api/res/1.2/MKCdbro6ryYp4P..0_nyNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28523.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26780 + 26780 + + Quinton Dial + Quinton + Dial + Quinton + Dial + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26780 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/Dso9bH4Z5kqFt9duP3IjCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26780.png + small + + https://s.yimg.com/iu/api/res/1.2/Dso9bH4Z5kqFt9duP3IjCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26780.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31549 + 31549 + + Tyrell Chavis + Tyrell + Chavis + Tyrell + Chavis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31549 + nfl.t.19 + New York Giants + NYG + + 9 + + 62 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26762 + 26762 + + Montori Hughes + Montori + Hughes + Montori + Hughes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26762 + nfl.t.28 + Washington Redskins + Was + + 4 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/Jr2ID8y0avwWFI.rc.CipQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26762.png + small + + https://s.yimg.com/iu/api/res/1.2/Jr2ID8y0avwWFI.rc.CipQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26762.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8039 + 8039 + + Tony McDaniel + Tony + McDaniel + Tony + McDaniel + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8039 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/EDhECjhqoCP9N3tCIQkOYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/8039.png + small + + https://s.yimg.com/iu/api/res/1.2/EDhECjhqoCP9N3tCIQkOYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/8039.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30376 + 30376 + + Casey Sayles + Casey + Sayles + Casey + Sayles + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30376 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 74 + DT + + https://s.yimg.com/iu/api/res/1.2/H.CJrJc9f3iNNEjuXcBDlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30376.png + small + + https://s.yimg.com/iu/api/res/1.2/H.CJrJc9f3iNNEjuXcBDlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30376.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29350 + 29350 + + Hassan Ridgeway + Hassan + Ridgeway + Hassan + Ridgeway + + calf + nfl.p.29350 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/YJOsbcU.QbfTHXm21Nj2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29350.png + small + + https://s.yimg.com/iu/api/res/1.2/YJOsbcU.QbfTHXm21Nj2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29350.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 5 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28508 + 28508 + + Josh Shaw + Josh + Shaw + Josh + Shaw + + undisclosed + nfl.p.28508 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/tUvJStNXuWaSUCfZeAS7hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28508.png + small + + https://s.yimg.com/iu/api/res/1.2/tUvJStNXuWaSUCfZeAS7hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28508.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 10 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30140 + 30140 + + Tre'Davious White + Tre'Davious + White + Tre'Davious + White + + Q + Questionable + nfl.p.30140 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/5FMoH9I9WjyVe0NbwBEoNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30140.png + small + + https://s.yimg.com/iu/api/res/1.2/5FMoH9I9WjyVe0NbwBEoNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30140.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 44 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 1 + + + 66 + 37 + + + 83 + 0 + + + + + + 380.p.31179 + 31179 + + Cornell Armstrong + Cornell + Armstrong + Cornell + Armstrong + + nfl.p.31179 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/y9uqKP3xcYMQw7LBpKUZIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31179.png + small + + https://s.yimg.com/iu/api/res/1.2/y9uqKP3xcYMQw7LBpKUZIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31179.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 8 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29842 + 29842 + + Ken Crawley + Ken + Crawley + Ken + Crawley + + nfl.p.29842 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/ATQeFi4Fc8ruex.cKhJ1kQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29842.png + small + + https://s.yimg.com/iu/api/res/1.2/ATQeFi4Fc8ruex.cKhJ1kQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29842.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 28 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31095 + 31095 + + Avonte Maddox + Avonte + Maddox + Avonte + Maddox + + oblique + nfl.p.31095 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/Mis3tUzLnw2FswA11VvmUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31095.png + small + + https://s.yimg.com/iu/api/res/1.2/Mis3tUzLnw2FswA11VvmUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31095.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 28 + + + 39 + 7 + + + 40 + 0.5 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 1 + + + 66 + 23 + + + 83 + 0 + + + + + + 380.p.24924 + 24924 + + Buster Skrine + Buster + Skrine + Buster + Skrine + + shoulder, hip + nfl.p.24924 + nfl.t.20 + New York Jets + NYJ + + 11 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/2Fn7EELep4TOIQ_ZfBgQEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24924.png + small + + https://s.yimg.com/iu/api/res/1.2/2Fn7EELep4TOIQ_ZfBgQEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24924.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 52 + + + 39 + 6 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8909 + 8909 + + Orlando Scandrick + Orlando + Scandrick + Orlando + Scandrick + + nfl.p.8909 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/VbdJ62slhTQVIaCl_Q_eYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/8909.png + small + + https://s.yimg.com/iu/api/res/1.2/VbdJ62slhTQVIaCl_Q_eYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/8909.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 38 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 13 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9467 + 9467 + + Jason McCourty + Jason + McCourty + Jason + McCourty + + nfl.p.9467 + nfl.t.17 + New England Patriots + NE + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/kLp25KkmuJbTMBs70mCCHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/9467.png + small + + https://s.yimg.com/iu/api/res/1.2/kLp25KkmuJbTMBs70mCCHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/9467.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 13 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 54 + + + 39 + 16 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31140 + 31140 + + Darius Phillips + Darius + Phillips + Darius + Phillips + + nfl.p.31140 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/PNBCY692anxrxTD5siIGMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31140.png + small + + https://s.yimg.com/iu/api/res/1.2/PNBCY692anxrxTD5siIGMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31140.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 19 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31667 + 31667 + + Kevin Toliver II + Kevin + Toliver II + Kevin + Toliver II + + nfl.p.31667 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 14 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31091 + 31091 + + Taron Johnson + Taron + Johnson + Taron + Johnson + + IR + Injured Reserve + shoulder + nfl.p.31091 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/pLD4bFH_MFqs9DvR58alVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31091.png + small + + https://s.yimg.com/iu/api/res/1.2/pLD4bFH_MFqs9DvR58alVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31091.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 34 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28270 + 28270 + + Tyler Patmon + Tyler + Patmon + Tyler + Patmon + + neck + nfl.p.28270 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/OC2rmcLbE_e5MD2hQHQx2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28270.png + small + + https://s.yimg.com/iu/api/res/1.2/OC2rmcLbE_e5MD2hQHQx2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28270.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 12 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30669 + 30669 + + Kenny Moore II + Kenny + Moore II + Kenny + Moore II + + concussion + nfl.p.30669 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/wtAIfdFTtjJgb40stW3GIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30669.png + small + + https://s.yimg.com/iu/api/res/1.2/wtAIfdFTtjJgb40stW3GIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30669.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 63 + + + 39 + 14 + + + 40 + 1.5 + + + 41 + 3 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 11 + + + 47 + 0 + + + 65 + 4 + + + 66 + 52 + + + 83 + 0 + + + + + + 380.p.31603 + 31603 + + Levi Wallace + Levi + Wallace + Levi + Wallace + + nfl.p.31603 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 47 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 24 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.8607 + 8607 + + Brent Grimes + Brent + Grimes + Brent + Grimes + + knee + nfl.p.8607 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/OBRckJyiAOTt2asQtbrp_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8607.png + small + + https://s.yimg.com/iu/api/res/1.2/OBRckJyiAOTt2asQtbrp_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8607.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 42 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27747 + 27747 + + T.J. Carrie + T.J. + Carrie + T.J. + Carrie + + nfl.p.27747 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/dnWW7ef6kPLeseENgDaIYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27747.png + small + + https://s.yimg.com/iu/api/res/1.2/dnWW7ef6kPLeseENgDaIYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27747.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 58 + + + 39 + 16 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31025 + 31025 + + Donte Jackson + Donte + Jackson + Donte + Jackson + + groin + nfl.p.31025 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/KBZDiHGSsdXuM.Zu5U4DxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31025.png + small + + https://s.yimg.com/iu/api/res/1.2/KBZDiHGSsdXuM.Zu5U4DxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31025.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 19 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 63 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 4 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31270 + 31270 + + Quenton Meeks + Quenton + Meeks + Quenton + Meeks + + knee + nfl.p.31270 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/xUOm9GGrNQoxSNYX3GHzqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31270.png + small + + https://s.yimg.com/iu/api/res/1.2/xUOm9GGrNQoxSNYX3GHzqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31270.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 7 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28435 + 28435 + + Eric Rowe + Eric + Rowe + Eric + Rowe + + IR + Injured Reserve + groin + nfl.p.28435 + nfl.t.17 + New England Patriots + NE + + 11 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/wmLAjzRo5ZYl1CjDUgb8Hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28435.png + small + + https://s.yimg.com/iu/api/res/1.2/wmLAjzRo5ZYl1CjDUgb8Hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28435.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 9 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31555 + 31555 + + Grant Haley + Grant + Haley + Grant + Haley + + Q + Questionable + nfl.p.31555 + nfl.t.19 + New York Giants + NYG + + 9 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 29 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8793 + 8793 + + Dominique Rodgers-Cromartie + Dominique + Rodgers-Cromartie + Dominique + Rodgers-Cromartie + + NA + Inactive: Coach's Decision or Not on Roster + hamstring + nfl.p.8793 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 45 + CB + + https://s.yimg.com/iu/api/res/1.2/LhydZLVYB3M17j7oybCazw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8793.png + small + + https://s.yimg.com/iu/api/res/1.2/LhydZLVYB3M17j7oybCazw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8793.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 8 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31211 + 31211 + + Greg Stroman + Greg + Stroman + Greg + Stroman + + nfl.p.31211 + nfl.t.28 + Washington Redskins + Was + + 4 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/3PoGKQ90PD.oB5chkMl8ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31211.png + small + + https://s.yimg.com/iu/api/res/1.2/3PoGKQ90PD.oB5chkMl8ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31211.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 31 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 23 + + + 83 + 0 + + + + + + 380.p.26648 + 26648 + + Xavier Rhodes + Xavier + Rhodes + Xavier + Rhodes + + Q + Questionable + groin + nfl.p.26648 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/Jflgx6l2icGy57Q5Yfx5eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26648.png + small + + https://s.yimg.com/iu/api/res/1.2/Jflgx6l2icGy57Q5Yfx5eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26648.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 41 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 0 + + + 66 + 3 + + + 83 + 0 + + + + + + 380.p.28438 + 28438 + + Ronald Darby + Ronald + Darby + Ronald + Darby + + IR + Injured Reserve + knee + nfl.p.28438 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/flBDuDqOcAHyZBBAQWxu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28438.png + small + + https://s.yimg.com/iu/api/res/1.2/flBDuDqOcAHyZBBAQWxu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28438.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 39 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 1 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.29272 + 29272 + + Xavien Howard + Xavien + Howard + Xavien + Howard + + Q + Questionable + knee + nfl.p.29272 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/3aSCnp9IWZdrma3nk9RpGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29272.png + small + + https://s.yimg.com/iu/api/res/1.2/3aSCnp9IWZdrma3nk9RpGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29272.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 25 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 7 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 1 + + + 66 + 52 + + + 83 + 0 + + + + + + 380.p.30159 + 30159 + + Quincy Wilson + Quincy + Wilson + Quincy + Wilson + + concussion + nfl.p.30159 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/VBGXC1jdDXI80Pp5EYpJUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30159.png + small + + https://s.yimg.com/iu/api/res/1.2/VBGXC1jdDXI80Pp5EYpJUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30159.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 20 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 38 + + + 83 + 0 + + + + + + 380.p.25776 + 25776 + + Josh Robinson + Josh + Robinson + Josh + Robinson + + nfl.p.25776 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/HP179od2m.e4_OYlXV2iHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25776.png + small + + https://s.yimg.com/iu/api/res/1.2/HP179od2m.e4_OYlXV2iHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25776.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 4 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30156 + 30156 + + Sidney Jones + Sidney + Jones + Sidney + Jones + + Q + Questionable + hamstring + nfl.p.30156 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 21 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29077 + 29077 + + Quinton Dunbar + Quinton + Dunbar + Quinton + Dunbar + + IR + Injured Reserve + shin + nfl.p.29077 + nfl.t.28 + Washington Redskins + Was + + 4 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/YSYpehA2iRGbsDGHqTyBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29077.png + small + + https://s.yimg.com/iu/api/res/1.2/YSYpehA2iRGbsDGHqTyBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29077.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 35 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 0 + + + 66 + 21 + + + 83 + 0 + + + + + + 380.p.31166 + 31166 + + Tremon Smith + Tremon + Smith + Tremon + Smith + + nfl.p.31166 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/RYOIZeVCG37GV_PPpnBwew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31166.png + small + + https://s.yimg.com/iu/api/res/1.2/RYOIZeVCG37GV_PPpnBwew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31166.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28265 + 28265 + + K'Waun Williams + K'Waun + Williams + K'Waun + Williams + + knee + nfl.p.28265 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/hfqjrruKE89VM9BAxZPVgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28265.png + small + + https://s.yimg.com/iu/api/res/1.2/hfqjrruKE89VM9BAxZPVgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28265.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 40 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29962 + 29962 + + Tony McRae + Tony + McRae + Tony + McRae + + Q + Questionable + hamstring + nfl.p.29962 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/90Smu9hPsQGLxAEPTufLTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29962.1.png + small + + https://s.yimg.com/iu/api/res/1.2/90Smu9hPsQGLxAEPTufLTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29962.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 4 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30179 + 30179 + + Ahkello Witherspoon + Ahkello + Witherspoon + Ahkello + Witherspoon + + IR + Injured Reserve + knee + nfl.p.30179 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/ZuV98aj_QEiBPetRhsf94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30179.png + small + + https://s.yimg.com/iu/api/res/1.2/ZuV98aj_QEiBPetRhsf94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30179.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 30 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28244 + 28244 + + Malcolm Butler + Malcolm + Butler + Malcolm + Butler + + nfl.p.28244 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/RrJfM.Af3pYLlhDrHi21Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28244.png + small + + https://s.yimg.com/iu/api/res/1.2/RrJfM.Af3pYLlhDrHi21Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28244.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 60 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 3 + + + 42 + 1 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 4 + + + 66 + 90 + + + 83 + 0 + + + + + + 380.p.28406 + 28406 + + Marcus Peters + Marcus + Peters + Marcus + Peters + + calf + nfl.p.28406 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/ZKm2ERyYvQ6NXjqQtOambw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28406.png + small + + https://s.yimg.com/iu/api/res/1.2/ZKm2ERyYvQ6NXjqQtOambw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28406.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 18 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 0 + + + 66 + 107 + + + 83 + 0 + + + + + + 380.p.30129 + 30129 + + Marlon Humphrey + Marlon + Humphrey + Marlon + Humphrey + + groin + nfl.p.30129 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/zHoTnR_rrXA88CiUlHTYcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30129.png + small + + https://s.yimg.com/iu/api/res/1.2/zHoTnR_rrXA88CiUlHTYcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30129.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 31 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 15 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26635 + 26635 + + D.J. Hayden + D.J. + Hayden + D.J. + Hayden + + groin + nfl.p.26635 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/_TcrjQcupmQrfeuYmlDrXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26635.png + small + + https://s.yimg.com/iu/api/res/1.2/_TcrjQcupmQrfeuYmlDrXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26635.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 39 + + + 39 + 7 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 2 + + + 66 + 10 + + + 83 + 0 + + + + + + 380.p.8797 + 8797 + + Aqib Talib + Aqib + Talib + Aqib + Talib + + ankle + nfl.p.8797 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/kG4ovuIp.k4IkikKrkFaBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8797.png + small + + https://s.yimg.com/iu/api/res/1.2/kG4ovuIp.k4IkikKrkFaBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8797.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 18 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 0 + + + 66 + 77 + + + 83 + 0 + + + + + + 380.p.26659 + 26659 + + Darius Slay + Darius + Slay + Darius + Slay + + ankle + nfl.p.26659 + nfl.t.8 + Detroit Lions + Det + + 6 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/2a7LeWH10KI.NqVkRg0H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26659.png + small + + https://s.yimg.com/iu/api/res/1.2/2a7LeWH10KI.NqVkRg0H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26659.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 40 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 17 + + + 47 + 0 + + + 65 + 1 + + + 66 + 107 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.25825 + 25825 + + Coty Sensabaugh + Coty + Sensabaugh + Coty + Sensabaugh + + toe + nfl.p.25825 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/BdJRof9eCw84swIo1bBoMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/25825.png + small + + https://s.yimg.com/iu/api/res/1.2/BdJRof9eCw84swIo1bBoMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/25825.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 40 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26645 + 26645 + + Desmond Trufant + Desmond + Trufant + Desmond + Trufant + + nfl.p.26645 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/kEMDvSFRV1vNcpmQTa9kNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26645.png + small + + https://s.yimg.com/iu/api/res/1.2/kEMDvSFRV1vNcpmQTa9kNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26645.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 55 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29338 + 29338 + + Tavon Young + Tavon + Young + Tavon + Young + + Q + Questionable + groin + nfl.p.29338 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/uBmBzr.lVc0dyvrN51_E.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29338.png + small + + https://s.yimg.com/iu/api/res/1.2/uBmBzr.lVc0dyvrN51_E.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29338.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 35 + + + 39 + 2 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 2 + + + 44 + 2 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 5 + + + 66 + 74 + + + 83 + 0 + + + + + + 380.p.9480 + 9480 + + Captain Munnerlyn + Captain + Munnerlyn + Captain + Munnerlyn + + nfl.p.9480 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/yYEXjLHzqP.6w7txPK1x0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9480.png + small + + https://s.yimg.com/iu/api/res/1.2/yYEXjLHzqP.6w7txPK1x0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9480.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 38 + + + 39 + 9 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 3 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.27642 + 27642 + + Aaron Colvin + Aaron + Colvin + Aaron + Colvin + + ankle + nfl.p.27642 + nfl.t.34 + Houston Texans + Hou + + 10 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/sN22N3_xFF5j9_KkfxhI7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27642.png + small + + https://s.yimg.com/iu/api/res/1.2/sN22N3_xFF5j9_KkfxhI7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27642.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 22 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30124 + 30124 + + Marshon Lattimore + Marshon + Lattimore + Marshon + Lattimore + + nfl.p.30124 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/HJ9EYcTvW2Zdd2crtuwyug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30124.png + small + + https://s.yimg.com/iu/api/res/1.2/HJ9EYcTvW2Zdd2crtuwyug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30124.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 49 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 4 + + + 43 + 3 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 1 + + + 66 + 91 + + + 83 + 0 + + + + + + 380.p.30212 + 30212 + + Rasul Douglas + Rasul + Douglas + Rasul + Douglas + + knee, ankle + nfl.p.30212 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/aIWAJS6EeUMtHcoeXIRqiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30212.png + small + + https://s.yimg.com/iu/api/res/1.2/aIWAJS6EeUMtHcoeXIRqiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30212.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 48 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 6 + + + 66 + 14 + + + 83 + 0 + + + + + + 380.p.30194 + 30194 + + Fabian Moreau + Fabian + Moreau + Fabian + Moreau + + nfl.p.30194 + nfl.t.28 + Washington Redskins + Was + + 4 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/dfI7WuHP63jlpUe.7Wxy6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30194.png + small + + https://s.yimg.com/iu/api/res/1.2/dfI7WuHP63jlpUe.7Wxy6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30194.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 37 + + + 39 + 21 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 3 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 0 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.29342 + 29342 + + Ryan Smith + Ryan + Smith + Ryan + Smith + + nfl.p.29342 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/sK9S9QRHCbohjuWMl3mvxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29342.png + small + + https://s.yimg.com/iu/api/res/1.2/sK9S9QRHCbohjuWMl3mvxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29342.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 1 + + + 66 + 3 + + + 83 + 0 + + + + + + 380.p.7773 + 7773 + + Johnathan Joseph + Johnathan + Joseph + Johnathan + Joseph + + neck + nfl.p.7773 + nfl.t.34 + Houston Texans + Hou + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/_zNon7rgQYjm4sCaBWcgPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7773.png + small + + https://s.yimg.com/iu/api/res/1.2/_zNon7rgQYjm4sCaBWcgPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7773.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 49 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 13 + + + 47 + 0 + + + 65 + 1 + + + 66 + 46 + + + 83 + 0 + + + + + + 380.p.29296 + 29296 + + James Bradberry + James + Bradberry + James + Bradberry + + nfl.p.29296 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/KT4TwEEgUG28i3PwHpCh9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29296.png + small + + https://s.yimg.com/iu/api/res/1.2/KT4TwEEgUG28i3PwHpCh9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29296.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 58 + + + 39 + 12 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 15 + + + 47 + 0 + + + 65 + 1 + + + 66 + 29 + + + 83 + 0 + + + + + + 380.p.24814 + 24814 + + Jimmy Smith + Jimmy + Smith + Jimmy + Smith + + groin + nfl.p.24814 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/tcMUHFjAVZVTsRNYZDLoug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24814.png + small + + https://s.yimg.com/iu/api/res/1.2/tcMUHFjAVZVTsRNYZDLoug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24814.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 34 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 1 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.31671 + 31671 + + Tony Brown + Tony + Brown + Tony + Brown + + hip + nfl.p.31671 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 30 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31634 + 31634 + + Mike Ford + Mike + Ford + Mike + Ford + + Q + Questionable + nfl.p.31634 + nfl.t.8 + Detroit Lions + Det + + 6 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 24 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26706 + 26706 + + Logan Ryan + Logan + Ryan + Logan + Ryan + + IR + Injured Reserve + broken left fibula + nfl.p.26706 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/QxN6JKMX5xiBa7pACY8.sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26706.png + small + + https://s.yimg.com/iu/api/res/1.2/QxN6JKMX5xiBa7pACY8.sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26706.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 54 + + + 39 + 22 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29239 + 29239 + + Jalen Ramsey + Jalen + Ramsey + Jalen + Ramsey + + knee + nfl.p.29239 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/G78YTs0Fgcafde6JOMmmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29239.png + small + + https://s.yimg.com/iu/api/res/1.2/G78YTs0Fgcafde6JOMmmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29239.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 10 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 62 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 13 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25994 + 25994 + + Deshawn Shead + Deshawn + Shead + Deshawn + Shead + + IR + Injured Reserve + knee + nfl.p.25994 + nfl.t.8 + Detroit Lions + Det + + 6 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/HmkIaVxXJbJ8JTTGIiMG.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25994.png + small + + https://s.yimg.com/iu/api/res/1.2/HmkIaVxXJbJ8JTTGIiMG.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25994.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 13 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30646 + 30646 + + Torry McTyer + Torry + McTyer + Torry + McTyer + + Q + Questionable + nfl.p.30646 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/_lC5ckaBfd.Wq2wonaw4ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30646.png + small + + https://s.yimg.com/iu/api/res/1.2/_lC5ckaBfd.Wq2wonaw4ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30646.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 22 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28972 + 28972 + + Troy Hill + Troy + Hill + Troy + Hill + + nfl.p.28972 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/NzGZ_Dd_BlzCc6aFQIwknQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28972.png + small + + https://s.yimg.com/iu/api/res/1.2/NzGZ_Dd_BlzCc6aFQIwknQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28972.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 29 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 7 + + + 83 + 0 + + + + + + 380.p.24120 + 24120 + + Sherrick McManis + Sherrick + McManis + Sherrick + McManis + + hamstring + nfl.p.24120 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/v6KZj9CRQ34G2Bmyu7xSmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24120.png + small + + https://s.yimg.com/iu/api/res/1.2/v6KZj9CRQ34G2Bmyu7xSmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24120.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 24 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29430 + 29430 + + Blake Countess + Blake + Countess + Blake + Countess + + nfl.p.29430 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/Qd1aFE8iTzSQoo9.1b2l0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29430.png + small + + https://s.yimg.com/iu/api/res/1.2/Qd1aFE8iTzSQoo9.1b2l0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29430.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28533 + 28533 + + Bobby McCain + Bobby + McCain + Bobby + McCain + + Q + Questionable + knee + nfl.p.28533 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/HZA2gVgdI6V0qpCQaD3foQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28533.png + small + + https://s.yimg.com/iu/api/res/1.2/HZA2gVgdI6V0qpCQaD3foQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28533.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 50 + + + 39 + 11 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30491 + 30491 + + Ryan Lewis + Ryan + Lewis + Ryan + Lewis + + Q + Questionable + concussion + nfl.p.30491 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/HMJks7EjgaqUnfjJjCJDxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30491.png + small + + https://s.yimg.com/iu/api/res/1.2/HMJks7EjgaqUnfjJjCJDxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30491.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 12 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30271 + 30271 + + Nate Hairston + Nate + Hairston + Nate + Hairston + + hip + nfl.p.30271 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/SCFyyxnc2PDrPHLat4X6CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30271.png + small + + https://s.yimg.com/iu/api/res/1.2/SCFyyxnc2PDrPHLat4X6CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30271.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 25 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29367 + 29367 + + Rashard Robinson + Rashard + Robinson + Rashard + Robinson + + nfl.p.29367 + nfl.t.20 + New York Jets + NYJ + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/nAwrUOYbKzLSAizvfrvfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29367.png + small + + https://s.yimg.com/iu/api/res/1.2/nAwrUOYbKzLSAizvfrvfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29367.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 7 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.24876 + 24876 + + Shareece Wright + Shareece + Wright + Shareece + Wright + + shoulder, hand, groin + nfl.p.24876 + nfl.t.34 + Houston Texans + Hou + + 10 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/wzRJaF0V2_sDwZ_QPuL81Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24876.png + small + + https://s.yimg.com/iu/api/res/1.2/wzRJaF0V2_sDwZ_QPuL81Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24876.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 25 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28399 + 28399 + + Trae Waynes + Trae + Waynes + Trae + Waynes + + concussion + nfl.p.28399 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/_nY8CjIp_gA38lmkFCMPiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28399.png + small + + https://s.yimg.com/iu/api/res/1.2/_nY8CjIp_gA38lmkFCMPiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28399.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 34 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 0 + + + 66 + 24 + + + 83 + 0 + + + + + + 380.p.28637 + 28637 + + Akeem King + Akeem + King + Akeem + King + + nfl.p.28637 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/yg2x2tsPqZEeKdJjEM9JWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28637.png + small + + https://s.yimg.com/iu/api/res/1.2/yg2x2tsPqZEeKdJjEM9JWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28637.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29311 + 29311 + + Daryl Worley + Daryl + Worley + Daryl + Worley + + IR + Injured Reserve + shoulder + nfl.p.29311 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/LjiDzXr8DHcqOXU1VTyArw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29311.png + small + + https://s.yimg.com/iu/api/res/1.2/LjiDzXr8DHcqOXU1VTyArw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29311.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 30 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 3 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.29607 + 29607 + + Chris Milton + Chris + Milton + Chris + Milton + + hamstring + nfl.p.29607 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/F9Hd3Hj.Na.S5NfCPpWuDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29607.png + small + + https://s.yimg.com/iu/api/res/1.2/F9Hd3Hj.Na.S5NfCPpWuDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29607.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 5 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28486 + 28486 + + Steven Nelson + Steven + Nelson + Steven + Nelson + + nfl.p.28486 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/Q_l6vmzUQdjhmyqvQk8MVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28486.png + small + + https://s.yimg.com/iu/api/res/1.2/Q_l6vmzUQdjhmyqvQk8MVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28486.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 58 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 4 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 15 + + + 47 + 0 + + + 65 + 2 + + + 66 + 53 + + + 83 + 0 + + + + + + 380.p.31080 + 31080 + + Nick Nelson + Nick + Nelson + Nick + Nelson + + illness + nfl.p.31080 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/CKyV8.4MigcGMPGpx.9tWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31080.png + small + + https://s.yimg.com/iu/api/res/1.2/CKyV8.4MigcGMPGpx.9tWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31080.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 10 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31028 + 31028 + + Isaiah Oliver + Isaiah + Oliver + Isaiah + Oliver + + ankle + nfl.p.31028 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/wqxxV5V44denS.jj6RMJrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31028.png + small + + https://s.yimg.com/iu/api/res/1.2/wqxxV5V44denS.jj6RMJrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31028.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 20 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27552 + 27552 + + Darqueze Dennard + Darqueze + Dennard + Darqueze + Dennard + + sternoclavicular + nfl.p.27552 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/8wKOX6yslW5l0JTPgFuDSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27552.png + small + + https://s.yimg.com/iu/api/res/1.2/8wKOX6yslW5l0JTPgFuDSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27552.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 54 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27542 + 27542 + + Kyle Fuller + Kyle + Fuller + Kyle + Fuller + + nfl.p.27542 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/pdtijlC1QCd2_0q9TDAdag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27542.png + small + + https://s.yimg.com/iu/api/res/1.2/pdtijlC1QCd2_0q9TDAdag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27542.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 29 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 45 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 7 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 21 + + + 47 + 0 + + + 65 + 0 + + + 66 + 52 + + + 83 + 0 + + + + + + 380.p.31402 + 31402 + + Danny Johnson + Danny + Johnson + Danny + Johnson + + IR + Injured Reserve + finger + nfl.p.31402 + nfl.t.28 + Washington Redskins + Was + + 4 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/cSDMWKZuOwmWI9qLgUAcBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31402.png + small + + https://s.yimg.com/iu/api/res/1.2/cSDMWKZuOwmWI9qLgUAcBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31402.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 9 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31293 + 31293 + + Charvarius Ward + Charvarius + Ward + Charvarius + Ward + + nfl.p.31293 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/DwdZ2V0vfW4uoJO7q22v4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31293.png + small + + https://s.yimg.com/iu/api/res/1.2/DwdZ2V0vfW4uoJO7q22v4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31293.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 26 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29287 + 29287 + + Mackensie Alexander + Mackensie + Alexander + Mackensie + Alexander + + knee + nfl.p.29287 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/5d2Khnf8EjX_xb4wOfXUWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29287.png + small + + https://s.yimg.com/iu/api/res/1.2/5d2Khnf8EjX_xb4wOfXUWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29287.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 36 + + + 39 + 7 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31023 + 31023 + + M.J. Stewart + M.J. + Stewart + M.J. + Stewart + + foot + nfl.p.31023 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/o_vz3glcMYxFkkqDeZ_9Qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31023.png + small + + https://s.yimg.com/iu/api/res/1.2/o_vz3glcMYxFkkqDeZ_9Qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31023.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 31 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27615 + 27615 + + Phillip Gaines + Phillip + Gaines + Phillip + Gaines + + knee + nfl.p.27615 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/gE5KQa4R9P1_CDQrMYU.DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27615.png + small + + https://s.yimg.com/iu/api/res/1.2/gE5KQa4R9P1_CDQrMYU.DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27615.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 31 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31069 + 31069 + + Isaac Yiadom + Isaac + Yiadom + Isaac + Yiadom + + shoulder + nfl.p.31069 + nfl.t.7 + Denver Broncos + Den + + 10 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/NpFWqpRLIX9TEU2EmUnMLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31069.png + small + + https://s.yimg.com/iu/api/res/1.2/NpFWqpRLIX9TEU2EmUnMLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31069.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 17 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.27661 + 27661 + + Nevin Lawson + Nevin + Lawson + Nevin + Lawson + + Q + Questionable + ankle + nfl.p.27661 + nfl.t.8 + Detroit Lions + Det + + 6 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/3FOyLpraW4X4esF22PYBLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27661.png + small + + https://s.yimg.com/iu/api/res/1.2/3FOyLpraW4X4esF22PYBLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27661.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 43 + + + 39 + 10 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29507 + 29507 + + Briean Boddy-Calhoun + Briean + Boddy-Calhoun + Briean + Boddy-Calhoun + + nfl.p.29507 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/3uYc1TbSksI4QR5Spgbb5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29507.png + small + + https://s.yimg.com/iu/api/res/1.2/3uYc1TbSksI4QR5Spgbb5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29507.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 44 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31262 + 31262 + + Tre Herndon + Tre + Herndon + Tre + Herndon + + ankle + nfl.p.31262 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 41 + CB + + https://s.yimg.com/iu/api/res/1.2/v_uzVHg0V3HsBdizFl0.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31262.png + small + + https://s.yimg.com/iu/api/res/1.2/v_uzVHg0V3HsBdizFl0.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31262.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 10 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26674 + 26674 + + David Amerson + David + Amerson + David + Amerson + + nfl.p.26674 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/sIJVETCSqWzb0wo6l3vAXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26674.png + small + + https://s.yimg.com/iu/api/res/1.2/sIJVETCSqWzb0wo6l3vAXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26674.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 17 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 25 + + + 83 + 0 + + + + + + 380.p.28466 + 28466 + + P.J. Williams + P.J. + Williams + P.J. + Williams + + nfl.p.28466 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/ViXeMs_Rzsn3_cmCl69lQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28466.png + small + + https://s.yimg.com/iu/api/res/1.2/ViXeMs_Rzsn3_cmCl69lQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28466.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 44 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 2 + + + 66 + 45 + + + 83 + 0 + + + + + + 380.p.29534 + 29534 + + Trevor Williams + Trevor + Williams + Trevor + Williams + + IR + Injured Reserve + knee + nfl.p.29534 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/r4oAm2GR32nSk_jSzuQBfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29534.png + small + + https://s.yimg.com/iu/api/res/1.2/r4oAm2GR32nSk_jSzuQBfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29534.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 19 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 86 + + + 83 + 0 + + + + + + 380.p.31650 + 31650 + + J.C. Jackson + J.C. + Jackson + J.C. + Jackson + + nfl.p.31650 + nfl.t.17 + New England Patriots + NE + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 22 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 1 + + + 66 + 9 + + + 83 + 0 + + + + + + 380.p.30166 + 30166 + + Teez Tabor + Teez + Tabor + Teez + Tabor + + nfl.p.30166 + nfl.t.8 + Detroit Lions + Det + + 6 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/TA.Vn7n_mGvWwScIUB3J5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30166.png + small + + https://s.yimg.com/iu/api/res/1.2/TA.Vn7n_mGvWwScIUB3J5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30166.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 24 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30014 + 30014 + + Javien Elliott + Javien + Elliott + Javien + Elliott + + nfl.p.30014 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/roSklCxHzmZL5Sbh1qFjLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30014.png + small + + https://s.yimg.com/iu/api/res/1.2/roSklCxHzmZL5Sbh1qFjLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30014.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 22 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 50 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29655 + 29655 + + Brian Poole + Brian + Poole + Brian + Poole + + nfl.p.29655 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/eJQB8KK5qJU41.1Yjy_tZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29655.png + small + + https://s.yimg.com/iu/api/res/1.2/eJQB8KK5qJU41.1Yjy_tZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29655.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 53 + + + 39 + 21 + + + 40 + 3.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 4 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.30137 + 30137 + + Gareon Conley + Gareon + Conley + Gareon + Conley + + concussion + nfl.p.30137 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/uhBL1R1O9.Q0fMhIb8C3pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30137.png + small + + https://s.yimg.com/iu/api/res/1.2/uhBL1R1O9.Q0fMhIb8C3pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30137.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 24 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 15 + + + 47 + 0 + + + 65 + 0 + + + 66 + 64 + + + 83 + 0 + + + + + + 380.p.29259 + 29259 + + Artie Burns + Artie + Burns + Artie + Burns + + ankle + nfl.p.29259 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/c.0Y0kGFKgATbM3Nz.6wIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29259.png + small + + https://s.yimg.com/iu/api/res/1.2/c.0Y0kGFKgATbM3Nz.6wIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29259.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 17 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 1 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29875 + 29875 + + Jonathan Jones + Jonathan + Jones + Jonathan + Jones + + nfl.p.29875 + nfl.t.17 + New England Patriots + NE + + 11 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/NpKmoNT4FusRlFozezsMsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29875.png + small + + https://s.yimg.com/iu/api/res/1.2/NpKmoNT4FusRlFozezsMsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29875.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 44 + + + 39 + 12 + + + 40 + 1.5 + + + 41 + 3 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 1 + + + 66 + 34 + + + 83 + 0 + + + + + + 380.p.24941 + 24941 + + Richard Sherman + Richard + Sherman + Richard + Sherman + + calf, heel + nfl.p.24941 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/5_7evsVTGzZZZyLthYMbJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24941.png + small + + https://s.yimg.com/iu/api/res/1.2/5_7evsVTGzZZZyLthYMbJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24941.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 30 + + + 39 + 7 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27676 + 27676 + + Bene Benwikere + Bene + Benwikere + Bene + Benwikere + + neck + nfl.p.27676 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/YfTDlqjjIj7cDPV1fxVwHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27676.png + small + + https://s.yimg.com/iu/api/res/1.2/YfTDlqjjIj7cDPV1fxVwHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27676.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 41 + + + 39 + 13 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 2 + + + 66 + 21 + + + 83 + 0 + + + + + + 380.p.29467 + 29467 + + Jalen Mills + Jalen + Mills + Jalen + Mills + + IR + Injured Reserve + foot + nfl.p.29467 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 31 + CB + + https://s.yimg.com/iu/api/res/1.2/qO8V.7IthFyaI7_k3UMbxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29467.png + small + + https://s.yimg.com/iu/api/res/1.2/qO8V.7IthFyaI7_k3UMbxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29467.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 36 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25749 + 25749 + + Janoris Jenkins + Janoris + Jenkins + Janoris + Jenkins + + nfl.p.25749 + nfl.t.19 + New York Giants + NYG + + 9 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/gRoQSHFSgPvr0JVPQ4irAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/25749.png + small + + https://s.yimg.com/iu/api/res/1.2/gRoQSHFSgPvr0JVPQ4irAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/25749.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 59 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 15 + + + 47 + 0 + + + 65 + 2 + + + 66 + 29 + + + 83 + 0 + + + + + + 380.p.30422 + 30422 + + Michael Davis + Michael + Davis + Michael + Davis + + nfl.p.30422 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/uATeIhA1FEJlncS3z7iw9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30422.png + small + + https://s.yimg.com/iu/api/res/1.2/uATeIhA1FEJlncS3z7iw9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30422.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 40 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28656 + 28656 + + Denzel Rice + Denzel + Rice + Denzel + Rice + + nfl.p.28656 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/_w8ZOhTkPr8FhTF3rf_ZZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28656.png + small + + https://s.yimg.com/iu/api/res/1.2/_w8ZOhTkPr8FhTF3rf_ZZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28656.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24685 + 24685 + + Marcus Sherels + Marcus + Sherels + Marcus + Sherels + + Q + Questionable + foot + nfl.p.24685 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/QP_qX8GDf5Sj09_m1BquYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24685.png + small + + https://s.yimg.com/iu/api/res/1.2/QP_qX8GDf5Sj09_m1BquYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24685.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31321 + 31321 + + Tavierre Thomas + Tavierre + Thomas + Tavierre + Thomas + + abdomen + nfl.p.31321 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/CFULg7dD9KoDclD_XDO8Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31321.1.png + small + + https://s.yimg.com/iu/api/res/1.2/CFULg7dD9KoDclD_XDO8Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31321.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 7 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28588 + 28588 + + Quandre Diggs + Quandre + Diggs + Quandre + Diggs + + back + nfl.p.28588 + nfl.t.8 + Detroit Lions + Det + + 6 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/yqybQfnCXJY2webKdG0Kaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28588.png + small + + https://s.yimg.com/iu/api/res/1.2/yqybQfnCXJY2webKdG0Kaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28588.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 64 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 3 + + + 66 + 41 + + + 83 + 0 + + + + + + 380.p.25727 + 25727 + + Dre Kirkpatrick + Dre + Kirkpatrick + Dre + Kirkpatrick + + IR + Injured Reserve + shoulder + nfl.p.25727 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/3aWz03G1AyCx2.Jh.JkKGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25727.png + small + + https://s.yimg.com/iu/api/res/1.2/3aWz03G1AyCx2.Jh.JkKGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25727.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 35 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24806 + 24806 + + Prince Amukamara + Prince + Amukamara + Prince + Amukamara + + hamstring + nfl.p.24806 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/2B8u1TO5XG3bHqDjTx0WBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24806.png + small + + https://s.yimg.com/iu/api/res/1.2/2B8u1TO5XG3bHqDjTx0WBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24806.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 57 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 2 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 3 + + + 66 + 58 + + + 83 + 0 + + + + + + 380.p.27655 + 27655 + + Pierre Desir + Pierre + Desir + Pierre + Desir + + nfl.p.27655 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/JUyMTcFvegMfD4AGZlQU6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27655.png + small + + https://s.yimg.com/iu/api/res/1.2/JUyMTcFvegMfD4AGZlQU6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27655.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 60 + + + 39 + 19 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 2 + + + 66 + 1 + + + 83 + 0 + + + + + + 380.p.25720 + 25720 + + Stephon Gilmore + Stephon + Gilmore + Stephon + Gilmore + + ankle + nfl.p.25720 + nfl.t.17 + New England Patriots + NE + + 11 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/0OY8sKY72UdSsKyMPajKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25720.png + small + + https://s.yimg.com/iu/api/res/1.2/0OY8sKY72UdSsKyMPajKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25720.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 40 + + + 39 + 5 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 20 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30207 + 30207 + + Cameron Sutton + Cameron + Sutton + Cameron + Sutton + + not injury related + nfl.p.30207 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/YpEUUx.oQSBH7mLWWIBbAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30207.png + small + + https://s.yimg.com/iu/api/res/1.2/YpEUUx.oQSBH7mLWWIBbAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30207.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 20 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29391 + 29391 + + LeShaun Sims + LeShaun + Sims + LeShaun + Sims + + nfl.p.29391 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/185NYlTQQXhnkFszKG0PrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29391.png + small + + https://s.yimg.com/iu/api/res/1.2/185NYlTQQXhnkFszKG0PrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29391.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28418 + 28418 + + Damarious Randall + Damarious + Randall + Damarious + Randall + + hamstring + nfl.p.28418 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/NALid2.5DS5Tmm6kwK20EQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28418.png + small + + https://s.yimg.com/iu/api/res/1.2/NALid2.5DS5Tmm6kwK20EQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28418.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 12 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 72 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 4 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 2 + + + 66 + 59 + + + 83 + 0 + + + + + + 380.p.25887 + 25887 + + Justin Bethel + Justin + Bethel + Justin + Bethel + + knee + nfl.p.25887 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/jq1krnnS37CrT.MUon64FA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25887.png + small + + https://s.yimg.com/iu/api/res/1.2/jq1krnnS37CrT.MUon64FA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25887.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 12 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30974 + 30974 + + Denzel Ward + Denzel + Ward + Denzel + Ward + + Q + Questionable + concussion + nfl.p.30974 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/x_9vj3Tk.xNrRUri2wF.gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30974.png + small + + https://s.yimg.com/iu/api/res/1.2/x_9vj3Tk.xNrRUri2wF.gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30974.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 41 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 1 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 11 + + + 47 + 1 + + + 65 + 5 + + + 66 + 55 + + + 83 + 0 + + + + + + 380.p.29244 + 29244 + + Eli Apple + Eli + Apple + Eli + Apple + + groin + nfl.p.29244 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/gkh13XCen0Br2kjNKF0Ibw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29244.png + small + + https://s.yimg.com/iu/api/res/1.2/gkh13XCen0Br2kjNKF0Ibw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29244.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 18 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 62 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 14 + + + 47 + 0 + + + 65 + 0 + + + 66 + 31 + + + 83 + 0 + + + + + + 380.p.27041 + 27041 + + Rashaan Melvin + Rashaan + Melvin + Rashaan + Melvin + + nfl.p.27041 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/dvJ7Z1NaeE06xbpaNz2Pfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27041.png + small + + https://s.yimg.com/iu/api/res/1.2/dvJ7Z1NaeE06xbpaNz2Pfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27041.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 52 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 1 + + + 66 + 15 + + + 83 + 0 + + + + + + 380.p.7182 + 7182 + + Adam Jones + Adam + Jones + Adam + Jones + + NA + Inactive: Coach's Decision or Not on Roster + thigh + nfl.p.7182 + nfl.t.7 + Denver Broncos + Den + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/WMIX25U2vrcjuOyFTbIBIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/7182.png + small + + https://s.yimg.com/iu/api/res/1.2/WMIX25U2vrcjuOyFTbIBIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/7182.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 9 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27716 + 27716 + + E.J. Gaines + E.J. + Gaines + E.J. + Gaines + + IR + Injured Reserve + concussion + nfl.p.27716 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/Yl8XcZdNteLs1h3L9jpFAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27716.png + small + + https://s.yimg.com/iu/api/res/1.2/Yl8XcZdNteLs1h3L9jpFAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27716.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 11 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30203 + 30203 + + Shaquill Griffin + Shaquill + Griffin + Shaquill + Griffin + + hip + nfl.p.30203 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/gjnw3HDCFbfpjNEN0JeVcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30203.png + small + + https://s.yimg.com/iu/api/res/1.2/gjnw3HDCFbfpjNEN0JeVcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30203.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 55 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 3 + + + 66 + 8 + + + 83 + 0 + + + + + + 380.p.31000 + 31000 + + Mike Hughes + Mike + Hughes + Mike + Hughes + + IR + Injured Reserve + torn ACL + nfl.p.31000 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/JsJbpjMca5yR5RDE6drZRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31000.png + small + + https://s.yimg.com/iu/api/res/1.2/JsJbpjMca5yR5RDE6drZRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31000.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 19 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 28 + + + 83 + 0 + + + + + + 380.p.29847 + 29847 + + De'Vante Harris + De'Vante + Harris + De'Vante + Harris + + hamstring + nfl.p.29847 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/LGbwSfWNxr8tbMThTCws0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29847.png + small + + https://s.yimg.com/iu/api/res/1.2/LGbwSfWNxr8tbMThTCws0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29847.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 9 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30477 + 30477 + + Greg Mabin + Greg + Mabin + Greg + Mabin + + nfl.p.30477 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/Fo40tJ_3RHzfJpJCCqn6JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30477.png + small + + https://s.yimg.com/iu/api/res/1.2/Fo40tJ_3RHzfJpJCCqn6JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30477.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 12 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.31033 + 31033 + + Carlton Davis III + Carlton + Davis III + Carlton + Davis III + + Q + Questionable + knee + nfl.p.31033 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 33 + CB + + https://s.yimg.com/iu/api/res/1.2/U0NJO9DfUw0G9veTen.abg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31033.png + small + + https://s.yimg.com/iu/api/res/1.2/U0NJO9DfUw0G9veTen.abg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31033.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 36 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27007 + 27007 + + Nickell Robey-Coleman + Nickell + Robey-Coleman + Nickell + Robey-Coleman + + nfl.p.27007 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/BbJQexUmHQAKesD.I3rxUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27007.png + small + + https://s.yimg.com/iu/api/res/1.2/BbJQexUmHQAKesD.I3rxUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27007.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24578 + 24578 + + Tramaine Brock + Tramaine + Brock + Tramaine + Brock + + ribs + nfl.p.24578 + nfl.t.7 + Denver Broncos + Den + + 10 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/RvZrO38LiqPlzb7IszjNKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24578.png + small + + https://s.yimg.com/iu/api/res/1.2/RvZrO38LiqPlzb7IszjNKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24578.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 19 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29510 + 29510 + + Mike Hilton + Mike + Hilton + Mike + Hilton + + elbow + nfl.p.29510 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/kaSew_IJq_kgkXWyN4nHrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29510.png + small + + https://s.yimg.com/iu/api/res/1.2/kaSew_IJq_kgkXWyN4nHrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29510.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 44 + + + 39 + 13 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 6 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.29423 + 29423 + + Anthony Brown + Anthony + Brown + Anthony + Brown + + back + nfl.p.29423 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/XKa.A.ikhaHbZSaX_hvczw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29423.png + small + + https://s.yimg.com/iu/api/res/1.2/XKa.A.ikhaHbZSaX_hvczw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29423.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 38 + + + 39 + 6 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 2 + + + 66 + 1 + + + 83 + 0 + + + + + + 380.p.29258 + 29258 + + William Jackson + William + Jackson + William + Jackson + + knee + nfl.p.29258 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/Xu_5ZyNVsTn4TmZEH3UtJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29258.png + small + + https://s.yimg.com/iu/api/res/1.2/Xu_5ZyNVsTn4TmZEH3UtJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29258.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 34 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 13 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25772 + 25772 + + Casey Hayward Jr. + Casey + Hayward Jr. + Casey + Hayward Jr. + + nfl.p.25772 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/FSBY5VN3hIEQcK1NsHzPog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25772.png + small + + https://s.yimg.com/iu/api/res/1.2/FSBY5VN3hIEQcK1NsHzPog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25772.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 41 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29876 + 29876 + + Cre'von LeBlanc + Cre'von + LeBlanc + Cre'von + LeBlanc + + hamstring + nfl.p.29876 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 34 + CB + + https://s.yimg.com/iu/api/res/1.2/QuGx.PZZ.mpsHAgOvWA7qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29876.png + small + + https://s.yimg.com/iu/api/res/1.2/QuGx.PZZ.mpsHAgOvWA7qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29876.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 22 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8906 + 8906 + + Brandon Carr + Brandon + Carr + Brandon + Carr + + knee + nfl.p.8906 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/ZP4yd_t1Z1dmuA3F_f85kQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8906.png + small + + https://s.yimg.com/iu/api/res/1.2/ZP4yd_t1Z1dmuA3F_f85kQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8906.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 39 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 11 + + + 47 + 0 + + + 65 + 0 + + + 66 + 26 + + + 83 + 0 + + + + + + 380.p.30988 + 30988 + + Jaire Alexander + Jaire + Alexander + Jaire + Alexander + + Q + Questionable + groin + nfl.p.30988 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/dnz5twArrd25VA7n31_UmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30988.png + small + + https://s.yimg.com/iu/api/res/1.2/dnz5twArrd25VA7n31_UmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30988.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 61 + + + 39 + 5 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 11 + + + 47 + 0 + + + 65 + 3 + + + 66 + 27 + + + 83 + 0 + + + + + + 380.p.31676 + 31676 + + Brandon Facyson + Brandon + Facyson + Brandon + Facyson + + concussion + nfl.p.31676 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 36 + CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28835 + 28835 + + Justin Coleman + Justin + Coleman + Justin + Coleman + + nfl.p.28835 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 28 + CB + + https://s.yimg.com/iu/api/res/1.2/H2UW2gLjiCotQAF_K8z05A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28835.png + small + + https://s.yimg.com/iu/api/res/1.2/H2UW2gLjiCotQAF_K8z05A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28835.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 41 + + + 39 + 14 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 1 + + + 43 + 2 + + + 44 + 1 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 0 + + + 66 + 29 + + + 83 + 0 + + + + + + 380.p.25853 + 25853 + + Josh Norman + Josh + Norman + Josh + Norman + + nfl.p.25853 + nfl.t.28 + Washington Redskins + Was + + 4 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/cGjJxhT71_qs3YWW4xx8PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/25853.png + small + + https://s.yimg.com/iu/api/res/1.2/cGjJxhT71_qs3YWW4xx8PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/25853.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 40 + + + 39 + 24 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 1 + + + 66 + 79 + + + 83 + 0 + + + + + + 380.p.8272 + 8272 + + Leon Hall + Leon + Hall + Leon + Hall + + IR + Injured Reserve + undisclosed + nfl.p.8272 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/wLaleWP8xm6bJEYnwo_iOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8272.png + small + + https://s.yimg.com/iu/api/res/1.2/wLaleWP8xm6bJEYnwo_iOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8272.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 22 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27630 + 27630 + + Bashaud Breeland + Bashaud + Breeland + Bashaud + Breeland + + groin, not injury related + nfl.p.27630 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/MDAE_uKY.vuS2oGt011sCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27630.png + small + + https://s.yimg.com/iu/api/res/1.2/MDAE_uKY.vuS2oGt011sCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27630.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 16 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 1 + + + 66 + 48 + + + 83 + 0 + + + + + + 380.p.28705 + 28705 + + Bryce Callahan + Bryce + Callahan + Bryce + Callahan + + IR + Injured Reserve + broken left foot + nfl.p.28705 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/578lPXK.bPoIYJtwMtD8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28705.png + small + + https://s.yimg.com/iu/api/res/1.2/578lPXK.bPoIYJtwMtD8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28705.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 15 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 39 + + + 39 + 6 + + + 40 + 2.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 6 + + + 66 + 12 + + + 83 + 0 + + + + + + 380.p.29318 + 29318 + + Kendall Fuller + Kendall + Fuller + Kendall + Fuller + + thumb + nfl.p.29318 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/URm7gBBnr3iC.l3WcaoZZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29318.png + small + + https://s.yimg.com/iu/api/res/1.2/URm7gBBnr3iC.l3WcaoZZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29318.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 64 + + + 39 + 18 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30173 + 30173 + + Chidobe Awuzie + Chidobe + Awuzie + Chidobe + Awuzie + + ankle + nfl.p.30173 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/gGkyul673AkrX8bGd.G.og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30173.png + small + + https://s.yimg.com/iu/api/res/1.2/gGkyul673AkrX8bGd.G.og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30173.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 57 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 11 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29835 + 29835 + + Lafayette Pitts + Lafayette + Pitts + Lafayette + Pitts + + nfl.p.29835 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/kFLJVXv4I1jMegP7HC7SqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29835.png + small + + https://s.yimg.com/iu/api/res/1.2/kFLJVXv4I1jMegP7HC7SqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29835.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25716 + 25716 + + Morris Claiborne + Morris + Claiborne + Morris + Claiborne + + IR + Injured Reserve + shoulder, ankle + nfl.p.25716 + nfl.t.20 + New York Jets + NYJ + + 11 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/T1AsO_2J6STQJC7GsXyUqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25716.png + small + + https://s.yimg.com/iu/api/res/1.2/T1AsO_2J6STQJC7GsXyUqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25716.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 44 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 14 + + + 47 + 0 + + + 65 + 2 + + + 66 + 17 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.25189 + 25189 + + Chris Harris Jr. + Chris + Harris Jr. + Chris + Harris Jr. + + chipped bone right fibula + nfl.p.25189 + nfl.t.7 + Denver Broncos + Den + + 10 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/ErSPxKTMh2THF7IVltXnQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/25189.png + small + + https://s.yimg.com/iu/api/res/1.2/ErSPxKTMh2THF7IVltXnQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/25189.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 40 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 1 + + + 66 + 68 + + + 83 + 0 + + + + + + 380.p.26683 + 26683 + + Robert Alford + Robert + Alford + Robert + Alford + + ankle + nfl.p.26683 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/nGNthxf2SOsG_7adDcyNUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26683.png + small + + https://s.yimg.com/iu/api/res/1.2/nGNthxf2SOsG_7adDcyNUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26683.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 43 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 11 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30342 + 30342 + + Adrian Colbert + Adrian + Colbert + Adrian + Colbert + + IR + Injured Reserve + ankle + nfl.p.30342 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/Ld0U4PLgmivGCSTMBFPU3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30342.png + small + + https://s.yimg.com/iu/api/res/1.2/Ld0U4PLgmivGCSTMBFPU3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30342.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 15 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27782 + 27782 + + Terrance Mitchell + Terrance + Mitchell + Terrance + Mitchell + + wrist + nfl.p.27782 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/AM0s7yrEewolCbu1V.vRBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27782.png + small + + https://s.yimg.com/iu/api/res/1.2/AM0s7yrEewolCbu1V.vRBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27782.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 34 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29326 + 29326 + + Brandon Williams + Brandon + Williams + Brandon + Williams + + nfl.p.29326 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 26 + CB + + https://s.yimg.com/iu/api/res/1.2/emAT9n9Q86qm_q_ihNxH1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29326.1.png + small + + https://s.yimg.com/iu/api/res/1.2/emAT9n9Q86qm_q_ihNxH1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29326.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 10 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27559 + 27559 + + Bradley Roby + Bradley + Roby + Bradley + Roby + + concussion + nfl.p.27559 + nfl.t.7 + Denver Broncos + Den + + 10 + + 29 + CB + + https://s.yimg.com/iu/api/res/1.2/ydiDdmuCv3kaOM5k7PtPUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27559.png + small + + https://s.yimg.com/iu/api/res/1.2/ydiDdmuCv3kaOM5k7PtPUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27559.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 45 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31149 + 31149 + + Parry Nickerson + Parry + Nickerson + Parry + Nickerson + + nfl.p.31149 + nfl.t.20 + New York Jets + NYJ + + 11 + + 43 + CB + + https://s.yimg.com/iu/api/res/1.2/icfI_GF7koovRuRSXctfRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/31149.png + small + + https://s.yimg.com/iu/api/res/1.2/icfI_GF7koovRuRSXctfRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/31149.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27337 + 27337 + + A.J. Bouye + A.J. + Bouye + A.J. + Bouye + + Q + Questionable + toe + nfl.p.27337 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/KnEkTnN2lKeueD8.Fog8CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27337.png + small + + https://s.yimg.com/iu/api/res/1.2/KnEkTnN2lKeueD8.Fog8CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27337.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 46 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 0 + + + 66 + 9 + + + 83 + 0 + + + + + + 380.p.27653 + 27653 + + Walt Aikens + Walt + Aikens + Walt + Aikens + + nfl.p.27653 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 35 + CB + + https://s.yimg.com/iu/api/res/1.2/hwQ8WqmPir2TpAIpV.DAlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27653.png + small + + https://s.yimg.com/iu/api/res/1.2/hwQ8WqmPir2TpAIpV.DAlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27653.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26122 + 26122 + + Neiko Thorpe + Neiko + Thorpe + Neiko + Thorpe + + groin + nfl.p.26122 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/s6bs6M_QPatHLuYfwUYj8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26122.png + small + + https://s.yimg.com/iu/api/res/1.2/s6bs6M_QPatHLuYfwUYj8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26122.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 5 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26737 + 26737 + + B.W. Webb + B.W. + Webb + B.W. + Webb + + nfl.p.26737 + nfl.t.19 + New York Giants + NYG + + 9 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/YNRkLDKhTgkr48Q5B6Kr5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26737.png + small + + https://s.yimg.com/iu/api/res/1.2/YNRkLDKhTgkr48Q5B6Kr5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26737.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 52 + + + 39 + 7 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26677 + 26677 + + Jamar Taylor + Jamar + Taylor + Jamar + Taylor + + back + nfl.p.26677 + nfl.t.7 + Denver Broncos + Den + + 10 + + 39 + CB + + https://s.yimg.com/iu/api/res/1.2/hWTJs88I2YBGKsz2r2mjwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/26677.1.png + small + + https://s.yimg.com/iu/api/res/1.2/hWTJs88I2YBGKsz2r2mjwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/26677.1.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 16 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31015 + 31015 + + Josh Jackson + Josh + Jackson + Josh + Jackson + + nfl.p.31015 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 37 + CB + + https://s.yimg.com/iu/api/res/1.2/xSGC0LjTeVcmE7bhuNBBSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31015.png + small + + https://s.yimg.com/iu/api/res/1.2/xSGC0LjTeVcmE7bhuNBBSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31015.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 39 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24792 + 24792 + + Patrick Peterson + Patrick + Peterson + Patrick + Peterson + + illness + nfl.p.24792 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/cfXPaPat01A51138CJvoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24792.png + small + + https://s.yimg.com/iu/api/res/1.2/cfXPaPat01A51138CJvoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24792.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 45 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 2 + + + 66 + 49 + + + 83 + 0 + + + + + + 380.p.28635 + 28635 + + Darryl Roberts + Darryl + Roberts + Darryl + Roberts + + toe + nfl.p.28635 + nfl.t.20 + New York Jets + NYJ + + 11 + + 27 + CB + + https://s.yimg.com/iu/api/res/1.2/20R95BUNqDChPn85fbkX_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28635.png + small + + https://s.yimg.com/iu/api/res/1.2/20R95BUNqDChPn85fbkX_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28635.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 41 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 3 + + + 66 + 3 + + + 83 + 0 + + + + + + 380.p.29957 + 29957 + + Antonio Hamilton + Antonio + Hamilton + Antonio + Hamilton + + IR + Injured Reserve + quadriceps + nfl.p.29957 + nfl.t.19 + New York Giants + NYG + + 9 + + 30 + CB + + https://s.yimg.com/iu/api/res/1.2/2eXhubP839wvaueQuskw_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29957.png + small + + https://s.yimg.com/iu/api/res/1.2/2eXhubP839wvaueQuskw_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29957.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 5 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23982 + 23982 + + Joe Haden + Joe + Haden + Joe + Haden + + hamstring + nfl.p.23982 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/d54pXYAOdxeUG2qimW21PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23982.png + small + + https://s.yimg.com/iu/api/res/1.2/d54pXYAOdxeUG2qimW21PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23982.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 51 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26366 + 26366 + + Johnson Bademosi + Johnson + Bademosi + Johnson + Bademosi + + knee + nfl.p.26366 + nfl.t.34 + Houston Texans + Hou + + 10 + + 23 + CB + + https://s.yimg.com/iu/api/res/1.2/F5NTh7XaktoZZdD5jGNekA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/26366.png + small + + https://s.yimg.com/iu/api/res/1.2/F5NTh7XaktoZZdD5jGNekA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/26366.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29340 + 29340 + + Eric Murray + Eric + Murray + Eric + Murray + + ankle + nfl.p.29340 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 21 + CB + + https://s.yimg.com/iu/api/res/1.2/uinSrlP5Q_RDXr14sFLJFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29340.png + small + + https://s.yimg.com/iu/api/res/1.2/uinSrlP5Q_RDXr14sFLJFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29340.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 43 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31233 + 31233 + + Holton Hill + Holton + Hill + Holton + Hill + + nfl.p.31233 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 24 + CB + + https://s.yimg.com/iu/api/res/1.2/W2tAcvU_0yT6sAxv0cQxHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31233.png + small + + https://s.yimg.com/iu/api/res/1.2/W2tAcvU_0yT6sAxv0cQxHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31233.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 30 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 1 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.30672 + 30672 + + Jason Thompson + Jason + Thompson + Jason + Thompson + + nfl.p.30672 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 40 + LB,S,CB + + https://s.yimg.com/iu/api/res/1.2/6dqHxHawqfXMHzyEIalvPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30672.png + small + + https://s.yimg.com/iu/api/res/1.2/6dqHxHawqfXMHzyEIalvPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30672.png + 0 + DP + + LB + S + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27715 + 27715 + + Bennett Jackson + Bennett + Jackson + Bennett + Jackson + + undisclosed + nfl.p.27715 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 39 + S,CB + + https://s.yimg.com/iu/api/res/1.2/7OU0YMDgLBk4SK7EzwldVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/27715.png + small + + https://s.yimg.com/iu/api/res/1.2/7OU0YMDgLBk4SK7EzwldVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/27715.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31707 + 31707 + + Joseph Este + Joseph + Este + Joseph + Este + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31707 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 38 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31609 + 31609 + + Joshua Kalu + Joshua + Kalu + Joshua + Kalu + + nfl.p.31609 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 47 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 4 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30300 + 30300 + + Mike Tyson + Mike + Tyson + Mike + Tyson + + IR + Injured Reserve + concussion + nfl.p.30300 + nfl.t.34 + Houston Texans + Hou + + 10 + + 34 + S,CB + + https://s.yimg.com/iu/api/res/1.2/m6zyEUoUYNePjtiwCuV.1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30300.png + small + + https://s.yimg.com/iu/api/res/1.2/m6zyEUoUYNePjtiwCuV.1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30300.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 3 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30548 + 30548 + + Kai Nacua + Kai + Nacua + Kai + Nacua + + nfl.p.30548 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 36 + S,CB + + https://s.yimg.com/iu/api/res/1.2/anw4fQrFT5HwDdbfLEm4Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30548.png + small + + https://s.yimg.com/iu/api/res/1.2/anw4fQrFT5HwDdbfLEm4Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30548.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31530 + 31530 + + Jamar Summers + Jamar + Summers + Jamar + Summers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31530 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 30 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28570 + 28570 + + Tevin Mitchel + Tevin + Mitchel + Tevin + Mitchel + + IR + Injured Reserve + undisclosed + nfl.p.28570 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 37 + S,CB + + https://s.yimg.com/iu/api/res/1.2/DXb3J.2rKNCYiNwRAyE86g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28570.png + small + + https://s.yimg.com/iu/api/res/1.2/DXb3J.2rKNCYiNwRAyE86g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28570.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30560 + 30560 + + Lorenzo Jerome + Lorenzo + Jerome + Lorenzo + Jerome + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30560 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 40 + S,CB + + https://s.yimg.com/iu/api/res/1.2/bLh9uHrevkPJCRIf3FkyBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30560.png + small + + https://s.yimg.com/iu/api/res/1.2/bLh9uHrevkPJCRIf3FkyBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30560.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31448 + 31448 + + Ramon Richards + Ramon + Richards + Ramon + Richards + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31448 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 47 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31236 + 31236 + + Trevon Mathis + Trevon + Mathis + Trevon + Mathis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31236 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 46 + S,CB + + https://s.yimg.com/iu/api/res/1.2/lV6thZpPU9mPRKF4BGCDbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31236.png + small + + https://s.yimg.com/iu/api/res/1.2/lV6thZpPU9mPRKF4BGCDbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31236.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30961 + 30961 + + Kacy Rodgers II + Kacy + Rodgers II + Kacy + Rodgers II + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30961 + nfl.t.20 + New York Jets + NYJ + + 11 + + 39 + LB,S + + https://s.yimg.com/iu/api/res/1.2/gx6z4fR.fy2e3x8k.MANnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30961.png + small + + https://s.yimg.com/iu/api/res/1.2/gx6z4fR.fy2e3x8k.MANnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30961.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31089 + 31089 + + Kyzir White + Kyzir + White + Kyzir + White + + IR + Injured Reserve + knee + nfl.p.31089 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 44 + LB,S + + https://s.yimg.com/iu/api/res/1.2/XjhB6M3GXZsoPINtk9cEJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31089.png + small + + https://s.yimg.com/iu/api/res/1.2/XjhB6M3GXZsoPINtk9cEJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31089.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 12 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 9 + + + 83 + 0 + + + + + + 380.p.31469 + 31469 + + Jason Hall + Jason + Hall + Jason + Hall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31469 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 46 + LB,S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28870 + 28870 + + Justin Currie + Justin + Currie + Justin + Currie + + undisclosed + nfl.p.28870 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 47 + LB,S + + https://s.yimg.com/iu/api/res/1.2/9wbzBkFIpONt5LgdLp5bpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28870.png + small + + https://s.yimg.com/iu/api/res/1.2/9wbzBkFIpONt5LgdLp5bpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28870.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31085 + 31085 + + Joel Iyiegbuniwe + Joel + Iyiegbuniwe + Joel + Iyiegbuniwe + + nfl.p.31085 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/R4fcLouwX3RFZ5IJCNgQMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31085.png + small + + https://s.yimg.com/iu/api/res/1.2/R4fcLouwX3RFZ5IJCNgQMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31085.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 9 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29343 + 29343 + + B.J. Goodson + B.J. + Goodson + B.J. + Goodson + + neck, foot + nfl.p.29343 + nfl.t.19 + New York Giants + NYG + + 9 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/UcomLbuerfEIUxz9DDLVpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29343.png + small + + https://s.yimg.com/iu/api/res/1.2/UcomLbuerfEIUxz9DDLVpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29343.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 44 + + + 39 + 17 + + + 40 + 0.5 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 4 + + + 66 + 15 + + + 83 + 0 + + + + + + 380.p.31480 + 31480 + + Jason Cabinda + Jason + Cabinda + Jason + Cabinda + + nfl.p.31480 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 14 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25719 + 25719 + + Luke Kuechly + Luke + Kuechly + Luke + Kuechly + + nfl.p.25719 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/xkU_W76wu.1YQOoLO6t_Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25719.png + small + + https://s.yimg.com/iu/api/res/1.2/xkU_W76wu.1YQOoLO6t_Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25719.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 94 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 93 + + + 39 + 37 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 20 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30306 + 30306 + + Jordan Evans + Jordan + Evans + Jordan + Evans + + IR + Injured Reserve + ankle + nfl.p.30306 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/3EdllD4gqpDZ2V8wa35Ofw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30306.1.png + small + + https://s.yimg.com/iu/api/res/1.2/3EdllD4gqpDZ2V8wa35Ofw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30306.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 40 + + + 39 + 21 + + + 40 + 1.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 7 + + + 83 + 0 + + + + + + 380.p.30238 + 30238 + + Samson Ebukam + Samson + Ebukam + Samson + Ebukam + + nfl.p.30238 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/T9muzf0DtFRC1WL88lKyUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30238.png + small + + https://s.yimg.com/iu/api/res/1.2/T9muzf0DtFRC1WL88lKyUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30238.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 15 + + + 40 + 3.0 + + + 41 + 1 + + + 42 + 3 + + + 43 + 2 + + + 44 + 2 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 6 + + + 66 + 36 + + + 83 + 0 + + + + + + 380.p.9290 + 9290 + + Clay Matthews + Clay + Matthews + Clay + Matthews + + nfl.p.9290 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/GwUPLFUhI0_0CDEf7aA6IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/9290.png + small + + https://s.yimg.com/iu/api/res/1.2/GwUPLFUhI0_0CDEf7aA6IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/9290.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 29 + + + 39 + 14 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28624 + 28624 + + Mark Nzeocha + Mark + Nzeocha + Mark + Nzeocha + + groin + nfl.p.28624 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/48KwkedC8Wekzi7CcnUJkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28624.png + small + + https://s.yimg.com/iu/api/res/1.2/48KwkedC8Wekzi7CcnUJkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28624.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 5 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27647 + 27647 + + Anthony Hitchens + Anthony + Hitchens + Anthony + Hitchens + + ribs + nfl.p.27647 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/Io0y3C5x.TvG7PNNSoNotg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27647.png + small + + https://s.yimg.com/iu/api/res/1.2/Io0y3C5x.TvG7PNNSoNotg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27647.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 16 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 81 + + + 39 + 54 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27568 + 27568 + + Kyle Van Noy + Kyle + Van Noy + Kyle + Van Noy + + nfl.p.27568 + nfl.t.17 + New England Patriots + NE + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/cwl1RsWue5rJdF9LGuni7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27568.png + small + + https://s.yimg.com/iu/api/res/1.2/cwl1RsWue5rJdF9LGuni7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27568.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 12 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 55 + + + 39 + 37 + + + 40 + 3.5 + + + 41 + 1 + + + 42 + 1 + + + 43 + 2 + + + 44 + 2 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 46 + + + 83 + 0 + + + + + + 380.p.29448 + 29448 + + Elandon Roberts + Elandon + Roberts + Elandon + Roberts + + thigh + nfl.p.29448 + nfl.t.17 + New England Patriots + NE + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/Hatf_VHKkD.sRV6TBg5O6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29448.png + small + + https://s.yimg.com/iu/api/res/1.2/Hatf_VHKkD.sRV6TBg5O6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29448.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 34 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28908 + 28908 + + Mike Hull + Mike + Hull + Mike + Hull + + knee + nfl.p.28908 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/C3K74_k9C4DbvshXRQbnOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28908.png + small + + https://s.yimg.com/iu/api/res/1.2/C3K74_k9C4DbvshXRQbnOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28908.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 7 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9543 + 9543 + + Ramon Humber + Ramon + Humber + Ramon + Humber + + nfl.p.9543 + nfl.t.17 + New England Patriots + NE + + 11 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/I4_rkD1uHss_uQgt9y6bMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/9543.png + small + + https://s.yimg.com/iu/api/res/1.2/I4_rkD1uHss_uQgt9y6bMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/9543.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 9 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23991 + 23991 + + Derrick Morgan + Derrick + Morgan + Derrick + Morgan + + knee + nfl.p.23991 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/g5Is68ll154m8W647j7New--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/23991.png + small + + https://s.yimg.com/iu/api/res/1.2/g5Is68ll154m8W647j7New--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/23991.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 19 + + + 39 + 6 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31170 + 31170 + + Foyesade Oluokun + Foyesade + Oluokun + Foyesade + Oluokun + + nfl.p.31170 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/XPErVkB6QgR6xvehpqR7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31170.png + small + + https://s.yimg.com/iu/api/res/1.2/XPErVkB6QgR6xvehpqR7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31170.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 56 + + + 39 + 35 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28607 + 28607 + + Hayes Pullard III + Hayes + Pullard III + Hayes + Pullard III + + nfl.p.28607 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/rh.CqJs76DZwLx_ofmUibA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28607.png + small + + https://s.yimg.com/iu/api/res/1.2/rh.CqJs76DZwLx_ofmUibA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28607.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 13 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29321 + 29321 + + Nick Vigil + Nick + Vigil + Nick + Vigil + + knee + nfl.p.29321 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/nspqajCCFpPArXNBH0F4Og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29321.1.png + small + + https://s.yimg.com/iu/api/res/1.2/nspqajCCFpPArXNBH0F4Og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29321.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 62 + + + 39 + 22 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9310 + 9310 + + Connor Barwin + Connor + Barwin + Connor + Barwin + + nfl.p.9310 + nfl.t.19 + New York Giants + NYG + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/KBiue9ygSGsUlNIacN4SKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/9310.png + small + + https://s.yimg.com/iu/api/res/1.2/KBiue9ygSGsUlNIacN4SKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/9310.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 6 + + + 39 + 6 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25850 + 25850 + + Najee Goode + Najee + Goode + Najee + Goode + + nfl.p.25850 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/k3SnGyH0Y32GN9FppKD5WQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25850.png + small + + https://s.yimg.com/iu/api/res/1.2/k3SnGyH0Y32GN9FppKD5WQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25850.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.31043 + 31043 + + Jerome Baker + Jerome + Baker + Jerome + Baker + + nfl.p.31043 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/_PGnt_NyihR6TEkxwckONA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31043.png + small + + https://s.yimg.com/iu/api/res/1.2/_PGnt_NyihR6TEkxwckONA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31043.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 57 + + + 39 + 22 + + + 40 + 3.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 4 + + + 66 + 25 + + + 83 + 0 + + + + + + 380.p.28411 + 28411 + + Shane Ray + Shane + Ray + Shane + Ray + + illness + nfl.p.28411 + nfl.t.7 + Denver Broncos + Den + + 10 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/4HEvnmLgcjEiKLLxm4HIZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28411.png + small + + https://s.yimg.com/iu/api/res/1.2/4HEvnmLgcjEiKLLxm4HIZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28411.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 6 + + + 39 + 4 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25735 + 25735 + + Dont'a Hightower + Dont'a + Hightower + Dont'a + Hightower + + knee + nfl.p.25735 + nfl.t.17 + New England Patriots + NE + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/FJrL_gbagzPGeCoBkcQMdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/25735.png + small + + https://s.yimg.com/iu/api/res/1.2/FJrL_gbagzPGeCoBkcQMdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/25735.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 24 + + + 39 + 24 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 1 + + + 65 + 3 + + + 66 + 27 + + + 83 + 0 + + + + + + 380.p.29758 + 29758 + + Patrick Onwuasor + Patrick + Onwuasor + Patrick + Onwuasor + + nfl.p.29758 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/piA6JzmpzMKN_qg.alTw5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29758.png + small + + https://s.yimg.com/iu/api/res/1.2/piA6JzmpzMKN_qg.alTw5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29758.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 37 + + + 39 + 22 + + + 40 + 5.5 + + + 41 + 1 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 8 + + + 66 + 33 + + + 83 + 0 + + + + + + 380.p.27259 + 27259 + + Brandon Copeland + Brandon + Copeland + Brandon + Copeland + + elbow + nfl.p.27259 + nfl.t.20 + New York Jets + NYJ + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/yGJy.1UrQQfDEkW0KQDfZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27259.png + small + + https://s.yimg.com/iu/api/res/1.2/yGJy.1UrQQfDEkW0KQDfZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27259.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 24 + + + 39 + 11 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30162 + 30162 + + Ryan Anderson + Ryan + Anderson + Ryan + Anderson + + Q + Questionable + hamstring + nfl.p.30162 + nfl.t.28 + Washington Redskins + Was + + 4 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/ZYQe4znTJjtNopRTdwaLdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30162.png + small + + https://s.yimg.com/iu/api/res/1.2/ZYQe4znTJjtNopRTdwaLdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30162.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 7 + + + 39 + 11 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27599 + 27599 + + Christian Kirksey + Christian + Kirksey + Christian + Kirksey + + IR + Injured Reserve + hamstring + nfl.p.27599 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/QT5IWWOJkUvcENHPc21_Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27599.png + small + + https://s.yimg.com/iu/api/res/1.2/QT5IWWOJkUvcENHPc21_Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27599.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 29 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 25 + + + 83 + 0 + + + + + + 380.p.28377 + 28377 + + Brian Peters + Brian + Peters + Brian + Peters + + IR + Injured Reserve + undisclosed + nfl.p.28377 + nfl.t.34 + Houston Texans + Hou + + 10 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/F8e6ssdG3PZ9P7XYkmSuSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28377.png + small + + https://s.yimg.com/iu/api/res/1.2/F8e6ssdG3PZ9P7XYkmSuSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28377.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 4 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25757 + 25757 + + Bobby Wagner + Bobby + Wagner + Bobby + Wagner + + groin + nfl.p.25757 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/4LlTQNs7gmpF4StvAvwHQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25757.png + small + + https://s.yimg.com/iu/api/res/1.2/4LlTQNs7gmpF4StvAvwHQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25757.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 70 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 84 + + + 39 + 54 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 11 + + + 47 + 1 + + + 65 + 6 + + + 66 + 109 + + + 83 + 0 + + + + + + 380.p.31679 + 31679 + + D'Juan Hines + D'Juan + Hines + D'Juan + Hines + + nfl.p.31679 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 2 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27702 + 27702 + + Devon Kennard + Devon + Kennard + Devon + Kennard + + hip + nfl.p.27702 + nfl.t.8 + Detroit Lions + Det + + 6 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/rQKCV_QTkmNIklZCNoTkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27702.png + small + + https://s.yimg.com/iu/api/res/1.2/rQKCV_QTkmNIklZCNoTkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27702.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 30 + + + 39 + 16 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29409 + 29409 + + Jatavis Brown + Jatavis + Brown + Jatavis + Brown + + IR + Injured Reserve + ankle + nfl.p.29409 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/WVRgCe2PHCpl.DiDFNp_8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29409.png + small + + https://s.yimg.com/iu/api/res/1.2/WVRgCe2PHCpl.DiDFNp_8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29409.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 61 + + + 39 + 36 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31048 + 31048 + + Malik Jefferson + Malik + Jefferson + Malik + Jefferson + + IR + Injured Reserve + foot + nfl.p.31048 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/PXp4XJkVObi6knXAkFSvtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31048.png + small + + https://s.yimg.com/iu/api/res/1.2/PXp4XJkVObi6knXAkFSvtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31048.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 5 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26829 + 26829 + + Vince Williams + Vince + Williams + Vince + Williams + + Q + Questionable + toe + nfl.p.26829 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 98 + LB + + https://s.yimg.com/iu/api/res/1.2/dmYrLGsT6V1LA8.GDD7vPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26829.png + small + + https://s.yimg.com/iu/api/res/1.2/dmYrLGsT6V1LA8.GDD7vPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26829.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 26 + -1 + + + season + 2018 + + + 0 + 14 + + + 38 + 50 + + + 39 + 26 + + + 40 + 4.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 8 + + + 66 + 17 + + + 83 + 0 + + + + + + 380.p.29276 + 29276 + + Kamalei Correa + Kamalei + Correa + Kamalei + Correa + + foot + nfl.p.29276 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/iAnVDYFEcc_Am0pgMs.MiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29276.png + small + + https://s.yimg.com/iu/api/res/1.2/iAnVDYFEcc_Am0pgMs.MiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29276.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 12 + + + 39 + 7 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27679 + 27679 + + Avery Williamson + Avery + Williamson + Avery + Williamson + + nfl.p.27679 + nfl.t.20 + New York Jets + NYJ + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/kMi5cXZtuNnS7D43kfoXTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27679.png + small + + https://s.yimg.com/iu/api/res/1.2/kMi5cXZtuNnS7D43kfoXTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27679.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 38 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 80 + + + 39 + 40 + + + 40 + 3.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 6 + + + 66 + 36 + + + 83 + 0 + + + + + + 380.p.30583 + 30583 + + Hardy Nickerson + Hardy + Nickerson + Hardy + Nickerson + + nfl.p.30583 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/9n0fi.sMhOqAMmn8wmcxcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30583.png + small + + https://s.yimg.com/iu/api/res/1.2/9n0fi.sMhOqAMmn8wmcxcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30583.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 38 + + + 39 + 19 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25823 + 25823 + + Kyle Wilber + Kyle + Wilber + Kyle + Wilber + + hamstring + nfl.p.25823 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/ZIq3uKV8kFrh9Sv3eNPX_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/25823.png + small + + https://s.yimg.com/iu/api/res/1.2/ZIq3uKV8kFrh9Sv3eNPX_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/25823.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 10 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29268 + 29268 + + Jaylon Smith + Jaylon + Smith + Jaylon + Smith + + nfl.p.29268 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/_eJO5bKuI085qbzradtDjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29268.png + small + + https://s.yimg.com/iu/api/res/1.2/_eJO5bKuI085qbzradtDjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29268.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 46 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 82 + + + 39 + 39 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 2 + + + 44 + 1 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 6 + + + 66 + 69 + + + 83 + 0 + + + + + + 380.p.30345 + 30345 + + Elijah Lee + Elijah + Lee + Elijah + Lee + + nfl.p.30345 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/ibDtcl3ocStNTHDqB4RYAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30345.png + small + + https://s.yimg.com/iu/api/res/1.2/ibDtcl3ocStNTHDqB4RYAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30345.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 54 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31131 + 31131 + + Jermaine Carter Jr. + Jermaine + Carter Jr. + Jermaine + Carter Jr. + + nfl.p.31131 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/HmaJpYQ8rFb5LmxQFbkYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31131.png + small + + https://s.yimg.com/iu/api/res/1.2/HmaJpYQ8rFb5LmxQFbkYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31131.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31120 + 31120 + + Genard Avery + Genard + Avery + Genard + Avery + + nfl.p.31120 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/iap7I7ZXFEaaG7EO5uCfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31120.png + small + + https://s.yimg.com/iu/api/res/1.2/iap7I7ZXFEaaG7EO5uCfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31120.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 30 + + + 39 + 10 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 5 + + + 66 + 5 + + + 83 + 0 + + + + + + 380.p.27348 + 27348 + + Deon Lacey + Deon + Lacey + Deon + Lacey + + nfl.p.27348 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/hpCGEujE6z6DHcnQ6t8S9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27348.png + small + + https://s.yimg.com/iu/api/res/1.2/hpCGEujE6z6DHcnQ6t8S9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27348.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 6 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29254 + 29254 + + Darron Lee + Darron + Lee + Darron + Lee + + nfl.p.29254 + nfl.t.20 + New York Jets + NYJ + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/nWkc8fULF5iYcork90ez8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29254.png + small + + https://s.yimg.com/iu/api/res/1.2/nWkc8fULF5iYcork90ez8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29254.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 43 + + + 39 + 31 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 5 + + + 66 + 82 + + + 83 + 0 + + + + + + 380.p.29417 + 29417 + + Devante Bond + Devante + Bond + Devante + Bond + + illness + nfl.p.29417 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/eIaTQGdlD9RNl2Dc_9FnqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29417.png + small + + https://s.yimg.com/iu/api/res/1.2/eIaTQGdlD9RNl2Dc_9FnqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29417.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 16 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31495 + 31495 + + Ben Niemann + Ben + Niemann + Ben + Niemann + + hamstring + nfl.p.31495 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 7 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29380 + 29380 + + Matt Judon + Matt + Judon + Matt + Judon + + knee + nfl.p.29380 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/eazkzw_Be7JnbzHrbzoXZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29380.png + small + + https://s.yimg.com/iu/api/res/1.2/eazkzw_Be7JnbzHrbzoXZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29380.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 29 + + + 39 + 15 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 10 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7191 + 7191 + + Derrick Johnson + Derrick + Johnson + Derrick + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7191 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/l.AcI6Cd4iQH4ifp5zbbAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7191.png + small + + https://s.yimg.com/iu/api/res/1.2/l.AcI6Cd4iQH4ifp5zbbAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7191.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 14 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30237 + 30237 + + Jalen Reeves-Maybin + Jalen + Reeves-Maybin + Jalen + Reeves-Maybin + + IR + Injured Reserve + neck + nfl.p.30237 + nfl.t.8 + Detroit Lions + Det + + 6 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/0pcw9UU69ek7DjAiishJmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30237.png + small + + https://s.yimg.com/iu/api/res/1.2/0pcw9UU69ek7DjAiishJmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30237.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 8 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31040 + 31040 + + Fred Warner + Fred + Warner + Fred + Warner + + nfl.p.31040 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/hINnhvS4gZy.i_tucyj8wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31040.png + small + + https://s.yimg.com/iu/api/res/1.2/hINnhvS4gZy.i_tucyj8wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31040.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 85 + + + 39 + 39 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24803 + 24803 + + Ryan Kerrigan + Ryan + Kerrigan + Ryan + Kerrigan + + nfl.p.24803 + nfl.t.28 + Washington Redskins + Was + + 4 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/oZ9r0c.Y9JUnG86p4QODXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24803.png + small + + https://s.yimg.com/iu/api/res/1.2/oZ9r0c.Y9JUnG86p4QODXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24803.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 26 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 30 + + + 39 + 13 + + + 40 + 13.0 + + + 41 + 0 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 11 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31200 + 31200 + + Leon Jacobs + Leon + Jacobs + Leon + Jacobs + + IR + Injured Reserve + quadricep + nfl.p.31200 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/NZY4obZkkPPyyYIWkgAF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31200.png + small + + https://s.yimg.com/iu/api/res/1.2/NZY4obZkkPPyyYIWkgAF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31200.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 16 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 1 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.6346 + 6346 + + Terrell Suggs + Terrell + Suggs + Terrell + Suggs + + hamstring + nfl.p.6346 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/NuomMQRNW3KPuKSENA8Thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/6346.png + small + + https://s.yimg.com/iu/api/res/1.2/NuomMQRNW3KPuKSENA8Thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/6346.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 16 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 9 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 13 + + + 66 + 43 + + + 83 + 0 + + + + + + 380.p.28396 + 28396 + + Vic Beasley Jr. + Vic + Beasley Jr. + Vic + Beasley Jr. + + nfl.p.28396 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/V1VxZi9zzAK4Tsz.02eN1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28396.png + small + + https://s.yimg.com/iu/api/res/1.2/V1VxZi9zzAK4Tsz.02eN1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28396.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 4 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 7 + + + 66 + 74 + + + 83 + 0 + + + + + + 380.p.31184 + 31184 + + Peter Kalambayi + Peter + Kalambayi + Peter + Kalambayi + + nfl.p.31184 + nfl.t.34 + Houston Texans + Hou + + 10 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/ADZbeVMhkZxzl.pxv57eig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31184.png + small + + https://s.yimg.com/iu/api/res/1.2/ADZbeVMhkZxzl.pxv57eig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31184.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 7 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31191 + 31191 + + Matthew Adams + Matthew + Adams + Matthew + Adams + + nfl.p.31191 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/GyJ0aStYAv8OmFce8iYyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31191.png + small + + https://s.yimg.com/iu/api/res/1.2/GyJ0aStYAv8OmFce8iYyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31191.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28612 + 28612 + + Bryce Hager + Bryce + Hager + Bryce + Hager + + nfl.p.28612 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/repAXaNuVateeZ4svLJo5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28612.png + small + + https://s.yimg.com/iu/api/res/1.2/repAXaNuVateeZ4svLJo5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28612.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 10 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28431 + 28431 + + Benardrick McKinney + Benardrick + McKinney + Benardrick + McKinney + + nfl.p.28431 + nfl.t.34 + Houston Texans + Hou + + 10 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/PlIz4cAdBAhGQ.z8wok_Qw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28431.png + small + + https://s.yimg.com/iu/api/res/1.2/PlIz4cAdBAhGQ.z8wok_Qw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28431.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 63 + + + 39 + 42 + + + 40 + 1.5 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30233 + 30233 + + Ben Gedeon + Ben + Gedeon + Ben + Gedeon + + concussion + nfl.p.30233 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/xZ.FscnHgIlz5KloFPYf_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30233.png + small + + https://s.yimg.com/iu/api/res/1.2/xZ.FscnHgIlz5KloFPYf_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30233.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 29 + + + 39 + 24 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30134 + 30134 + + Jarrad Davis + Jarrad + Davis + Jarrad + Davis + + calf + nfl.p.30134 + nfl.t.8 + Detroit Lions + Det + + 6 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/NwRMwGLNHl8LD41sh5VRmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30134.png + small + + https://s.yimg.com/iu/api/res/1.2/NwRMwGLNHl8LD41sh5VRmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30134.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 73 + + + 39 + 27 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 10 + + + 66 + 20 + + + 83 + 0 + + + + + + 380.p.28512 + 28512 + + Kwon Alexander + Kwon + Alexander + Kwon + Alexander + + IR + Injured Reserve + torn ACL + nfl.p.28512 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/8aFIAHZdb5NS4euf9nbt7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28512.png + small + + https://s.yimg.com/iu/api/res/1.2/8aFIAHZdb5NS4euf9nbt7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28512.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 34 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30986 + 30986 + + Tremaine Edmunds + Tremaine + Edmunds + Tremaine + Edmunds + + concussion + nfl.p.30986 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/krfj7X4hfMhq_Tog9u_1cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30986.png + small + + https://s.yimg.com/iu/api/res/1.2/krfj7X4hfMhq_Tog9u_1cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30986.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 22 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 80 + + + 39 + 41 + + + 40 + 2.0 + + + 41 + 2 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 5 + + + 66 + 19 + + + 83 + 0 + + + + + + 380.p.24030 + 24030 + + Sean Lee + Sean + Lee + Sean + Lee + + hamstring + nfl.p.24030 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/rHY1uUoYaMSFSvUQKtYWgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24030.png + small + + https://s.yimg.com/iu/api/res/1.2/rHY1uUoYaMSFSvUQKtYWgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24030.png + 0 + DP + + LB + + 1 + 1547917320 + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 15 + + + 39 + 15 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30191 + 30191 + + Tim Williams + Tim + Williams + Tim + Williams + + ankle + nfl.p.30191 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/V4DG8enJcY8lwM2jIU3Mbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30191.png + small + + https://s.yimg.com/iu/api/res/1.2/V4DG8enJcY8lwM2jIU3Mbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30191.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 6 + + + 39 + 4 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29285 + 29285 + + Deion Jones + Deion + Jones + Deion + Jones + + foot + nfl.p.29285 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/rIEUZ9ogwS5kxU9BUbncsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29285.png + small + + https://s.yimg.com/iu/api/res/1.2/rIEUZ9ogwS5kxU9BUbncsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29285.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 45 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 34 + + + 39 + 19 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 1 + + + 66 + 61 + + + 83 + 0 + + + + + + 380.p.29322 + 29322 + + Kyler Fackrell + Kyler + Fackrell + Kyler + Fackrell + + nfl.p.29322 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/bLAtDoifcyNu492lHY.zgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29322.png + small + + https://s.yimg.com/iu/api/res/1.2/bLAtDoifcyNu492lHY.zgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29322.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 29 + + + 39 + 13 + + + 40 + 10.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 12 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.26629 + 26629 + + Barkevious Mingo + Barkevious + Mingo + Barkevious + Mingo + + nfl.p.26629 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/lOIrElrDW4uPap2Yn_4WmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26629.png + small + + https://s.yimg.com/iu/api/res/1.2/lOIrElrDW4uPap2Yn_4WmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26629.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 37 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27287 + 27287 + + Ray-Ray Armstrong + Ray-Ray + Armstrong + Ray-Ray + Armstrong + + concussion + nfl.p.27287 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/ICqcTMm5HsF1i876lz94Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27287.png + small + + https://s.yimg.com/iu/api/res/1.2/ICqcTMm5HsF1i876lz94Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27287.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 16 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31299 + 31299 + + Dennis Gardeck + Dennis + Gardeck + Dennis + Gardeck + + ankle + nfl.p.31299 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 92 + LB + + https://s.yimg.com/iu/api/res/1.2/PCwvug_9RO4o4qdEV98xjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31299.1.png + small + + https://s.yimg.com/iu/api/res/1.2/PCwvug_9RO4o4qdEV98xjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31299.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25738 + 25738 + + Nick Perry + Nick + Perry + Nick + Perry + + IR + Injured Reserve + knee + nfl.p.25738 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/CcISryT7rek93lpTJvtYSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25738.png + small + + https://s.yimg.com/iu/api/res/1.2/CcISryT7rek93lpTJvtYSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25738.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 15 + + + 39 + 9 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26675 + 26675 + + Jamie Collins Sr. + Jamie + Collins Sr. + Jamie + Collins Sr. + + nfl.p.26675 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/ZicXRiycIeYU0JS8Bd5U3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/26675.png + small + + https://s.yimg.com/iu/api/res/1.2/ZicXRiycIeYU0JS8Bd5U3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/26675.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 73 + + + 39 + 31 + + + 40 + 4.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26669 + 26669 + + Kiko Alonso + Kiko + Alonso + Kiko + Alonso + + knee, hamstring + nfl.p.26669 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/PvOtgs5SQCNQAZjVVTvT.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26669.png + small + + https://s.yimg.com/iu/api/res/1.2/PvOtgs5SQCNQAZjVVTvT.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26669.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 64 + -1 + + + season + 2018 + + + 0 + 15 + + + 38 + 79 + + + 39 + 46 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 3 + + + 66 + 30 + + + 83 + 0 + + + + + + 380.p.25689 + 25689 + + Craig Robertson + Craig + Robertson + Craig + Robertson + + nfl.p.25689 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/gDNTMgKxW8tUK4U6_i38yQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25689.png + small + + https://s.yimg.com/iu/api/res/1.2/gDNTMgKxW8tUK4U6_i38yQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25689.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 11 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27839 + 27839 + + Christian Jones + Christian + Jones + Christian + Jones + + nfl.p.27839 + nfl.t.8 + Detroit Lions + Det + + 6 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/kmbd8bpFl7nsivQCOelrdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27839.png + small + + https://s.yimg.com/iu/api/res/1.2/kmbd8bpFl7nsivQCOelrdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27839.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 48 + + + 39 + 21 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30471 + 30471 + + Riley Bullough + Riley + Bullough + Riley + Bullough + + undisclosed + nfl.p.30471 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/E0kLPsLYtTVUpxgau5M8tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30471.png + small + + https://s.yimg.com/iu/api/res/1.2/E0kLPsLYtTVUpxgau5M8tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30471.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 9 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30276 + 30276 + + Matt Milano + Matt + Milano + Matt + Milano + + IR + Injured Reserve + fractured fibula + nfl.p.30276 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/nC8tme1uU6npuKFipPTJjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30276.png + small + + https://s.yimg.com/iu/api/res/1.2/nC8tme1uU6npuKFipPTJjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30276.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 52 + + + 39 + 26 + + + 40 + 1.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 3 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 12 + + + 66 + 41 + + + 83 + 0 + + + + + + 380.p.29349 + 29349 + + De'Vondre Campbell + De'Vondre + Campbell + De'Vondre + Campbell + + nfl.p.29349 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/e5w8K1FfrKulXDPb9GWpbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29349.png + small + + https://s.yimg.com/iu/api/res/1.2/e5w8K1FfrKulXDPb9GWpbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29349.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 63 + + + 39 + 31 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31187 + 31187 + + Keishawn Bierria + Keishawn + Bierria + Keishawn + Bierria + + nfl.p.31187 + nfl.t.7 + Denver Broncos + Den + + 10 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/CclfeklDUaUNNSGQgEYwbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31187.png + small + + https://s.yimg.com/iu/api/res/1.2/CclfeklDUaUNNSGQgEYwbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31187.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 3 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27537 + 27537 + + Anthony Barr + Anthony + Barr + Anthony + Barr + + hamstring + nfl.p.27537 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/Qequt9OKnO9ZR3.nrJ3cZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27537.png + small + + https://s.yimg.com/iu/api/res/1.2/Qequt9OKnO9ZR3.nrJ3cZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27537.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 39 + + + 39 + 16 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28557 + 28557 + + David Mayo + David + Mayo + David + Mayo + + groin + nfl.p.28557 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/_GIjKv1vryK6P9Pu.yx5wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28557.png + small + + https://s.yimg.com/iu/api/res/1.2/_GIjKv1vryK6P9Pu.yx5wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28557.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28999 + 28999 + + Cameron Lynch + Cameron + Lynch + Cameron + Lynch + + nfl.p.28999 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/gwuY1jLtHH_G4IXmNh6fmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28999.png + small + + https://s.yimg.com/iu/api/res/1.2/gwuY1jLtHH_G4IXmNh6fmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28999.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 4 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29275 + 29275 + + Reggie Ragland + Reggie + Ragland + Reggie + Ragland + + nfl.p.29275 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/8UwAyLo1r9ZgVObtbiW.kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29275.png + small + + https://s.yimg.com/iu/api/res/1.2/8UwAyLo1r9ZgVObtbiW.kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29275.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 46 + + + 39 + 40 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 67 + + + 83 + 0 + + + + + + 380.p.25848 + 25848 + + Tahir Whitehead + Tahir + Whitehead + Tahir + Whitehead + + nfl.p.25848 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/WI9Fnf.hphH2e5nqXu9qQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25848.png + small + + https://s.yimg.com/iu/api/res/1.2/WI9Fnf.hphH2e5nqXu9qQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25848.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 12 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 89 + + + 39 + 37 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26475 + 26475 + + Emmanuel Lamur + Emmanuel + Lamur + Emmanuel + Lamur + + nfl.p.26475 + nfl.t.20 + New York Jets + NYJ + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/mmeEWWq_0PrUq2WhD5XPQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26475.png + small + + https://s.yimg.com/iu/api/res/1.2/mmeEWWq_0PrUq2WhD5XPQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26475.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 11 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28679 + 28679 + + Nick Dzubnar + Nick + Dzubnar + Nick + Dzubnar + + nfl.p.28679 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/VEoTebw7_pJ3l5gin_daow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28679.png + small + + https://s.yimg.com/iu/api/res/1.2/VEoTebw7_pJ3l5gin_daow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28679.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 6 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31532 + 31532 + + Matthew Thomas + Matthew + Thomas + Matthew + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31532 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31006 + 31006 + + Darius Leonard + Darius + Leonard + Darius + Leonard + + shoulder, knee + nfl.p.31006 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/0m8gui7EXqZvIA2X3AvtWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31006.png + small + + https://s.yimg.com/iu/api/res/1.2/0m8gui7EXqZvIA2X3AvtWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31006.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 96 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 111 + + + 39 + 52 + + + 40 + 7.0 + + + 41 + 2 + + + 42 + 4 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 12 + + + 66 + 38 + + + 83 + 0 + + + + + + 380.p.28413 + 28413 + + Shaq Thompson + Shaq + Thompson + Shaq + Thompson + + IR + Injured Reserve + shoulder + nfl.p.28413 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/rc6PxWvM.mPykFUDNgL5xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/28413.png + small + + https://s.yimg.com/iu/api/res/1.2/rc6PxWvM.mPykFUDNgL5xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/28413.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 51 + + + 39 + 29 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29718 + 29718 + + Cory Littleton + Cory + Littleton + Cory + Littleton + + nfl.p.29718 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/aszi8ZibLOvM4kIQd9pfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29718.png + small + + https://s.yimg.com/iu/api/res/1.2/aszi8ZibLOvM4kIQd9pfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29718.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 58 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 90 + + + 39 + 35 + + + 40 + 4.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 1 + + + 46 + 13 + + + 47 + 2 + + + 65 + 9 + + + 66 + 48 + + + 83 + 0 + + + + + + 380.p.24952 + 24952 + + Pernell McPhee + Pernell + McPhee + Pernell + McPhee + + nfl.p.24952 + nfl.t.28 + Washington Redskins + Was + + 4 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/axuDcPB1u5pK8D4gL4XqJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24952.png + small + + https://s.yimg.com/iu/api/res/1.2/axuDcPB1u5pK8D4gL4XqJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24952.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 8 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 24 + + + 83 + 0 + + + + + + 380.p.27940 + 27940 + + Adarius Taylor + Adarius + Taylor + Adarius + Taylor + + not injury related + nfl.p.27940 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/8m6wxk.Av2idkfafYzdLUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27940.png + small + + https://s.yimg.com/iu/api/res/1.2/8m6wxk.Av2idkfafYzdLUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27940.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 41 + + + 39 + 19 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 4 + + + 66 + 7 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31615 + 31615 + + Sharif Finch + Sharif + Finch + Sharif + Finch + + shoulder + nfl.p.31615 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 20 + + + 39 + 7 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29485 + 29485 + + Joe Walker + Joe + Walker + Joe + Walker + + nfl.p.29485 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/TpWQMbIRgJODaCeGp0j_Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29485.png + small + + https://s.yimg.com/iu/api/res/1.2/TpWQMbIRgJODaCeGp0j_Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29485.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 5 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26771 + 26771 + + A.J. Klein + A.J. + Klein + A.J. + Klein + + nfl.p.26771 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/u9OkI0DbuhtT8a4e5UnflQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26771.png + small + + https://s.yimg.com/iu/api/res/1.2/u9OkI0DbuhtT8a4e5UnflQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26771.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 42 + + + 39 + 28 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 7 + + + 66 + 23 + + + 83 + 0 + + + + + + 380.p.28600 + 28600 + + Anthony Chickillo + Anthony + Chickillo + Anthony + Chickillo + + ankle + nfl.p.28600 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/I8chGWoeTPT76ltj0gHp4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28600.png + small + + https://s.yimg.com/iu/api/res/1.2/I8chGWoeTPT76ltj0gHp4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28600.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 12 + + + 39 + 12 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26668 + 26668 + + Kevin Minter + Kevin + Minter + Kevin + Minter + + IR + Injured Reserve + calf + nfl.p.26668 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/3x3zt3776Xwo3ixVsIOz4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26668.png + small + + https://s.yimg.com/iu/api/res/1.2/3x3zt3776Xwo3ixVsIOz4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26668.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 8 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29394 + 29394 + + Kentrell Brothers + Kentrell + Brothers + Kentrell + Brothers + + nfl.p.29394 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/Ac5f6keJ6aJMPMW7w_3YYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29394.png + small + + https://s.yimg.com/iu/api/res/1.2/Ac5f6keJ6aJMPMW7w_3YYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29394.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 7 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30144 + 30144 + + Reuben Foster + Reuben + Foster + Reuben + Foster + + O + Out + hamstring + nfl.p.30144 + nfl.t.28 + Washington Redskins + Was + + 4 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/pWavUbTc52oDKhuuKn7DNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30144.png + small + + https://s.yimg.com/iu/api/res/1.2/pWavUbTc52oDKhuuKn7DNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30144.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 25 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30297 + 30297 + + Nathan Gerry + Nathan + Gerry + Nathan + Gerry + + ankle, knee + nfl.p.30297 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/xZrkTcMwMHSzJwOGeYhMaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30297.png + small + + https://s.yimg.com/iu/api/res/1.2/xZrkTcMwMHSzJwOGeYhMaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30297.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 14 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 8 + + + 83 + 0 + + + + + + 380.p.31205 + 31205 + + Zaire Franklin + Zaire + Franklin + Zaire + Franklin + + nfl.p.31205 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/bR25H8d2Z0__R5NS7tV0_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31205.png + small + + https://s.yimg.com/iu/api/res/1.2/bR25H8d2Z0__R5NS7tV0_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31205.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 14 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29480 + 29480 + + Tyler Matakevich + Tyler + Matakevich + Tyler + Matakevich + + nfl.p.29480 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/7MsI2yvqpiE8hAUu.Q1xNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29480.png + small + + https://s.yimg.com/iu/api/res/1.2/7MsI2yvqpiE8hAUu.Q1xNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29480.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 12 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31614 + 31614 + + Nick DeLuca + Nick + DeLuca + Nick + DeLuca + + nfl.p.31614 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 10 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25768 + 25768 + + Lavonte David + Lavonte + David + Lavonte + David + + knee + nfl.p.25768 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/z57myQj7ETQOs_ziYr7Viw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25768.png + small + + https://s.yimg.com/iu/api/res/1.2/z57myQj7ETQOs_ziYr7Viw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25768.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 52 + -1 + + + season + 2018 + + + 0 + 14 + + + 38 + 94 + + + 39 + 26 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31076 + 31076 + + Josey Jewell + Josey + Jewell + Josey + Jewell + + nfl.p.31076 + nfl.t.7 + Denver Broncos + Den + + 10 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/XKGc10JNOjiwdvloEQ9PPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31076.png + small + + https://s.yimg.com/iu/api/res/1.2/XKGc10JNOjiwdvloEQ9PPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31076.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 38 + + + 39 + 20 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25593 + 25593 + + Ben Jacobs + Ben + Jacobs + Ben + Jacobs + + nfl.p.25593 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/qecyokoKbnuBeprGbgqAeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/25593.png + small + + https://s.yimg.com/iu/api/res/1.2/qecyokoKbnuBeprGbgqAeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/25593.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 3 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31552 + 31552 + + Tae Davis + Tae + Davis + Tae + Davis + + ankle + nfl.p.31552 + nfl.t.19 + New York Giants + NYG + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 26 + + + 39 + 7 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30308 + 30308 + + Tanner Vallejo + Tanner + Vallejo + Tanner + Vallejo + + IR + Injured Reserve + hamstring + nfl.p.30308 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/DJHcyPGDr8V0C7gxmh6pgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30308.png + small + + https://s.yimg.com/iu/api/res/1.2/DJHcyPGDr8V0C7gxmh6pgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30308.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 19 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30989 + 30989 + + Leighton Vander Esch + Leighton + Vander Esch + Leighton + Vander Esch + + nfl.p.30989 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/Zn04pD3kRwV0NpUPxev.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30989.png + small + + https://s.yimg.com/iu/api/res/1.2/Zn04pD3kRwV0NpUPxev.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30989.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 80 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 102 + + + 39 + 38 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 2 + + + 66 + 56 + + + 83 + 0 + + + + + + 380.p.31503 + 31503 + + Frankie Luvu + Frankie + Luvu + Frankie + Luvu + + neck + nfl.p.31503 + nfl.t.20 + New York Jets + NYJ + + 11 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 17 + + + 39 + 5 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30978 + 30978 + + Roquan Smith + Roquan + Smith + Roquan + Smith + + nfl.p.30978 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/0A9cDcKNwd5sQeVECkvbUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30978.png + small + + https://s.yimg.com/iu/api/res/1.2/0A9cDcKNwd5sQeVECkvbUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30978.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 40 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 89 + + + 39 + 32 + + + 40 + 5.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 8 + + + 66 + 22 + + + 83 + 0 + + + + + + 380.p.30126 + 30126 + + Haason Reddick + Haason + Reddick + Haason + Reddick + + neck + nfl.p.30126 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/UQDv..vXfvlFCaE0tE1WMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30126.png + small + + https://s.yimg.com/iu/api/res/1.2/UQDv..vXfvlFCaE0tE1WMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30126.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 5 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 53 + + + 39 + 27 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31036 + 31036 + + Lorenzo Carter + Lorenzo + Carter + Lorenzo + Carter + + hip + nfl.p.31036 + nfl.t.19 + New York Giants + NYG + + 9 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/teY7hoL_uIe7LXpPZdwJ5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31036.png + small + + https://s.yimg.com/iu/api/res/1.2/teY7hoL_uIe7LXpPZdwJ5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31036.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 30 + + + 39 + 13 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31018 + 31018 + + Uchenna Nwosu + Uchenna + Nwosu + Uchenna + Nwosu + + nfl.p.31018 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/KxcJUm.vCdc57iWjX8bLzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31018.png + small + + https://s.yimg.com/iu/api/res/1.2/KxcJUm.vCdc57iWjX8bLzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31018.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 10 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27820 + 27820 + + Shaquil Barrett + Shaquil + Barrett + Shaquil + Barrett + + hip + nfl.p.27820 + nfl.t.7 + Denver Broncos + Den + + 10 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/mbA.8TsZmVRL6WUBsU6tPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27820.png + small + + https://s.yimg.com/iu/api/res/1.2/mbA.8TsZmVRL6WUBsU6tPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27820.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 22 + + + 39 + 6 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 1 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24358 + 24358 + + Albert McClellan + Albert + McClellan + Albert + McClellan + + nfl.p.24358 + nfl.t.17 + New England Patriots + NE + + 11 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/hENsEIkjjcPhlXntFJqdhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/24358.png + small + + https://s.yimg.com/iu/api/res/1.2/hENsEIkjjcPhlXntFJqdhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/24358.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 4 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25852 + 25852 + + Brandon Marshall + Brandon + Marshall + Brandon + Marshall + + knee + nfl.p.25852 + nfl.t.7 + Denver Broncos + Den + + 10 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/c2woYxgQmcxp5cmpDnldKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/25852.png + small + + https://s.yimg.com/iu/api/res/1.2/c2woYxgQmcxp5cmpDnldKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/25852.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 22 + + + 39 + 20 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28312 + 28312 + + Todd Davis + Todd + Davis + Todd + Davis + + shoulder + nfl.p.28312 + nfl.t.7 + Denver Broncos + Den + + 10 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/8MAlE4jx2lbviYb8.rpVHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28312.png + small + + https://s.yimg.com/iu/api/res/1.2/8MAlE4jx2lbviYb8.rpVHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28312.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 19 + -1 + + + season + 2018 + + + 0 + 16 + + + 38 + 80 + + + 39 + 34 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 6 + + + 66 + 20 + + + 83 + 0 + + + + + + 380.p.30785 + 30785 + + Joseph Jones + Joseph + Jones + Joseph + Jones + + nfl.p.30785 + nfl.t.7 + Denver Broncos + Den + + 10 + + 43 + LB + + https://s.yimg.com/iu/api/res/1.2/_LIYFWfvZQS5IllEEokKTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30785.png + small + + https://s.yimg.com/iu/api/res/1.2/_LIYFWfvZQS5IllEEokKTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30785.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 13 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28089 + 28089 + + Joe Thomas + Joe + Thomas + Joe + Thomas + + foot + nfl.p.28089 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/bPnXxyYvgV87J0PvI0gH3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28089.png + small + + https://s.yimg.com/iu/api/res/1.2/bPnXxyYvgV87J0PvI0gH3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28089.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 7 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26661 + 26661 + + Manti Te'o + Manti + Te'o + Manti + Te'o + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.26661 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/.FPcegcrXVmqi661F0Um1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26661.png + small + + https://s.yimg.com/iu/api/res/1.2/.FPcegcrXVmqi661F0Um1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26661.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 12 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29727 + 29727 + + Reggie Gilbert + Reggie + Gilbert + Reggie + Gilbert + + nfl.p.29727 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 93 + LB + + https://s.yimg.com/iu/api/res/1.2/QwIypIZOZd5fgGjqh66dhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29727.png + small + + https://s.yimg.com/iu/api/res/1.2/QwIypIZOZd5fgGjqh66dhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29727.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 11 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30189 + 30189 + + Alex Anzalone + Alex + Anzalone + Alex + Anzalone + + nfl.p.30189 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/YUF4lmMb31iAwQwNbWB5pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30189.png + small + + https://s.yimg.com/iu/api/res/1.2/YUF4lmMb31iAwQwNbWB5pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30189.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 45 + + + 39 + 14 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 3 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.29333 + 29333 + + Joe Schobert + Joe + Schobert + Joe + Schobert + + hamstring + nfl.p.29333 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/L5xSoDCWcF1doPC44.7_1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29333.png + small + + https://s.yimg.com/iu/api/res/1.2/L5xSoDCWcF1doPC44.7_1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29333.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 12 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 57 + + + 39 + 46 + + + 40 + 3.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 3 + + + 66 + 26 + + + 83 + 0 + + + + + + 380.p.9072 + 9072 + + Wesley Woodyard + Wesley + Woodyard + Wesley + Woodyard + + shoulder + nfl.p.9072 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/fSlveMGkJEaNgqNunncuJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9072.png + small + + https://s.yimg.com/iu/api/res/1.2/fSlveMGkJEaNgqNunncuJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9072.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 23 + 1 + + + season + 2018 + + + 0 + 14 + + + 38 + 69 + + + 39 + 44 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25815 + 25815 + + Nigel Bradham + Nigel + Bradham + Nigel + Bradham + + nfl.p.25815 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/RVApK2yJQEXG.DR1YFVZDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25815.png + small + + https://s.yimg.com/iu/api/res/1.2/RVApK2yJQEXG.DR1YFVZDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25815.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 11 + 1 + + + season + 2018 + + + 0 + 15 + + + 38 + 67 + + + 39 + 30 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29309 + 29309 + + Shilique Calhoun + Shilique + Calhoun + Shilique + Calhoun + + IR + Injured Reserve + undisclosed + nfl.p.29309 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 91 + LB + + https://s.yimg.com/iu/api/res/1.2/vrlUI9RNWgGW0WD7gqZT0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29309.png + small + + https://s.yimg.com/iu/api/res/1.2/vrlUI9RNWgGW0WD7gqZT0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29309.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 6 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31058 + 31058 + + Oren Burks + Oren + Burks + Oren + Burks + + shoulder + nfl.p.31058 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/fBcIShe.o71RpmkmAfEfuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31058.png + small + + https://s.yimg.com/iu/api/res/1.2/fBcIShe.o71RpmkmAfEfuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31058.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 18 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29807 + 29807 + + Brennan Scarlett + Brennan + Scarlett + Brennan + Scarlett + + IR + Injured Reserve + ankle + nfl.p.29807 + nfl.t.34 + Houston Texans + Hou + + 10 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/KWwmcUoJSGNw6AW5W5Shxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29807.png + small + + https://s.yimg.com/iu/api/res/1.2/KWwmcUoJSGNw6AW5W5Shxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29807.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 12 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 8 + + + 83 + 0 + + + + + + 380.p.25717 + 25717 + + Mark Barron + Mark + Barron + Mark + Barron + + ankle + nfl.p.25717 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 26 + LB + + https://s.yimg.com/iu/api/res/1.2/tHhPtpNgS018OENZzOHpsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/25717.png + small + + https://s.yimg.com/iu/api/res/1.2/tHhPtpNgS018OENZzOHpsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/25717.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 21 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 43 + + + 39 + 17 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 1 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24857 + 24857 + + Justin Houston + Justin + Houston + Justin + Houston + + hamstring + nfl.p.24857 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/B4NtfbNmrQC8IkA8jSwydQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24857.png + small + + https://s.yimg.com/iu/api/res/1.2/B4NtfbNmrQC8IkA8jSwydQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24857.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 28 + + + 39 + 9 + + + 40 + 9.0 + + + 41 + 1 + + + 42 + 5 + + + 43 + 3 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 8 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.27551 + 27551 + + Dee Ford + Dee + Ford + Dee + Ford + + groin + nfl.p.27551 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/SjazJHm1u0N9anoG76Hnuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27551.png + small + + https://s.yimg.com/iu/api/res/1.2/SjazJHm1u0N9anoG76Hnuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27551.png + 0 + DP + + LB + + 1 + 1547993280 + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 42 + + + 39 + 13 + + + 40 + 13.0 + + + 41 + 0 + + + 42 + 7 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27672 + 27672 + + Telvin Smith Sr. + Telvin + Smith Sr. + Telvin + Smith Sr. + + shoulder + nfl.p.27672 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/NJ3gcUFwVakY70HwNsqzeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27672.png + small + + https://s.yimg.com/iu/api/res/1.2/NJ3gcUFwVakY70HwNsqzeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27672.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 76 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 100 + + + 39 + 34 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 4 + + + 66 + 38 + + + 83 + 0 + + + + + + 380.p.30799 + 30799 + + Dylan Cole + Dylan + Cole + Dylan + Cole + + dislocated wrist + nfl.p.30799 + nfl.t.34 + Houston Texans + Hou + + 10 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/YhPtgpbqYJ2XFQpVjJaBHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30799.png + small + + https://s.yimg.com/iu/api/res/1.2/YhPtgpbqYJ2XFQpVjJaBHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30799.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 13 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30343 + 30343 + + Josh Harvey-Clemons + Josh + Harvey-Clemons + Josh + Harvey-Clemons + + nfl.p.30343 + nfl.t.28 + Washington Redskins + Was + + 4 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/b8vNtpw94vj4XI0Ct4bA.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30343.png + small + + https://s.yimg.com/iu/api/res/1.2/b8vNtpw94vj4XI0Ct4bA.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30343.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 4 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26975 + 26975 + + LaRoy Reynolds + LaRoy + Reynolds + LaRoy + Reynolds + + nfl.p.26975 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/Jq83YCs3kfVma0kh29jLiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26975.png + small + + https://s.yimg.com/iu/api/res/1.2/Jq83YCs3kfVma0kh29jLiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26975.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 5 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28433 + 28433 + + Eric Kendricks + Eric + Kendricks + Eric + Kendricks + + Q + Questionable + hamstring + nfl.p.28433 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/soAPyJN8PKXHEfff_irU6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28433.png + small + + https://s.yimg.com/iu/api/res/1.2/soAPyJN8PKXHEfff_irU6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28433.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 63 + + + 39 + 45 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 3 + + + 66 + 3 + + + 83 + 0 + + + + + + 380.p.28998 + 28998 + + Matt Longacre + Matt + Longacre + Matt + Longacre + + nfl.p.28998 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/zO3QWW2hB9PQ2BR4rHezVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28998.png + small + + https://s.yimg.com/iu/api/res/1.2/zO3QWW2hB9PQ2BR4rHezVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28998.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 8 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28472 + 28472 + + Jordan Hicks + Jordan + Hicks + Jordan + Hicks + + calf + nfl.p.28472 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/1Hyh3QKIwCEXu9NHxjHnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28472.png + small + + https://s.yimg.com/iu/api/res/1.2/1Hyh3QKIwCEXu9NHxjHnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28472.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 15 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 61 + + + 39 + 30 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 5 + + + 66 + 13 + + + 83 + 0 + + + + + + 380.p.30170 + 30170 + + Zach Cunningham + Zach + Cunningham + Zach + Cunningham + + knee + nfl.p.30170 + nfl.t.34 + Houston Texans + Hou + + 10 + + 41 + LB + + https://s.yimg.com/iu/api/res/1.2/Xh5eOebrzFX4AdKugO22UA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30170.png + small + + https://s.yimg.com/iu/api/res/1.2/Xh5eOebrzFX4AdKugO22UA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30170.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 73 + + + 39 + 34 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 3 + + + 66 + 38 + + + 83 + 0 + + + + + + 380.p.27555 + 27555 + + Deone Bucannon + Deone + Bucannon + Deone + Bucannon + + chest + nfl.p.27555 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 20 + LB + + https://s.yimg.com/iu/api/res/1.2/Bztsb9p0rXRKgJruAqY7Aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27555.1.png + small + + https://s.yimg.com/iu/api/res/1.2/Bztsb9p0rXRKgJruAqY7Aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27555.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 30 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.26743 + 26743 + + Gerald Hodges + Gerald + Hodges + Gerald + Hodges + + nfl.p.26743 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/aggY9vDYExUbU_wyeAj8RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26743.png + small + + https://s.yimg.com/iu/api/res/1.2/aggY9vDYExUbU_wyeAj8RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26743.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 25 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 44 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30160 + 30160 + + Tyus Bowser + Tyus + Bowser + Tyus + Bowser + + nfl.p.30160 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/zYr65Ytf_c4TrXASETirAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30160.png + small + + https://s.yimg.com/iu/api/res/1.2/zYr65Ytf_c4TrXASETirAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30160.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 6 + + + 39 + 5 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24336 + 24336 + + Vincent Rey + Vincent + Rey + Vincent + Rey + + nfl.p.24336 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/FpsvBY0oQOjawJkOx_3ZLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/24336.png + small + + https://s.yimg.com/iu/api/res/1.2/FpsvBY0oQOjawJkOx_3ZLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/24336.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 11 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24827 + 24827 + + Bruce Carter + Bruce + Carter + Bruce + Carter + + nfl.p.24827 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/brwxRdbrjxXPJy0NuzYlSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24827.1.png + small + + https://s.yimg.com/iu/api/res/1.2/brwxRdbrjxXPJy0NuzYlSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24827.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 16 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30568 + 30568 + + Austin Calitro + Austin + Calitro + Austin + Calitro + + nfl.p.30568 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 32 + + + 39 + 13 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30274 + 30274 + + Anthony Walker + Anthony + Walker + Anthony + Walker + + shoulder + nfl.p.30274 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/GY0FjBd9SCIkVnSgmg21aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30274.png + small + + https://s.yimg.com/iu/api/res/1.2/GY0FjBd9SCIkVnSgmg21aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30274.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 69 + + + 39 + 36 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 10 + + + 66 + 11 + + + 83 + 0 + + + + + + 380.p.29098 + 29098 + + Justin March-Lillard + Justin + March-Lillard + Justin + March-Lillard + + nfl.p.29098 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/fNpc4WQhkDSffBqWeiFb.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29098.png + small + + https://s.yimg.com/iu/api/res/1.2/fNpc4WQhkDSffBqWeiFb.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29098.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 1 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27660 + 27660 + + Kevin Pierre-Louis + Kevin + Pierre-Louis + Kevin + Pierre-Louis + + IR + Injured Reserve + shoulder + nfl.p.27660 + nfl.t.20 + New York Jets + NYJ + + 11 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/xYCet6QzTkZbHoWv84xeWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27660.png + small + + https://s.yimg.com/iu/api/res/1.2/xYCet6QzTkZbHoWv84xeWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27660.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 6 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30167 + 30167 + + Raekwon McMillan + Raekwon + McMillan + Raekwon + McMillan + + nfl.p.30167 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/oXaLpPJHx1omzb.SLMkcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30167.png + small + + https://s.yimg.com/iu/api/res/1.2/oXaLpPJHx1omzb.SLMkcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30167.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 69 + + + 39 + 36 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26673 + 26673 + + Jon Bostic + Jon + Bostic + Jon + Bostic + + nfl.p.26673 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/moZ4vtjnV8s.IvZ7Q39E9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26673.png + small + + https://s.yimg.com/iu/api/res/1.2/moZ4vtjnV8s.IvZ7Q39E9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26673.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 35 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 46 + + + 39 + 27 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25736 + 25736 + + Whitney Mercilus + Whitney + Mercilus + Whitney + Mercilus + + nfl.p.25736 + nfl.t.34 + Houston Texans + Hou + + 10 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/2A7rmcB55USpXgGi.jCZXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25736.png + small + + https://s.yimg.com/iu/api/res/1.2/2A7rmcB55USpXgGi.jCZXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25736.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 17 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25940 + 25940 + + Nate Stupar + Nate + Stupar + Nate + Stupar + + nfl.p.25940 + nfl.t.19 + New York Giants + NYG + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/O1_VgML4csWNxeVCJ3wJ.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25940.png + small + + https://s.yimg.com/iu/api/res/1.2/O1_VgML4csWNxeVCJ3wJ.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25940.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 10 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26093 + 26093 + + Julian Stanford + Julian + Stanford + Julian + Stanford + + Q + Questionable + ankle + nfl.p.26093 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/wLk7qiCdgj9lQjs3JgP1PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26093.png + small + + https://s.yimg.com/iu/api/res/1.2/wLk7qiCdgj9lQjs3JgP1PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26093.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 13 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30188 + 30188 + + Duke Riley + Duke + Riley + Duke + Riley + + nfl.p.30188 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 42 + LB + + https://s.yimg.com/iu/api/res/1.2/U4U5LeIfy6a1oXdwC4YE4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30188.png + small + + https://s.yimg.com/iu/api/res/1.2/U4U5LeIfy6a1oXdwC4YE4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30188.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 37 + + + 39 + 23 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28560 + 28560 + + D.J. Alexander + D.J. + Alexander + D.J. + Alexander + + hamstring + nfl.p.28560 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/xIBC3z8z19M8QSQ32qqSmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28560.png + small + + https://s.yimg.com/iu/api/res/1.2/xIBC3z8z19M8QSQ32qqSmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28560.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27545 + 27545 + + C.J. Mosley + C.J. + Mosley + C.J. + Mosley + + thigh + nfl.p.27545 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/gF1kV70rRNmkRpaZiQ76vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27545.png + small + + https://s.yimg.com/iu/api/res/1.2/gF1kV70rRNmkRpaZiQ76vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27545.png + 0 + DP + + LB + + 1 + 1547567880 + + - + - + - + - + + + week + 17 + 29 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 70 + + + 39 + 35 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30992 + 30992 + + Rashaan Evans + Rashaan + Evans + Rashaan + Evans + + hamstring + nfl.p.30992 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/n1n9.RLkOIN9Hoj5CQQnPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30992.png + small + + https://s.yimg.com/iu/api/res/1.2/n1n9.RLkOIN9Hoj5CQQnPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30992.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 33 + + + 39 + 20 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29885 + 29885 + + Terrance Smith + Terrance + Smith + Terrance + Smith + + IR + Injured Reserve + knee + nfl.p.29885 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/W6F8Cw7LJa2xWHKN7d0gSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29885.png + small + + https://s.yimg.com/iu/api/res/1.2/W6F8Cw7LJa2xWHKN7d0gSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29885.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 13 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30268 + 30268 + + Jayon Brown + Jayon + Brown + Jayon + Brown + + nfl.p.30268 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/l9gaWg4rBuf0skE1MF8Pfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30268.png + small + + https://s.yimg.com/iu/api/res/1.2/l9gaWg4rBuf0skE1MF8Pfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30268.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 64 + + + 39 + 33 + + + 40 + 6.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 8 + + + 66 + 29 + + + 83 + 0 + + + + + + 380.p.24789 + 24789 + + Von Miller + Von + Miller + Von + Miller + + ankle + nfl.p.24789 + nfl.t.7 + Denver Broncos + Den + + 10 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/3BUQnHsq1.CHC6nS1g3vjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24789.png + small + + https://s.yimg.com/iu/api/res/1.2/3BUQnHsq1.CHC6nS1g3vjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24789.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 79 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 29 + + + 39 + 19 + + + 40 + 14.5 + + + 41 + 1 + + + 42 + 4 + + + 43 + 3 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 14 + + + 66 + 45 + + + 83 + 0 + + + + + + 380.p.28541 + 28541 + + Kyle Emanuel + Kyle + Emanuel + Kyle + Emanuel + + hip + nfl.p.28541 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/odqxfjM68NaceBXbu6smyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28541.png + small + + https://s.yimg.com/iu/api/res/1.2/odqxfjM68NaceBXbu6smyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28541.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 21 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 18 + + + 83 + 0 + + + + + + 380.p.27203 + 27203 + + Will Compton + Will + Compton + Will + Compton + + hamstring + nfl.p.27203 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/uE.AOhuQp1xz_p41j3KhXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27203.png + small + + https://s.yimg.com/iu/api/res/1.2/uE.AOhuQp1xz_p41j3KhXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27203.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 9 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30448 + 30448 + + Eric Wilson + Eric + Wilson + Eric + Wilson + + nfl.p.30448 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/BP_hOKt5LA2PIdwMk0WikA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30448.png + small + + https://s.yimg.com/iu/api/res/1.2/BP_hOKt5LA2PIdwMk0WikA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30448.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 11 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29270 + 29270 + + Myles Jack + Myles + Jack + Myles + Jack + + nfl.p.29270 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/ePd.EBzTpfi1ztkalJCZPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29270.png + small + + https://s.yimg.com/iu/api/res/1.2/ePd.EBzTpfi1ztkalJCZPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29270.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 45 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 75 + + + 39 + 32 + + + 40 + 2.5 + + + 41 + 1 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 32 + + + 83 + 0 + + + + + + 380.p.28515 + 28515 + + Damien Wilson + Damien + Wilson + Damien + Wilson + + nfl.p.28515 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/oHLr2cZRLaIsnUvNVLtAFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28515.png + small + + https://s.yimg.com/iu/api/res/1.2/oHLr2cZRLaIsnUvNVLtAFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28515.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 28 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28506 + 28506 + + Ramik Wilson + Ramik + Wilson + Ramik + Wilson + + nfl.p.28506 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/LPijY.qy7rPY2NcBp81BIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28506.png + small + + https://s.yimg.com/iu/api/res/1.2/LPijY.qy7rPY2NcBp81BIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28506.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 26 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.24871 + 24871 + + Mason Foster + Mason + Foster + Mason + Foster + + nfl.p.24871 + nfl.t.28 + Washington Redskins + Was + + 4 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/hISwwGa2AFOP99fCZKBJ2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24871.png + small + + https://s.yimg.com/iu/api/res/1.2/hISwwGa2AFOP99fCZKBJ2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24871.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 19 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 81 + + + 39 + 50 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 4 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.9277 + 9277 + + Brian Orakpo + Brian + Orakpo + Brian + Orakpo + + elbow + nfl.p.9277 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 98 + LB + + https://s.yimg.com/iu/api/res/1.2/mU_p9I6JLtlbZDvEsXzEWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9277.png + small + + https://s.yimg.com/iu/api/res/1.2/mU_p9I6JLtlbZDvEsXzEWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9277.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 18 + + + 39 + 10 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30722 + 30722 + + Isaiah Irving + Isaiah + Irving + Isaiah + Irving + + nfl.p.30722 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 47 + LB + + https://s.yimg.com/iu/api/res/1.2/gdk__2YmNDt2mai5ocdPTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30722.png + small + + https://s.yimg.com/iu/api/res/1.2/gdk__2YmNDt2mai5ocdPTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30722.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 7 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31092 + 31092 + + Kenny Young + Kenny + Young + Kenny + Young + + knee + nfl.p.31092 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 40 + LB + + https://s.yimg.com/iu/api/res/1.2/zhDD65JPr42_4tHmDuvpoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31092.png + small + + https://s.yimg.com/iu/api/res/1.2/zhDD65JPr42_4tHmDuvpoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31092.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 40 + + + 39 + 11 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27678 + 27678 + + Aaron Lynch + Aaron + Lynch + Aaron + Lynch + + Q + Questionable + elbow + nfl.p.27678 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 99 + LB + + https://s.yimg.com/iu/api/res/1.2/whA.pP7iRVxtnu1oydhTOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27678.png + small + + https://s.yimg.com/iu/api/res/1.2/whA.pP7iRVxtnu1oydhTOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27678.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 13 + + + 39 + 3 + + + 40 + 3.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 20 + + + 83 + 0 + + + + + + 380.p.30143 + 30143 + + T.J. Watt + T.J. + Watt + T.J. + Watt + + nfl.p.30143 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 90 + LB + + https://s.yimg.com/iu/api/res/1.2/tA3nSCqOm.9DTFNfzLJ7BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30143.png + small + + https://s.yimg.com/iu/api/res/1.2/tA3nSCqOm.9DTFNfzLJ7BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30143.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 60 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 50 + + + 39 + 18 + + + 40 + 13.0 + + + 41 + 0 + + + 42 + 6 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 1 + + + 65 + 12 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7569 + 7569 + + Lorenzo Alexander + Lorenzo + Alexander + Lorenzo + Alexander + + nfl.p.7569 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/l4Ambvd3B8AjxDzQzNfdFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7569.png + small + + https://s.yimg.com/iu/api/res/1.2/l4Ambvd3B8AjxDzQzNfdFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7569.png + 0 + DP + + LB + + 1 + 1547653140 + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 55 + + + 39 + 19 + + + 40 + 6.5 + + + 41 + 2 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 11 + + + 66 + 9 + + + 83 + 0 + + + + + + 380.p.26238 + 26238 + + Vontaze Burfict + Vontaze + Burfict + Vontaze + Burfict + + Q + Questionable + concussion + nfl.p.26238 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/rSpDPdSOcrlgg8H7.MLS9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26238.png + small + + https://s.yimg.com/iu/api/res/1.2/rSpDPdSOcrlgg8H7.MLS9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26238.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 16 + + + 39 + 17 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24886 + 24886 + + K.J. Wright + K.J. + Wright + K.J. + Wright + + knee + nfl.p.24886 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/94vFYz8I1UXwBsFwd8_raw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24886.png + small + + https://s.yimg.com/iu/api/res/1.2/94vFYz8I1UXwBsFwd8_raw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24886.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 15 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30633 + 30633 + + Nicholas Morrow + Nicholas + Morrow + Nicholas + Morrow + + nfl.p.30633 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/CcDgUYuuCxXmOCQUWJCqZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30633.png + small + + https://s.yimg.com/iu/api/res/1.2/CcDgUYuuCxXmOCQUWJCqZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30633.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 30 + + + 39 + 13 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27601 + 27601 + + Preston Brown + Preston + Brown + Preston + Brown + + IR + Injured Reserve + knee + nfl.p.27601 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/ucLAGz2K4ZdqfXX2nSxYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27601.png + small + + https://s.yimg.com/iu/api/res/1.2/ucLAGz2K4ZdqfXX2nSxYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27601.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 27 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 20 + + + 83 + 0 + + + + + + 380.p.29442 + 29442 + + Kamu Grugier-Hill + Kamu + Grugier-Hill + Kamu + Grugier-Hill + + groin + nfl.p.29442 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/qf3IIWX6xEl2H0XhneFMQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29442.png + small + + https://s.yimg.com/iu/api/res/1.2/qf3IIWX6xEl2H0XhneFMQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29442.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 12 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 24 + + + 83 + 0 + + + + + + 380.p.25029 + 25029 + + Malcolm Smith + Malcolm + Smith + Malcolm + Smith + + hamstring + nfl.p.25029 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/ZARn_mWSYdEsaG7FJz3ldg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25029.png + small + + https://s.yimg.com/iu/api/res/1.2/ZARn_mWSYdEsaG7FJz3ldg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25029.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 22 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28419 + 28419 + + Stephone Anthony + Stephone + Anthony + Stephone + Anthony + + hamstring + nfl.p.28419 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/LDl1e7Zku_SuD9FpR3msjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28419.png + small + + https://s.yimg.com/iu/api/res/1.2/LDl1e7Zku_SuD9FpR3msjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28419.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 3 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27166 + 27166 + + Daren Bates + Daren + Bates + Daren + Bates + + nfl.p.27166 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/6fll9DxjdihAPs8lO6Vi3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27166.png + small + + https://s.yimg.com/iu/api/res/1.2/6fll9DxjdihAPs8lO6Vi3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27166.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30296 + 30296 + + Ukeme Eligwe + Ukeme + Eligwe + Ukeme + Eligwe + + nfl.p.30296 + nfl.t.19 + New York Giants + NYG + + 9 + + 45 + LB + + https://s.yimg.com/iu/api/res/1.2/bVLV8DPxN39nCI0Pb_8hdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30296.png + small + + https://s.yimg.com/iu/api/res/1.2/bVLV8DPxN39nCI0Pb_8hdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30296.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 4 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29716 + 29716 + + Nicholas Grigsby + Nicholas + Grigsby + Nicholas + Grigsby + + illness + nfl.p.29716 + nfl.t.8 + Detroit Lions + Det + + 6 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/g3grHXS1ZGTtHZghLd0vqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29716.png + small + + https://s.yimg.com/iu/api/res/1.2/g3grHXS1ZGTtHZghLd0vqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29716.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 7 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31117 + 31117 + + Micah Kiser + Micah + Kiser + Micah + Kiser + + nfl.p.31117 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/EacbGGXvjznb_5IUeqGXHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31117.png + small + + https://s.yimg.com/iu/api/res/1.2/EacbGGXvjznb_5IUeqGXHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31117.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 2 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28510 + 28510 + + Za'Darius Smith + Za'Darius + Smith + Za'Darius + Smith + + hamstring + nfl.p.28510 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 90 + LB + + https://s.yimg.com/iu/api/res/1.2/kvfawj.A7KBEBqZLqN5b1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/28510.png + small + + https://s.yimg.com/iu/api/res/1.2/kvfawj.A7KBEBqZLqN5b1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/28510.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 26 + + + 39 + 19 + + + 40 + 8.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 10 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27612 + 27612 + + Kareem Martin + Kareem + Martin + Kareem + Martin + + nfl.p.27612 + nfl.t.19 + New York Giants + NYG + + 9 + + 96 + LB + + https://s.yimg.com/iu/api/res/1.2/0aNgLKLENZoknhRVk0TFXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27612.png + small + + https://s.yimg.com/iu/api/res/1.2/0aNgLKLENZoknhRVk0TFXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27612.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 26 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29317 + 29317 + + Jordan Jenkins + Jordan + Jenkins + Jordan + Jenkins + + ankle + nfl.p.29317 + nfl.t.20 + New York Jets + NYJ + + 11 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/9OPhaVPL_tKVZTgpH_GVqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29317.png + small + + https://s.yimg.com/iu/api/res/1.2/9OPhaVPL_tKVZTgpH_GVqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29317.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 24 + + + 39 + 11 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30221 + 30221 + + Vince Biegel + Vince + Biegel + Vince + Biegel + + nfl.p.30221 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/IWpdqufeWwoot08gqIdYLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30221.png + small + + https://s.yimg.com/iu/api/res/1.2/IWpdqufeWwoot08gqIdYLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30221.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28426 + 28426 + + Preston Smith + Preston + Smith + Preston + Smith + + nfl.p.28426 + nfl.t.28 + Washington Redskins + Was + + 4 + + 94 + LB + + https://s.yimg.com/iu/api/res/1.2/ScUeM7UO0y0C46w9UeX1TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28426.png + small + + https://s.yimg.com/iu/api/res/1.2/ScUeM7UO0y0C46w9UeX1TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28426.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 30 + + + 39 + 23 + + + 40 + 4.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 5 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.25756 + 25756 + + Mychal Kendricks + Mychal + Kendricks + Mychal + Kendricks + + IR + Injured Reserve + knee + nfl.p.25756 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/gRy0GT76iBh9SGAirOcnSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25756.png + small + + https://s.yimg.com/iu/api/res/1.2/gRy0GT76iBh9SGAirOcnSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25756.png + 0 + DP + + LB + + 1 + 1547734620 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 15 + + + 39 + 4 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25787 + 25787 + + Demario Davis + Demario + Davis + Demario + Davis + + nfl.p.25787 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/UuxpS.s49a2efDQeDv5xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/25787.png + small + + https://s.yimg.com/iu/api/res/1.2/UuxpS.s49a2efDQeDv5xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/25787.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 40 + -1 + + + season + 2018 + + + 0 + 16 + + + 38 + 74 + + + 39 + 36 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 11 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28467 + 28467 + + Eli Harold + Eli + Harold + Eli + Harold + + shoulder + nfl.p.28467 + nfl.t.8 + Detroit Lions + Det + + 6 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/b6OhX_TG533SP8Zapb24Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28467.png + small + + https://s.yimg.com/iu/api/res/1.2/b6OhX_TG533SP8Zapb24Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28467.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 8 + + + 39 + 2 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31750 + 31750 + + Chris Board + Chris + Board + Chris + Board + + nfl.p.31750 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30281 + 30281 + + Marquel Lee + Marquel + Lee + Marquel + Lee + + nfl.p.30281 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 55 + LB + + https://s.yimg.com/iu/api/res/1.2/B6jlpewlKZ9gvDepFKgdMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30281.png + small + + https://s.yimg.com/iu/api/res/1.2/B6jlpewlKZ9gvDepFKgdMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30281.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 36 + + + 39 + 32 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25898 + 25898 + + Danny Trevathan + Danny + Trevathan + Danny + Trevathan + + nfl.p.25898 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 59 + LB + + https://s.yimg.com/iu/api/res/1.2/WwSCJ87_06XZN84diI2qyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25898.png + small + + https://s.yimg.com/iu/api/res/1.2/WwSCJ87_06XZN84diI2qyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25898.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 21 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 76 + + + 39 + 26 + + + 40 + 2.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 8 + + + 66 + 12 + + + 83 + 0 + + + + + + 380.p.29365 + 29365 + + Blake Martinez + Blake + Martinez + Blake + Martinez + + ankle + nfl.p.29365 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 50 + LB + + https://s.yimg.com/iu/api/res/1.2/92UkEy2ciA65_znHK1GB7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29365.png + small + + https://s.yimg.com/iu/api/res/1.2/92UkEy2ciA65_znHK1GB7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29365.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 63 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 91 + + + 39 + 53 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 10 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25358 + 25358 + + Josh Bynes + Josh + Bynes + Josh + Bynes + + IR + Injured Reserve + thumb + nfl.p.25358 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 57 + LB + + https://s.yimg.com/iu/api/res/1.2/swi9NKiRZcDr7SwwnvzssQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25358.1.png + small + + https://s.yimg.com/iu/api/res/1.2/swi9NKiRZcDr7SwwnvzssQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/25358.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 52 + + + 39 + 23 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 5 + + + 66 + 23 + + + 83 + 0 + + + + + + 380.p.7190 + 7190 + + Thomas Davis + Thomas + Davis + Thomas + Davis + + nfl.p.7190 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 58 + LB + + https://s.yimg.com/iu/api/res/1.2/RfebfWbyfj.Sq01Aw0JWyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7190.png + small + + https://s.yimg.com/iu/api/res/1.2/RfebfWbyfj.Sq01Aw0JWyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7190.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 46 + + + 39 + 33 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26370 + 26370 + + L.J. Fort + L.J. + Fort + L.J. + Fort + + ankle + nfl.p.26370 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/9_IqMEAxj6Ep4wbvg5N2OQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26370.png + small + + https://s.yimg.com/iu/api/res/1.2/9_IqMEAxj6Ep4wbvg5N2OQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26370.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 38 + + + 39 + 10 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25762 + 25762 + + Zach Brown + Zach + Brown + Zach + Brown + + Q + Questionable + illness + nfl.p.25762 + nfl.t.28 + Washington Redskins + Was + + 4 + + 53 + LB + + https://s.yimg.com/iu/api/res/1.2/d3Tq_iPLpNs6GOepiQ0Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/25762.png + small + + https://s.yimg.com/iu/api/res/1.2/d3Tq_iPLpNs6GOepiQ0Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/25762.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 22 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 69 + + + 39 + 27 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 10 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28935 + 28935 + + Neville Hewitt + Neville + Hewitt + Neville + Hewitt + + nfl.p.28935 + nfl.t.20 + New York Jets + NYJ + + 11 + + 46 + LB + + https://s.yimg.com/iu/api/res/1.2/PBOSUadUejqjn8oyjUasVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28935.png + small + + https://s.yimg.com/iu/api/res/1.2/PBOSUadUejqjn8oyjUasVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28935.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 26 + + + 39 + 13 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31785 + 31785 + + James Crawford + James + Crawford + James + Crawford + + hamstring + nfl.p.31785 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 54 + LB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31111 + 31111 + + Shaquem Griffin + Shaquem + Griffin + Shaquem + Griffin + + nfl.p.31111 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 49 + LB + + https://s.yimg.com/iu/api/res/1.2/VJ8B.byAxgJOI7uS3BWhNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31111.png + small + + https://s.yimg.com/iu/api/res/1.2/VJ8B.byAxgJOI7uS3BWhNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31111.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29359 + 29359 + + Antonio Morrison + Antonio + Morrison + Antonio + Morrison + + nfl.p.29359 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/l7nwGPqoioAZ9FwzN7ZnHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29359.1.png + small + + https://s.yimg.com/iu/api/res/1.2/l7nwGPqoioAZ9FwzN7ZnHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29359.1.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 21 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31167 + 31167 + + Shaun Dion Hamilton + Shaun Dion + Hamilton + Shaun Dion + Hamilton + + nfl.p.31167 + nfl.t.28 + Washington Redskins + Was + + 4 + + 51 + LB + + https://s.yimg.com/iu/api/res/1.2/7ay7lraWy1KDXDrX2ABGkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31167.png + small + + https://s.yimg.com/iu/api/res/1.2/7ay7lraWy1KDXDrX2ABGkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31167.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 19 + + + 39 + 8 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28410 + 28410 + + Bud Dupree + Bud + Dupree + Bud + Dupree + + pectoral + nfl.p.28410 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 48 + LB + + https://s.yimg.com/iu/api/res/1.2/TAsGO5.1ErcmOW4KQQ_thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28410.png + small + + https://s.yimg.com/iu/api/res/1.2/TAsGO5.1ErcmOW4KQQ_thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28410.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 30 + + + 39 + 12 + + + 40 + 5.5 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 8 + + + 66 + 10 + + + 83 + 0 + + + + + + 380.p.26653 + 26653 + + Alec Ogletree + Alec + Ogletree + Alec + Ogletree + + Q + Questionable + concussion + nfl.p.26653 + nfl.t.19 + New York Giants + NYG + + 9 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/7HyBOBoOsx63xyp9s2h0Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26653.png + small + + https://s.yimg.com/iu/api/res/1.2/7HyBOBoOsx63xyp9s2h0Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26653.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 58 + + + 39 + 35 + + + 40 + 1.0 + + + 41 + 5 + + + 42 + 0 + + + 43 + 0 + + + 44 + 2 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 6 + + + 66 + 61 + + + 83 + 0 + + + + + + 380.p.29243 + 29243 + + Leonard Floyd + Leonard + Floyd + Leonard + Floyd + + nfl.p.29243 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 94 + LB + + https://s.yimg.com/iu/api/res/1.2/zljUzhNjRAhADWt1gjC4ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29243.png + small + + https://s.yimg.com/iu/api/res/1.2/zljUzhNjRAhADWt1gjC4ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29243.png + 0 + DP + + LB + + 1 + 1547493720 + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 34 + + + 39 + 13 + + + 40 + 4.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 9 + + + 66 + 19 + + + 83 + 0 + + + + + + 380.p.31070 + 31070 + + Dorian O'Daniel + Dorian + O'Daniel + Dorian + O'Daniel + + O + Out + calf, ankle + nfl.p.31070 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 44 + LB + + https://s.yimg.com/iu/api/res/1.2/lzQ9nIaTXQikUeLT8BlKAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31070.png + small + + https://s.yimg.com/iu/api/res/1.2/lzQ9nIaTXQikUeLT8BlKAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31070.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 21 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28436 + 28436 + + Denzel Perryman + Denzel + Perryman + Denzel + Perryman + + IR + Injured Reserve + knee + nfl.p.28436 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 52 + LB + + https://s.yimg.com/iu/api/res/1.2/nN2gVEZP4EpKNMMC67NHjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28436.png + small + + https://s.yimg.com/iu/api/res/1.2/nN2gVEZP4EpKNMMC67NHjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28436.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 30 + + + 39 + 21 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.28916 + 28916 + + Zach Vigil + Zach + Vigil + Zach + Vigil + + thigh + nfl.p.28916 + nfl.t.28 + Washington Redskins + Was + + 4 + + 56 + LB + + https://s.yimg.com/iu/api/res/1.2/MzF2OxpfvJGyYiixF5dx6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28916.png + small + + https://s.yimg.com/iu/api/res/1.2/MzF2OxpfvJGyYiixF5dx6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28916.png + 0 + DP + + LB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 7 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26887 + 26887 + + Lerentee McCray + Lerentee + McCray + Lerentee + McCray + + illness + nfl.p.26887 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/W72vbr_M.KUN8Yn8q6M6DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26887.png + small + + https://s.yimg.com/iu/api/res/1.2/W72vbr_M.KUN8Yn8q6M6DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26887.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 6 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27533 + 27533 + + Khalil Mack + Khalil + Mack + Khalil + Mack + + Q + Questionable + ankle + nfl.p.27533 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 52 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/voYflJKxMn_LcxtH4bV2iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27533.png + small + + https://s.yimg.com/iu/api/res/1.2/voYflJKxMn_LcxtH4bV2iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27533.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 96 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 37 + + + 39 + 10 + + + 40 + 12.5 + + + 41 + 1 + + + 42 + 6 + + + 43 + 2 + + + 44 + 1 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 10 + + + 66 + 27 + + + 83 + 0 + + + + + + 380.p.31016 + 31016 + + Breeland Speaks + Breeland + Speaks + Breeland + Speaks + + nfl.p.31016 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 57 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/oSdcHH7RN4y5wjsoD6uCKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31016.png + small + + https://s.yimg.com/iu/api/res/1.2/oSdcHH7RN4y5wjsoD6uCKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31016.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 9 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24824 + 24824 + + Jabaal Sheard + Jabaal + Sheard + Jabaal + Sheard + + teeth, knee + nfl.p.24824 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 93 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/TG9dqisbUTsMpkOdGhXLLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24824.png + small + + https://s.yimg.com/iu/api/res/1.2/TG9dqisbUTsMpkOdGhXLLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24824.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 37 + + + 39 + 13 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 14 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25782 + 25782 + + Olivier Vernon + Olivier + Vernon + Olivier + Vernon + + ankle + nfl.p.25782 + nfl.t.19 + New York Giants + NYG + + 9 + + 54 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/HSViZe1Anvrt9jVxdmdP8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25782.png + small + + https://s.yimg.com/iu/api/res/1.2/HSViZe1Anvrt9jVxdmdP8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25782.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 23 + + + 39 + 7 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 43 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.25731 + 25731 + + Chandler Jones + Chandler + Jones + Chandler + Jones + + nfl.p.25731 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/.WAqTVMjxRJUhZsEKvzLHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25731.png + small + + https://s.yimg.com/iu/api/res/1.2/.WAqTVMjxRJUhZsEKvzLHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25731.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 34 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 38 + + + 39 + 11 + + + 40 + 13.0 + + + 41 + 0 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28391 + 28391 + + Dante Fowler Jr. + Dante + Fowler Jr. + Dante + Fowler Jr. + + nfl.p.28391 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 56 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/90mDoExKOyl7ZivGwX1jjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28391.png + small + + https://s.yimg.com/iu/api/res/1.2/90mDoExKOyl7ZivGwX1jjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28391.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 23 + + + 39 + 7 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31156 + 31156 + + Jacob Martin + Jacob + Martin + Jacob + Martin + + nfl.p.31156 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 59 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/x7LSJ.h1GmxejgkVbRhpag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31156.png + small + + https://s.yimg.com/iu/api/res/1.2/x7LSJ.h1GmxejgkVbRhpag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31156.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 2 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31146 + 31146 + + Duke Ejiofor + Duke + Ejiofor + Duke + Ejiofor + + shoulder + nfl.p.31146 + nfl.t.34 + Houston Texans + Hou + + 10 + + 53 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/JJ09W.gnDk_jWajgEI2M0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31146.png + small + + https://s.yimg.com/iu/api/res/1.2/JJ09W.gnDk_jWajgEI2M0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31146.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 6 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26752 + 26752 + + John Simon + John + Simon + John + Simon + + shoulder + nfl.p.26752 + nfl.t.17 + New England Patriots + NE + + 11 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/Xc2GZbADNYm4QahPXPb9Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26752.1.png + small + + https://s.yimg.com/iu/api/res/1.2/Xc2GZbADNYm4QahPXPb9Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26752.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 8 + + + 39 + 9 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28446 + 28446 + + Markus Golden + Markus + Golden + Markus + Golden + + Q + Questionable + ankle + nfl.p.28446 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 44 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/SC9z9JSoEgHoEaMUyZPgNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28446.1.png + small + + https://s.yimg.com/iu/api/res/1.2/SC9z9JSoEgHoEaMUyZPgNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28446.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 25 + + + 39 + 5 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31057 + 31057 + + Arden Key + Arden + Key + Arden + Key + + knee + nfl.p.31057 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 99 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/Sr0kK78SXvpBAQgf_DRUTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31057.png + small + + https://s.yimg.com/iu/api/res/1.2/Sr0kK78SXvpBAQgf_DRUTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31057.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 21 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25725 + 25725 + + Bruce Irvin + Bruce + Irvin + Bruce + Irvin + + nfl.p.25725 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 52 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/9GSB3SYL6aW1Eg1nMYsZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25725.png + small + + https://s.yimg.com/iu/api/res/1.2/9GSB3SYL6aW1Eg1nMYsZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25725.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 3 + + + 40 + 6.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30975 + 30975 + + Bradley Chubb + Bradley + Chubb + Bradley + Chubb + + nfl.p.30975 + nfl.t.7 + Denver Broncos + Den + + 10 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/arv3y2eO800xY9r7uKCBDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30975.png + small + + https://s.yimg.com/iu/api/res/1.2/arv3y2eO800xY9r7uKCBDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30975.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 23 + -1 + + + season + 2018 + + + 0 + 16 + + + 38 + 41 + + + 39 + 19 + + + 40 + 12.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 14 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.31011 + 31011 + + Harold Landry + Harold + Landry + Harold + Landry + + ankle + nfl.p.31011 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 58 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/9mL_1c9epb1qg7hfD0ZqZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31011.png + small + + https://s.yimg.com/iu/api/res/1.2/9mL_1c9epb1qg7hfD0ZqZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31011.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 24 + + + 39 + 20 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30229 + 30229 + + Carl Lawson + Carl + Lawson + Carl + Lawson + + IR + Injured Reserve + knee + nfl.p.30229 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 58 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/5s4obI4GDdpHenvfpryJSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30229.1.png + small + + https://s.yimg.com/iu/api/res/1.2/5s4obI4GDdpHenvfpryJSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30229.1.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 4 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29867 + 29867 + + Romeo Okwara + Romeo + Okwara + Romeo + Okwara + + nfl.p.29867 + nfl.t.8 + Detroit Lions + Det + + 6 + + 95 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/qohRtAUIYPfv3lkSy3ATJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29867.png + small + + https://s.yimg.com/iu/api/res/1.2/qohRtAUIYPfv3lkSy3ATJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29867.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 28 + + + 39 + 11 + + + 40 + 7.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27578 + 27578 + + Jeremiah Attaochu + Jeremiah + Attaochu + Jeremiah + Attaochu + + IR + Injured Reserve + concussion + nfl.p.27578 + nfl.t.20 + New York Jets + NYJ + + 11 + + 55 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/u9bLbmFEyhMAIvAIiclUWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27578.png + small + + https://s.yimg.com/iu/api/res/1.2/u9bLbmFEyhMAIvAIiclUWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27578.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 7 + + + 39 + 2 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27575 + 27575 + + Trent Murphy + Trent + Murphy + Trent + Murphy + + knee + nfl.p.27575 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 93 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/dfFmB4EXqhMdgKPoonanYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27575.png + small + + https://s.yimg.com/iu/api/res/1.2/dfFmB4EXqhMdgKPoonanYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27575.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 14 + + + 39 + 10 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24801 + 24801 + + Robert Quinn + Robert + Quinn + Robert + Quinn + + nfl.p.24801 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 94 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/tzoYzZF_g8EtoQCj6j6B8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24801.png + small + + https://s.yimg.com/iu/api/res/1.2/tzoYzZF_g8EtoQCj6j6B8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24801.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 13 + + + 40 + 6.5 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30193 + 30193 + + Tarell Basham + Tarell + Basham + Tarell + Basham + + nfl.p.30193 + nfl.t.20 + New York Jets + NYJ + + 11 + + 93 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/j3DfUQiGUD.gNyC5wzyBow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30193.png + small + + https://s.yimg.com/iu/api/res/1.2/j3DfUQiGUD.gNyC5wzyBow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30193.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 6 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31214 + 31214 + + Justin Lawler + Justin + Lawler + Justin + Lawler + + nfl.p.31214 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 53 + LB,DE + + https://s.yimg.com/iu/api/res/1.2/o5unC.fi3eq8bIJS9hDrrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31214.png + small + + https://s.yimg.com/iu/api/res/1.2/o5unC.fi3eq8bIJS9hDrrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/31214.png + 0 + DP + + LB + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 4 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31049 + 31049 + + Rasheem Green + Rasheem + Green + Rasheem + Green + + ankle + nfl.p.31049 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/2PqrQvQv3EXv8FqsPj7CeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31049.png + small + + https://s.yimg.com/iu/api/res/1.2/2PqrQvQv3EXv8FqsPj7CeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31049.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 7 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30114 + 30114 + + Myles Garrett + Myles + Garrett + Myles + Garrett + + nfl.p.30114 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/5gkqGyy3zYMSUdj.3n6G7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30114.png + small + + https://s.yimg.com/iu/api/res/1.2/5gkqGyy3zYMSUdj.3n6G7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30114.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 31 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 35 + + + 39 + 9 + + + 40 + 13.5 + + + 41 + 0 + + + 42 + 3 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 1 + + + 65 + 12 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28423 + 28423 + + Mario Edwards Jr. + Mario + Edwards Jr. + Mario + Edwards Jr. + + Q + Questionable + calf + nfl.p.28423 + nfl.t.19 + New York Giants + NYG + + 9 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/gTjKYBYec.D2c3bxhJUnoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28423.png + small + + https://s.yimg.com/iu/api/res/1.2/gTjKYBYec.D2c3bxhJUnoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28423.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 12 + + + 39 + 2 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27763 + 27763 + + Shelby Harris + Shelby + Harris + Shelby + Harris + + nfl.p.27763 + nfl.t.7 + Denver Broncos + Den + + 10 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/ymQeYcJEWFCOJ9gifRalLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27763.png + small + + https://s.yimg.com/iu/api/res/1.2/ymQeYcJEWFCOJ9gifRalLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27763.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 16 + + + 40 + 1.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25147 + 25147 + + Mario Addison + Mario + Addison + Mario + Addison + + shoulder + nfl.p.25147 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/V.IFyHsRqvluSKfBdKwrnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25147.png + small + + https://s.yimg.com/iu/api/res/1.2/V.IFyHsRqvluSKfBdKwrnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25147.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 20 + + + 39 + 15 + + + 40 + 9.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 11 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24075 + 24075 + + Everson Griffen + Everson + Griffen + Everson + Griffen + + not injury related + nfl.p.24075 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/YaidwJoss_cHHm.F46Z3pA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24075.png + small + + https://s.yimg.com/iu/api/res/1.2/YaidwJoss_cHHm.F46Z3pA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24075.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 22 + + + 39 + 11 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29273 + 29273 + + Noah Spence + Noah + Spence + Noah + Spence + + nfl.p.29273 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/_Jy.dQ5ogYMOsb1Dc6vYOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29273.png + small + + https://s.yimg.com/iu/api/res/1.2/_Jy.dQ5ogYMOsb1Dc6vYOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29273.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29460 + 29460 + + Jonathan Woodard + Jonathan + Woodard + Jonathan + Woodard + + concussion + nfl.p.29460 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 76 + DE + + https://s.yimg.com/iu/api/res/1.2/3sNlyOJS1CiNOL5yE0oD4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29460.png + small + + https://s.yimg.com/iu/api/res/1.2/3sNlyOJS1CiNOL5yE0oD4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29460.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 8 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30139 + 30139 + + Takkarist McKinley + Takkarist + McKinley + Takkarist + McKinley + + groin + nfl.p.30139 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/pEThNI3BELTaHog_udEoCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30139.png + small + + https://s.yimg.com/iu/api/res/1.2/pEThNI3BELTaHog_udEoCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30139.png + 0 + DP + + DE + + 1 + 1547665260 + + - + - + - + - + + + week + 17 + 5 + 1 + + + season + 2018 + + + 0 + 15 + + + 38 + 15 + + + 39 + 7 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25020 + 25020 + + Lawrence Guy + Lawrence + Guy + Lawrence + Guy + + nfl.p.25020 + nfl.t.17 + New England Patriots + NE + + 11 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/o6ClfjKJyFPmfK11xf3X7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/25020.png + small + + https://s.yimg.com/iu/api/res/1.2/o6ClfjKJyFPmfK11xf3X7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/25020.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 34 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24811 + 24811 + + Cameron Jordan + Cameron + Jordan + Cameron + Jordan + + nfl.p.24811 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/CS9Gu_dX2LaqZlZWzvBE8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24811.png + small + + https://s.yimg.com/iu/api/res/1.2/CS9Gu_dX2LaqZlZWzvBE8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24811.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 37 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 35 + + + 39 + 14 + + + 40 + 12.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 18 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29436 + 29436 + + Anthony Zettel + Anthony + Zettel + Anthony + Zettel + + nfl.p.29436 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/ZXaytJYWNzmAnDmsgz7bTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29436.png + small + + https://s.yimg.com/iu/api/res/1.2/ZXaytJYWNzmAnDmsgz7bTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29436.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 7 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30135 + 30135 + + Charles Harris + Charles + Harris + Charles + Harris + + calf + nfl.p.30135 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/fkZNkZpD8sCeGX33lK.GIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30135.png + small + + https://s.yimg.com/iu/api/res/1.2/fkZNkZpD8sCeGX33lK.GIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30135.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 8 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27636 + 27636 + + Cassius Marsh + Cassius + Marsh + Cassius + Marsh + + concussion + nfl.p.27636 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 54 + DE + + https://s.yimg.com/iu/api/res/1.2/OHodqXHpm5NZ.bmE3Gj6Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27636.png + small + + https://s.yimg.com/iu/api/res/1.2/OHodqXHpm5NZ.bmE3Gj6Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27636.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 11 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28448 + 28448 + + Randy Gregory + Randy + Gregory + Randy + Gregory + + not injury related + nfl.p.28448 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/AXK6nZ43Xpdi8TycP5pcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28448.png + small + + https://s.yimg.com/iu/api/res/1.2/AXK6nZ43Xpdi8TycP5pcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28448.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 19 + + + 39 + 6 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.29306 + 29306 + + Jonathan Bullard + Jonathan + Bullard + Jonathan + Bullard + + nfl.p.29306 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/gsTFQxJDcBYINm8evmDkWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29306.png + small + + https://s.yimg.com/iu/api/res/1.2/gsTFQxJDcBYINm8evmDkWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29306.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 13 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8779 + 8779 + + Chris Long + Chris + Long + Chris + Long + + nfl.p.8779 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/1Q1kX8SmwxLlwr2V2Feudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8779.png + small + + https://s.yimg.com/iu/api/res/1.2/1Q1kX8SmwxLlwr2V2Feudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8779.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 8 + + + 40 + 6.5 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25748 + 25748 + + Andre Branch + Andre + Branch + Andre + Branch + + knee + nfl.p.25748 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 50 + DE + + https://s.yimg.com/iu/api/res/1.2/UsNKQhSjbID9UQIBujaeiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25748.png + small + + https://s.yimg.com/iu/api/res/1.2/UsNKQhSjbID9UQIBujaeiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25748.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 17 + + + 39 + 8 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28051 + 28051 + + Kerry Wynn + Kerry + Wynn + Kerry + Wynn + + thumb + nfl.p.28051 + nfl.t.19 + New York Giants + NYG + + 9 + + 72 + DE + + https://s.yimg.com/iu/api/res/1.2/UVnL2zw1.Y29.eCtMH3YpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28051.png + small + + https://s.yimg.com/iu/api/res/1.2/UVnL2zw1.Y29.eCtMH3YpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28051.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 24 + + + 39 + 15 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26626 + 26626 + + Dion Jordan + Dion + Jordan + Dion + Jordan + + knee + nfl.p.26626 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/I_6FndWM9VumPkwI1qWuog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26626.png + small + + https://s.yimg.com/iu/api/res/1.2/I_6FndWM9VumPkwI1qWuog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26626.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 17 + + + 39 + 5 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27662 + 27662 + + Brent Urban + Brent + Urban + Brent + Urban + + nfl.p.27662 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/99DWbf9yx_U5mxUxuueR4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/27662.png + small + + https://s.yimg.com/iu/api/res/1.2/99DWbf9yx_U5mxUxuueR4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/27662.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 17 + + + 39 + 10 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30216 + 30216 + + Trey Hendrickson + Trey + Hendrickson + Trey + Hendrickson + + illness + nfl.p.30216 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 7 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24829 + 24829 + + Brooks Reed + Brooks + Reed + Brooks + Reed + + nfl.p.24829 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 50 + DE + + https://s.yimg.com/iu/api/res/1.2/lf3CKHXz0Nb5oLYJiD4AQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24829.png + small + + https://s.yimg.com/iu/api/res/1.2/lf3CKHXz0Nb5oLYJiD4AQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24829.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28488 + 28488 + + Angelo Blackson + Angelo + Blackson + Angelo + Blackson + + nfl.p.28488 + nfl.t.34 + Houston Texans + Hou + + 10 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/.71xF7YxpAeu2BRJEXG_EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28488.png + small + + https://s.yimg.com/iu/api/res/1.2/.71xF7YxpAeu2BRJEXG_EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28488.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 6 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30592 + 30592 + + Patrick Ricard + Patrick + Ricard + Patrick + Ricard + + nfl.p.30592 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 42 + DE + + https://s.yimg.com/iu/api/res/1.2/n.lt0Yl_rkIXPOQzHjLL9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30592.png + small + + https://s.yimg.com/iu/api/res/1.2/n.lt0Yl_rkIXPOQzHjLL9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30592.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 3 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27640 + 27640 + + DaQuan Jones + DaQuan + Jones + DaQuan + Jones + + nfl.p.27640 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/a18I4Zs39ZTq7O9NS_8HOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27640.png + small + + https://s.yimg.com/iu/api/res/1.2/a18I4Zs39ZTq7O9NS_8HOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27640.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 20 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27529 + 27529 + + Jadeveon Clowney + Jadeveon + Clowney + Jadeveon + Clowney + + groin + nfl.p.27529 + nfl.t.34 + Houston Texans + Hou + + 10 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/fd9jivEkaCxLTW3_J6l1.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27529.png + small + + https://s.yimg.com/iu/api/res/1.2/fd9jivEkaCxLTW3_J6l1.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27529.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 38 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 38 + + + 39 + 9 + + + 40 + 9.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 3 + + + 44 + 1 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 16 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30934 + 30934 + + Keionta Davis + Keionta + Davis + Keionta + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30934 + nfl.t.17 + New England Patriots + NE + + 11 + + 58 + DE + + https://s.yimg.com/iu/api/res/1.2/IaRjmCxZkX0hB6pgljOsdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30934.png + small + + https://s.yimg.com/iu/api/res/1.2/IaRjmCxZkX0hB6pgljOsdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30934.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 5 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30186 + 30186 + + Jordan Willis + Jordan + Willis + Jordan + Willis + + nfl.p.30186 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 75 + DE + + https://s.yimg.com/iu/api/res/1.2/k8ui0y8v5XQPSBgLF5LAEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30186.1.png + small + + https://s.yimg.com/iu/api/res/1.2/k8ui0y8v5XQPSBgLF5LAEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30186.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 5 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31086 + 31086 + + Dorance Armstrong + Dorance + Armstrong + Dorance + Armstrong + + nfl.p.31086 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/OhAlzGc2aMMVYPYUyEq31A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31086.png + small + + https://s.yimg.com/iu/api/res/1.2/OhAlzGc2aMMVYPYUyEq31A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31086.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 8 + + + 39 + 5 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23990 + 23990 + + Jason Pierre-Paul + Jason + Pierre-Paul + Jason + Pierre-Paul + + knee, shoulder + nfl.p.23990 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/GQwlzLAcOAudbcg32YnpMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/23990.png + small + + https://s.yimg.com/iu/api/res/1.2/GQwlzLAcOAudbcg32YnpMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/23990.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 23 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 48 + + + 39 + 10 + + + 40 + 12.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 16 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27093 + 27093 + + Wes Horton + Wes + Horton + Wes + Horton + + nfl.p.27093 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/dyiJtLBG9tN2Aa9ZljvxyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27093.png + small + + https://s.yimg.com/iu/api/res/1.2/dyiJtLBG9tN2Aa9ZljvxyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27093.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 9 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29297 + 29297 + + Adam Gotsis + Adam + Gotsis + Adam + Gotsis + + knee + nfl.p.29297 + nfl.t.7 + Denver Broncos + Den + + 10 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/NpIOwfL3SEsxZfByTPUR8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29297.png + small + + https://s.yimg.com/iu/api/res/1.2/NpIOwfL3SEsxZfByTPUR8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29297.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 13 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.24873 + 24873 + + Allen Bailey + Allen + Bailey + Allen + Bailey + + nfl.p.24873 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/6GyHbhyG9SjD5dgXflZbjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/24873.png + small + + https://s.yimg.com/iu/api/res/1.2/6GyHbhyG9SjD5dgXflZbjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/24873.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 11 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 4 + + + 44 + 1 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.25868 + 25868 + + Jack Crawford + Jack + Crawford + Jack + Crawford + + nfl.p.25868 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/_QN06PUcxRARKy_rvIRxHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25868.png + small + + https://s.yimg.com/iu/api/res/1.2/_QN06PUcxRARKy_rvIRxHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25868.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 19 + + + 39 + 16 + + + 40 + 6.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 7 + + + 66 + 6 + + + 83 + 0 + + + + + + 380.p.27574 + 27574 + + Stephon Tuitt + Stephon + Tuitt + Stephon + Tuitt + + elbow + nfl.p.27574 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/OCJOKRqSYXhHN6sIJIhF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27574.png + small + + https://s.yimg.com/iu/api/res/1.2/OCJOKRqSYXhHN6sIJIhF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27574.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 27 + + + 39 + 18 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30626 + 30626 + + Fadol Brown + Fadol + Brown + Fadol + Brown + + toe + nfl.p.30626 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/dibQdiuDw8TygyFJ.pcNzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30626.png + small + + https://s.yimg.com/iu/api/res/1.2/dibQdiuDw8TygyFJ.pcNzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30626.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 16 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28604 + 28604 + + Christian Covington + Christian + Covington + Christian + Covington + + thigh, knee + nfl.p.28604 + nfl.t.34 + Houston Texans + Hou + + 10 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/zbqQAkHT8rzJL.HhfjL4Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28604.png + small + + https://s.yimg.com/iu/api/res/1.2/zbqQAkHT8rzJL.HhfjL4Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28604.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 8 + + + 39 + 7 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30984 + 30984 + + Marcus Davenport + Marcus + Davenport + Marcus + Davenport + + toe + nfl.p.30984 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/5MZynzjRtqccJWd5IbCb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30984.png + small + + https://s.yimg.com/iu/api/res/1.2/5MZynzjRtqccJWd5IbCb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30984.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 12 + + + 39 + 10 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27562 + 27562 + + DeMarcus Lawrence + DeMarcus + Lawrence + DeMarcus + Lawrence + + shoulder + nfl.p.27562 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/hVcsOGsm7o4FvTkyiOVdlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27562.png + small + + https://s.yimg.com/iu/api/res/1.2/hVcsOGsm7o4FvTkyiOVdlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27562.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 34 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 42 + + + 39 + 22 + + + 40 + 10.5 + + + 41 + 1 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 15 + + + 66 + 18 + + + 83 + 0 + + + + + + 380.p.25746 + 25746 + + Derek Wolfe + Derek + Wolfe + Derek + Wolfe + + concussion + nfl.p.25746 + nfl.t.7 + Denver Broncos + Den + + 10 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/rIS8mqD0iSYeqpqt4EYXUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25746.png + small + + https://s.yimg.com/iu/api/res/1.2/rIS8mqD0iSYeqpqt4EYXUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25746.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 12 + + + 40 + 1.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 3 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.9296 + 9296 + + Ziggy Hood + Ziggy + Hood + Ziggy + Hood + + hamstring + nfl.p.9296 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/6a2..2LOt1NgE_SdLn306Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/9296.png + small + + https://s.yimg.com/iu/api/res/1.2/6a2..2LOt1NgE_SdLn306Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/9296.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 4 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23988 + 23988 + + Brandon Graham + Brandon + Graham + Brandon + Graham + + nfl.p.23988 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/.Ekg80p8VSJWXdZ75mnq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23988.png + small + + https://s.yimg.com/iu/api/res/1.2/.Ekg80p8VSJWXdZ75mnq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23988.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 8 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25769 + 25769 + + Vinny Curry + Vinny + Curry + Vinny + Curry + + ankle + nfl.p.25769 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/H3cecXaTmxGWOyW9jWxdZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25769.png + small + + https://s.yimg.com/iu/api/res/1.2/H3cecXaTmxGWOyW9jWxdZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25769.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 15 + + + 39 + 6 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31084 + 31084 + + Da'Shawn Hand + Da'Shawn + Hand + Da'Shawn + Hand + + IR + Injured Reserve + knee + nfl.p.31084 + nfl.t.8 + Detroit Lions + Det + + 6 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/AMw_Lg5OOyFB8bW9zYai9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31084.png + small + + https://s.yimg.com/iu/api/res/1.2/AMw_Lg5OOyFB8bW9zYai9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31084.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 22 + + + 39 + 5 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26726 + 26726 + + Alex Okafor + Alex + Okafor + Alex + Okafor + + nfl.p.26726 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/YMzQtb3oQ7KmmEZLTUmguw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26726.png + small + + https://s.yimg.com/iu/api/res/1.2/YMzQtb3oQ7KmmEZLTUmguw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26726.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 11 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 1 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26749 + 26749 + + William Gholston + William + Gholston + William + Gholston + + nfl.p.26749 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/zCqb0xZGoMrsfJ8BAGmJsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26749.png + small + + https://s.yimg.com/iu/api/res/1.2/zCqb0xZGoMrsfJ8BAGmJsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26749.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29271 + 29271 + + Chris Jones + Chris + Jones + Chris + Jones + + nfl.p.29271 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/MKns2.isRPML.AY07FppVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29271.png + small + + https://s.yimg.com/iu/api/res/1.2/MKns2.isRPML.AY07FppVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29271.png + 0 + DP + + DE + + 1 + 1547992860 + + - + - + - + - + + + week + 17 + 36 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 35 + + + 39 + 5 + + + 40 + 15.5 + + + 41 + 1 + + + 42 + 2 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 19 + + + 66 + 20 + + + 83 + 0 + + + + + + 380.p.27413 + 27413 + + Benson Mayowa + Benson + Mayowa + Benson + Mayowa + + Q + Questionable + back, neck + nfl.p.27413 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/FgcskXDwcWkwFLCL5Wv3dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27413.1.png + small + + https://s.yimg.com/iu/api/res/1.2/FgcskXDwcWkwFLCL5Wv3dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/27413.1.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 31 + + + 39 + 7 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 11 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29303 + 29303 + + Yannick Ngakoue + Yannick + Ngakoue + Yannick + Ngakoue + + nfl.p.29303 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/ANwggGhtLR4A40DTXYdtrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29303.png + small + + https://s.yimg.com/iu/api/res/1.2/ANwggGhtLR4A40DTXYdtrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29303.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 3 + + + 40 + 9.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31022 + 31022 + + Kemoko Turay + Kemoko + Turay + Kemoko + Turay + + hip + nfl.p.31022 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 57 + DE + + https://s.yimg.com/iu/api/res/1.2/ZEydLvcv3ScqwANd7ypFOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31022.png + small + + https://s.yimg.com/iu/api/res/1.2/ZEydLvcv3ScqwANd7ypFOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31022.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 11 + + + 39 + 4 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28580 + 28580 + + Darius Philon + Darius + Philon + Darius + Philon + + ankle + nfl.p.28580 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/K.JYs.G7dDGwPkMd4wMw3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28580.png + small + + https://s.yimg.com/iu/api/res/1.2/K.JYs.G7dDGwPkMd4wMw3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28580.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 19 + + + 39 + 14 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30181 + 30181 + + Dawuane Smoot + Dawuane + Smoot + Dawuane + Smoot + + nfl.p.30181 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/wcVCJOuWTZikKxYVQl0i0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30181.png + small + + https://s.yimg.com/iu/api/res/1.2/wcVCJOuWTZikKxYVQl0i0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30181.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29386 + 29386 + + Matt Ioannidis + Matt + Ioannidis + Matt + Ioannidis + + Q + Questionable + hamstring + nfl.p.29386 + nfl.t.28 + Washington Redskins + Was + + 4 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/HMpeGnclnxmdvlawIIvXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29386.png + small + + https://s.yimg.com/iu/api/res/1.2/HMpeGnclnxmdvlawIIvXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29386.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 23 + + + 39 + 8 + + + 40 + 7.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27687 + 27687 + + Chris Smith + Chris + Smith + Chris + Smith + + nfl.p.27687 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 50 + DE + + https://s.yimg.com/iu/api/res/1.2/Zc1I.VksmpB2SPED4q8qRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27687.png + small + + https://s.yimg.com/iu/api/res/1.2/Zc1I.VksmpB2SPED4q8qRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27687.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 14 + + + 39 + 7 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29799 + 29799 + + Eric Lee + Eric + Lee + Eric + Lee + + nfl.p.29799 + nfl.t.8 + Detroit Lions + Det + + 6 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/RGLcCA2TLrowAAcY0bYujg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29799.png + small + + https://s.yimg.com/iu/api/res/1.2/RGLcCA2TLrowAAcY0bYujg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29799.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 4 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29266 + 29266 + + Emmanuel Ogbah + Emmanuel + Ogbah + Emmanuel + Ogbah + + ankle + nfl.p.29266 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/kQn55pxtVI2Fi4KupiwFsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29266.png + small + + https://s.yimg.com/iu/api/res/1.2/kQn55pxtVI2Fi4KupiwFsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29266.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 24 + + + 39 + 16 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28476 + 28476 + + Danielle Hunter + Danielle + Hunter + Danielle + Hunter + + nfl.p.28476 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/PrZs.Gyj1Tq0QvUV6GiA5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28476.png + small + + https://s.yimg.com/iu/api/res/1.2/PrZs.Gyj1Tq0QvUV6GiA5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28476.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 42 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 51 + + + 39 + 21 + + + 40 + 14.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 21 + + + 66 + 32 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30116 + 30116 + + Solomon Thomas + Solomon + Thomas + Solomon + Thomas + + nfl.p.30116 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/oZxQTVSW18LnZ5u4EaZ.1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30116.png + small + + https://s.yimg.com/iu/api/res/1.2/oZxQTVSW18LnZ5u4EaZ.1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30116.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 24 + + + 39 + 7 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28386 + 28386 + + Efe Obada + Efe + Obada + Efe + Obada + + nfl.p.28386 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/Yk8Rak81J8bIGIGuZC24nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28386.png + small + + https://s.yimg.com/iu/api/res/1.2/Yk8Rak81J8bIGIGuZC24nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28386.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 6 + + + 39 + 2 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26628 + 26628 + + Ezekiel Ansah + Ezekiel + Ansah + Ezekiel + Ansah + + IR + Injured Reserve + shoulder + nfl.p.26628 + nfl.t.8 + Detroit Lions + Det + + 6 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/dUL4T6TjrDvJ3tOIhwfk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26628.png + small + + https://s.yimg.com/iu/api/res/1.2/dUL4T6TjrDvJ3tOIhwfk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26628.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 7 + + + 39 + 4 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29636 + 29636 + + Eddie Yarbrough + Eddie + Yarbrough + Eddie + Yarbrough + + nfl.p.29636 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 54 + DE + + https://s.yimg.com/iu/api/res/1.2/bG5oKmb_VU4WbqYVQlanhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29636.png + small + + https://s.yimg.com/iu/api/res/1.2/bG5oKmb_VU4WbqYVQlanhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29636.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 21 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24807 + 24807 + + Adrian Clayborn + Adrian + Clayborn + Adrian + Clayborn + + nfl.p.24807 + nfl.t.17 + New England Patriots + NE + + 11 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/l7wVocifi.MfWtCg96irSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24807.png + small + + https://s.yimg.com/iu/api/res/1.2/l7wVocifi.MfWtCg96irSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24807.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 9 + + + 39 + 2 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24029 + 24029 + + Carlos Dunlap + Carlos + Dunlap + Carlos + Dunlap + + nfl.p.24029 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/07hmmIsFu8pojxXxpvnE3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24029.png + small + + https://s.yimg.com/iu/api/res/1.2/07hmmIsFu8pojxXxpvnE3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24029.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 16 + + + 40 + 8.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27726 + 27726 + + Zach Moore + Zach + Moore + Zach + Moore + + nfl.p.27726 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/dbHbQfrgFuVAxPfgskoQig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27726.png + small + + https://s.yimg.com/iu/api/res/1.2/dbHbQfrgFuVAxPfgskoQig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/27726.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 6 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24006 + 24006 + + Jerry Hughes + Jerry + Hughes + Jerry + Hughes + + nfl.p.24006 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/oh8haGMrXc.OgepE_o6L3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24006.png + small + + https://s.yimg.com/iu/api/res/1.2/oh8haGMrXc.OgepE_o6L3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24006.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 30 + + + 39 + 7 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 3 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30127 + 30127 + + Derek Barnett + Derek + Barnett + Derek + Barnett + + IR + Injured Reserve + torn rotator cuff + nfl.p.30127 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 96 + DE + + https://s.yimg.com/iu/api/res/1.2/vHLNApa0Du4EemY5NuyJ6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30127.png + small + + https://s.yimg.com/iu/api/res/1.2/vHLNApa0Du4EemY5NuyJ6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30127.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 11 + + + 39 + 5 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9334 + 9334 + + Michael Johnson + Michael + Johnson + Michael + Johnson + + concussion + nfl.p.9334 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/ANjzuwWSNqf6GtugoKZ_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9334.png + small + + https://s.yimg.com/iu/api/res/1.2/ANjzuwWSNqf6GtugoKZ_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9334.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 18 + + + 39 + 15 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 22 + + + 83 + 0 + + + + + + 380.p.9568 + 9568 + + Michael Bennett + Michael + Bennett + Michael + Bennett + + foot + nfl.p.9568 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 77 + DE + + https://s.yimg.com/iu/api/res/1.2/X9BM.XTnTn4fsf_a5WE04A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9568.png + small + + https://s.yimg.com/iu/api/res/1.2/X9BM.XTnTn4fsf_a5WE04A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9568.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 9 + + + 40 + 9.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 15 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24798 + 24798 + + J.J. Watt + J.J. + Watt + J.J. + Watt + + Q + Questionable + knee + nfl.p.24798 + nfl.t.34 + Houston Texans + Hou + + 10 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/NWEYF9M5yJbmoYYadTF_9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24798.png + small + + https://s.yimg.com/iu/api/res/1.2/NWEYF9M5yJbmoYYadTF_9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24798.png + 0 + DP + + DE + + 1 + 1547755320 + + - + - + - + - + + + week + 17 + 66 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 47 + + + 39 + 14 + + + 40 + 16.0 + + + 41 + 0 + + + 42 + 7 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 18 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28451 + 28451 + + Frank Clark + Frank + Clark + Frank + Clark + + illness + nfl.p.28451 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 55 + DE + + https://s.yimg.com/iu/api/res/1.2/whZBNYJYULnpaAsLbrLoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28451.png + small + + https://s.yimg.com/iu/api/res/1.2/whZBNYJYULnpaAsLbrLoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28451.png + 0 + DP + + DE + + 1 + 1547683320 + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 8 + + + 40 + 13.0 + + + 41 + 1 + + + 42 + 3 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 10 + + + 66 + 26 + + + 83 + 0 + + + + + + 380.p.26770 + 26770 + + Steven Means + Steven + Means + Steven + Means + + nfl.p.26770 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 56 + DE + + https://s.yimg.com/iu/api/res/1.2/74ACpqYbyLl5GEjMUn0tXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26770.png + small + + https://s.yimg.com/iu/api/res/1.2/74ACpqYbyLl5GEjMUn0tXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26770.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 7 + + + 39 + 7 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27815 + 27815 + + Josh Mauro + Josh + Mauro + Josh + Mauro + + nfl.p.27815 + nfl.t.19 + New York Giants + NYG + + 9 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/I5nYviQyBd9aciRj2XmWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27815.png + small + + https://s.yimg.com/iu/api/res/1.2/I5nYviQyBd9aciRj2XmWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27815.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 17 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30338 + 30338 + + Isaac Rochell + Isaac + Rochell + Isaac + Rochell + + nfl.p.30338 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/S44UQdFAe0csYatlp8bIbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30338.png + small + + https://s.yimg.com/iu/api/res/1.2/S44UQdFAe0csYatlp8bIbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30338.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 11 + + + 40 + 5.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 6 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.5888 + 5888 + + Julius Peppers + Julius + Peppers + Julius + Peppers + + nfl.p.5888 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/9.ih1bLrFVeSVOKvY4Q6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5888.png + small + + https://s.yimg.com/iu/api/res/1.2/9.ih1bLrFVeSVOKvY4Q6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5888.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 14 + + + 39 + 8 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30244 + 30244 + + Deatrich Wise Jr. + Deatrich + Wise Jr. + Deatrich + Wise Jr. + + NA + Inactive: Coach's Decision or Not on Roster + ankle + nfl.p.30244 + nfl.t.17 + New England Patriots + NE + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/RWqamr2k2hPNVW45YZ0UBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30244.png + small + + https://s.yimg.com/iu/api/res/1.2/RWqamr2k2hPNVW45YZ0UBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30244.png + 0 + DP + + DE + + 1 + 1548022560 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 15 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29461 + 29461 + + Stephen Weatherly + Stephen + Weatherly + Stephen + Weatherly + + nfl.p.29461 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/6s3Dzcvzn9J_D9O75W0dLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29461.png + small + + https://s.yimg.com/iu/api/res/1.2/6s3Dzcvzn9J_D9O75W0dLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29461.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 12 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8827 + 8827 + + Calais Campbell + Calais + Campbell + Calais + Campbell + + nfl.p.8827 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/0q2hnQITDonAh5HBrnN6vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8827.png + small + + https://s.yimg.com/iu/api/res/1.2/0q2hnQITDonAh5HBrnN6vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8827.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 24 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 53 + + + 39 + 19 + + + 40 + 10.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 20 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30644 + 30644 + + Cameron Malveaux + Cameron + Malveaux + Cameron + Malveaux + + nfl.p.30644 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/4pXtM6QO8exuWlf.EkjD8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30644.png + small + + https://s.yimg.com/iu/api/res/1.2/4pXtM6QO8exuWlf.EkjD8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30644.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 2 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 1 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31047 + 31047 + + Sam Hubbard + Sam + Hubbard + Sam + Hubbard + + nfl.p.31047 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/Hy6Gn_x_RK88Ql8d7PXBOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31047.png + small + + https://s.yimg.com/iu/api/res/1.2/Hy6Gn_x_RK88Ql8d7PXBOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31047.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 12 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 7 + + + 66 + 19 + + + 83 + 0 + + + + + + 380.p.30379 + 30379 + + Bryan Cox Jr. + Bryan + Cox Jr. + Bryan + Cox Jr. + + nfl.p.30379 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/BIXPVkoH9G2c5Tdj8JZGpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30379.png + small + + https://s.yimg.com/iu/api/res/1.2/BIXPVkoH9G2c5Tdj8JZGpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30379.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 4 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30309 + 30309 + + Al-Quadin Muhammad + Al-Quadin + Muhammad + Al-Quadin + Muhammad + + nfl.p.30309 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/tlty.IHIDqlk_YgGzwrarg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30309.png + small + + https://s.yimg.com/iu/api/res/1.2/tlty.IHIDqlk_YgGzwrarg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30309.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 16 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30141 + 30141 + + Taco Charlton + Taco + Charlton + Taco + Charlton + + shoulder + nfl.p.30141 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 97 + DE + + https://s.yimg.com/iu/api/res/1.2/eNNCraMMO.iJztveTwviLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30141.png + small + + https://s.yimg.com/iu/api/res/1.2/eNNCraMMO.iJztveTwviLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30141.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 13 + + + 39 + 14 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.23985 + 23985 + + Tyson Alualu + Tyson + Alualu + Tyson + Alualu + + shoulder + nfl.p.23985 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/BjC1guXNt5XZOaikLnhcdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/23985.png + small + + https://s.yimg.com/iu/api/res/1.2/BjC1guXNt5XZOaikLnhcdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/23985.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 12 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27972 + 27972 + + Ethan Westbrooks + Ethan + Westbrooks + Ethan + Westbrooks + + illness + nfl.p.27972 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/4LYEcHYfX99wnQb_jWAlsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/27972.png + small + + https://s.yimg.com/iu/api/res/1.2/4LYEcHYfX99wnQb_jWAlsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/27972.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 5 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29371 + 29371 + + Dean Lowry + Dean + Lowry + Dean + Lowry + + nfl.p.29371 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/xCR4JO6MDXqsG3kmzl.amg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29371.png + small + + https://s.yimg.com/iu/api/res/1.2/xCR4JO6MDXqsG3kmzl.amg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29371.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 13 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28489 + 28489 + + Trey Flowers + Trey + Flowers + Trey + Flowers + + concussion + nfl.p.28489 + nfl.t.17 + New England Patriots + NE + + 11 + + 98 + DE + + https://s.yimg.com/iu/api/res/1.2/JFtBjzjfDQUSWZBiszkn5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28489.png + small + + https://s.yimg.com/iu/api/res/1.2/JFtBjzjfDQUSWZBiszkn5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28489.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 32 + + + 39 + 25 + + + 40 + 7.5 + + + 41 + 0 + + + 42 + 3 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29299 + 29299 + + Carl Nassib + Carl + Nassib + Carl + Nassib + + Q + Questionable + shoulder + nfl.p.29299 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/JLveaKyB17d9QqS0VgzAww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29299.png + small + + https://s.yimg.com/iu/api/res/1.2/JLveaKyB17d9QqS0VgzAww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29299.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 22 + + + 39 + 7 + + + 40 + 6.5 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 12 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29253 + 29253 + + Shaq Lawson + Shaq + Lawson + Shaq + Lawson + + elbow + nfl.p.29253 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/_XQc_RvGBDNdRkIyMCJJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29253.png + small + + https://s.yimg.com/iu/api/res/1.2/_XQc_RvGBDNdRkIyMCJJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29253.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 18 + + + 39 + 12 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29237 + 29237 + + Joey Bosa + Joey + Bosa + Joey + Bosa + + foot + nfl.p.29237 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 99 + DE + + https://s.yimg.com/iu/api/res/1.2/fzRR4qvoa4zenT6XkQ2pCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29237.png + small + + https://s.yimg.com/iu/api/res/1.2/fzRR4qvoa4zenT6XkQ2pCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29237.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 45 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 18 + + + 39 + 5 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24828 + 24828 + + Jarvis Jenkins + Jarvis + Jenkins + Jarvis + Jenkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24828 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/UGglNwTsxZtTyd5d_wh2QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24828.png + small + + https://s.yimg.com/iu/api/res/1.2/UGglNwTsxZtTyd5d_wh2QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24828.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 4 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25728 + 25728 + + Melvin Ingram III + Melvin + Ingram III + Melvin + Ingram III + + nfl.p.25728 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 54 + DE + + https://s.yimg.com/iu/api/res/1.2/kjhf3doqXehq6YhWW725Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25728.png + small + + https://s.yimg.com/iu/api/res/1.2/kjhf3doqXehq6YhWW725Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25728.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 24 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 28 + + + 39 + 15 + + + 40 + 7.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 8 + + + 66 + 12 + + + 83 + 0 + + + + + + 380.p.27905 + 27905 + + Zach Kerr + Zach + Kerr + Zach + Kerr + + nfl.p.27905 + nfl.t.7 + Denver Broncos + Den + + 10 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/ROhgR3W3B9OMl84kI77jgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27905.png + small + + https://s.yimg.com/iu/api/res/1.2/ROhgR3W3B9OMl84kI77jgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27905.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 18 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26297 + 26297 + + Derrick Shelby + Derrick + Shelby + Derrick + Shelby + + IR + Injured Reserve + groin + nfl.p.26297 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 90 + DE + + https://s.yimg.com/iu/api/res/1.2/UA4UvMq4e.dt3rH7hfiZ_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26297.png + small + + https://s.yimg.com/iu/api/res/1.2/UA4UvMq4e.dt3rH7hfiZ_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26297.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 8 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30187 + 30187 + + Chris Wormley + Chris + Wormley + Chris + Wormley + + nfl.p.30187 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/9vEQZ27hZ1LxuGnc93IBxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30187.png + small + + https://s.yimg.com/iu/api/res/1.2/9vEQZ27hZ1LxuGnc93IBxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30187.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 13 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31105 + 31105 + + John Franklin-Myers + John + Franklin-Myers + John + Franklin-Myers + + nfl.p.31105 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 94 + DE + + https://s.yimg.com/iu/api/res/1.2/xKaP7KFbInfEVXMOTKpL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31105.png + small + + https://s.yimg.com/iu/api/res/1.2/xKaP7KFbInfEVXMOTKpL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31105.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 6 + + + 39 + 4 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29920 + 29920 + + Roy Robertson-Harris + Roy + Robertson-Harris + Roy + Robertson-Harris + + nfl.p.29920 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 95 + DE + + https://s.yimg.com/iu/api/res/1.2/jzzxXuAP9UVJzhX5Cgr2IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29920.png + small + + https://s.yimg.com/iu/api/res/1.2/jzzxXuAP9UVJzhX5Cgr2IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29920.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 10 + + + 39 + 12 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29999 + 29999 + + Branden Jackson + Branden + Jackson + Branden + Jackson + + nfl.p.29999 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 93 + DE + + https://s.yimg.com/iu/api/res/1.2/6xL3M3tXXF6dNJMqQMOpDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29999.png + small + + https://s.yimg.com/iu/api/res/1.2/6xL3M3tXXF6dNJMqQMOpDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29999.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 9 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28394 + 28394 + + Leonard Williams + Leonard + Williams + Leonard + Williams + + nfl.p.28394 + nfl.t.20 + New York Jets + NYJ + + 11 + + 92 + DE + + https://s.yimg.com/iu/api/res/1.2/u8h4bW1mJdExI3vt0hlJ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28394.png + small + + https://s.yimg.com/iu/api/res/1.2/u8h4bW1mJdExI3vt0hlJ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28394.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 15 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 11 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9691 + 9691 + + Cameron Wake + Cameron + Wake + Cameron + Wake + + knee + nfl.p.9691 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 91 + DE + + https://s.yimg.com/iu/api/res/1.2/gjQ8rLcL8sY2dIjI_3nCQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9691.png + small + + https://s.yimg.com/iu/api/res/1.2/gjQ8rLcL8sY2dIjI_3nCQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9691.png + 0 + DP + + DE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 21 + + + 39 + 15 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29381 + 29381 + + Quinton Jefferson + Quinton + Jefferson + Quinton + Jefferson + + nfl.p.29381 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 99 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/TalghtNg9qWGiETM5fv.5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29381.png + small + + https://s.yimg.com/iu/api/res/1.2/TalghtNg9qWGiETM5fv.5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29381.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 10 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26676 + 26676 + + Margus Hunt + Margus + Hunt + Margus + Hunt + + knee + nfl.p.26676 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/fv7gEoGTUTcR4razD.Ihug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26676.png + small + + https://s.yimg.com/iu/api/res/1.2/fv7gEoGTUTcR4razD.Ihug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26676.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 22 + + + 39 + 8 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30802 + 30802 + + Daniel Ross + Daniel + Ross + Daniel + Ross + + calf + nfl.p.30802 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 93 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/rWmtEavFyeEbGfDf8oERHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30802.png + small + + https://s.yimg.com/iu/api/res/1.2/rWmtEavFyeEbGfDf8oERHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30802.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 6 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27835 + 27835 + + Brandon Dunn + Brandon + Dunn + Brandon + Dunn + + ankle + nfl.p.27835 + nfl.t.34 + Houston Texans + Hou + + 10 + + 92 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/5fNeDzHlnd14UCp3Bo.6MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27835.png + small + + https://s.yimg.com/iu/api/res/1.2/5fNeDzHlnd14UCp3Bo.6MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27835.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 13 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28266 + 28266 + + Denico Autry + Denico + Autry + Denico + Autry + + shoulder + nfl.p.28266 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 96 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/F44Z1dvSJFt7e_MG.FOUCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28266.png + small + + https://s.yimg.com/iu/api/res/1.2/F44Z1dvSJFt7e_MG.FOUCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28266.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 28 + + + 39 + 9 + + + 40 + 9.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 2 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31034 + 31034 + + Tyquan Lewis + Tyquan + Lewis + Tyquan + Lewis + + Q + Questionable + knee + nfl.p.31034 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 94 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/kU_nJ3eW3vZq4Sz7Yv2NzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31034.png + small + + https://s.yimg.com/iu/api/res/1.2/kU_nJ3eW3vZq4Sz7Yv2NzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31034.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 9 + + + 39 + 4 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25724 + 25724 + + Michael Brockers + Michael + Brockers + Michael + Brockers + + nfl.p.25724 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 90 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/T9ofOW3TFcjnbbwmjwwAbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25724.png + small + + https://s.yimg.com/iu/api/res/1.2/T9ofOW3TFcjnbbwmjwwAbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25724.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 21 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24818 + 24818 + + Cameron Heyward + Cameron + Heyward + Cameron + Heyward + + knee + nfl.p.24818 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 97 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/S8V1kNkYS2J1lz8IJQzcCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24818.png + small + + https://s.yimg.com/iu/api/res/1.2/S8V1kNkYS2J1lz8IJQzcCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24818.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 12 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 29 + + + 39 + 22 + + + 40 + 8.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 10 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28598 + 28598 + + Christian Ringo + Christian + Ringo + Christian + Ringo + + nfl.p.28598 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 79 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/Xi3Muodu_jP8cvZr..IwDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28598.png + small + + https://s.yimg.com/iu/api/res/1.2/Xi3Muodu_jP8cvZr..IwDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28598.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 6 + + + 39 + 4 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29278 + 29278 + + Jihad Ward + Jihad + Ward + Jihad + Ward + + IR + Injured Reserve + left ankle + nfl.p.29278 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 51 + DT,DE + + https://s.yimg.com/iu/api/res/1.2/Gjs01fFJWa2o200gQGiBOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29278.png + small + + https://s.yimg.com/iu/api/res/1.2/Gjs01fFJWa2o200gQGiBOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29278.png + 0 + DP + + DT + DE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 4 + + + 39 + 0 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29751 + 29751 + + Trevon Coley + Trevon + Coley + Trevon + Coley + + nfl.p.29751 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/YNHTHZrZG7LML9lzc0TB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29751.png + small + + https://s.yimg.com/iu/api/res/1.2/YNHTHZrZG7LML9lzc0TB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29751.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 17 + + + 39 + 22 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 1 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30586 + 30586 + + Josh Tupou + Josh + Tupou + Josh + Tupou + + IR + Injured Reserve + pectoral + nfl.p.30586 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/ZGimtYBXRkI_.FNeXadsUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30586.1.png + small + + https://s.yimg.com/iu/api/res/1.2/ZGimtYBXRkI_.FNeXadsUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30586.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 6 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30168 + 30168 + + Dalvin Tomlinson + Dalvin + Tomlinson + Dalvin + Tomlinson + + nfl.p.30168 + nfl.t.19 + New York Giants + NYG + + 9 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/ZBmHPEUQr1i79VPpxlXE0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30168.png + small + + https://s.yimg.com/iu/api/res/1.2/ZBmHPEUQr1i79VPpxlXE0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30168.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 28 + + + 39 + 31 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28694 + 28694 + + Olsen Pierre + Olsen + Pierre + Olsen + Pierre + + IR + Injured Reserve + undisclosed + nfl.p.28694 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 72 + DT + + https://s.yimg.com/iu/api/res/1.2/MfU5meMOaIQ0xP9cCPhCJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28694.1.png + small + + https://s.yimg.com/iu/api/res/1.2/MfU5meMOaIQ0xP9cCPhCJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28694.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 6 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31193 + 31193 + + Jullian Taylor + Jullian + Taylor + Jullian + Taylor + + nfl.p.31193 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 77 + DT + + https://s.yimg.com/iu/api/res/1.2/PchaGOPvzpuKotBL51xPoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31193.png + small + + https://s.yimg.com/iu/api/res/1.2/PchaGOPvzpuKotBL51xPoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31193.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 4 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31436 + 31436 + + Tyler Lancaster + Tyler + Lancaster + Tyler + Lancaster + + Q + Questionable + nfl.p.31436 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 19 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7872 + 7872 + + Domata Peko + Domata + Peko + Domata + Peko + + nfl.p.7872 + nfl.t.7 + Denver Broncos + Den + + 10 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/JrS.M4kfNgP5nIA.wd34fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/7872.png + small + + https://s.yimg.com/iu/api/res/1.2/JrS.M4kfNgP5nIA.wd34fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/7872.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 20 + + + 39 + 11 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25721 + 25721 + + Dontari Poe + Dontari + Poe + Dontari + Poe + + nfl.p.25721 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/kwAFJmsHJ.lX0wsRkZ0ebg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25721.png + small + + https://s.yimg.com/iu/api/res/1.2/kwAFJmsHJ.lX0wsRkZ0ebg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25721.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 9 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29759 + 29759 + + Michael Pierce + Michael + Pierce + Michael + Pierce + + Q + Questionable + foot + nfl.p.29759 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/47KFWf4vP.S7r84ms35Kng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29759.png + small + + https://s.yimg.com/iu/api/res/1.2/47KFWf4vP.S7r84ms35Kng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/29759.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 20 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29246 + 29246 + + Sheldon Rankins + Sheldon + Rankins + Sheldon + Rankins + + IR + Injured Reserve + Achilles + nfl.p.29246 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/OmPeYGyUD6tscMTyCtRzrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29246.png + small + + https://s.yimg.com/iu/api/res/1.2/OmPeYGyUD6tscMTyCtRzrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29246.png + 0 + DP + + DT + + 1 + 1547490900 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 26 + + + 39 + 14 + + + 40 + 8.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 12 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24294 + 24294 + + Kyle Love + Kyle + Love + Kyle + Love + + nfl.p.24294 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/RM_c3Fx7NhuyH_BTD95nDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24294.png + small + + https://s.yimg.com/iu/api/res/1.2/RM_c3Fx7NhuyH_BTD95nDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24294.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 12 + + + 39 + 7 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 3 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30655 + 30655 + + Adam Butler + Adam + Butler + Adam + Butler + + knee + nfl.p.30655 + nfl.t.17 + New England Patriots + NE + + 11 + + 70 + DT + + https://s.yimg.com/iu/api/res/1.2/fxs5Uunz6s5zwGoH4oMuZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30655.png + small + + https://s.yimg.com/iu/api/res/1.2/fxs5Uunz6s5zwGoH4oMuZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30655.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 9 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25847 + 25847 + + Malik Jackson + Malik + Jackson + Malik + Jackson + + nfl.p.25847 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/CUytEvv.c.eoNGp7BpzqLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25847.png + small + + https://s.yimg.com/iu/api/res/1.2/CUytEvv.c.eoNGp7BpzqLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25847.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 7 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26636 + 26636 + + Sheldon Richardson + Sheldon + Richardson + Sheldon + Richardson + + hip + nfl.p.26636 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/JpBODsvu7mmXt4eu2QEoXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26636.png + small + + https://s.yimg.com/iu/api/res/1.2/JpBODsvu7mmXt4eu2QEoXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26636.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 26 + + + 39 + 23 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28504 + 28504 + + Rodney Gunter + Rodney + Gunter + Rodney + Gunter + + foot + nfl.p.28504 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/QYlOTFzZKLiCK_UWZqFEDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28504.1.png + small + + https://s.yimg.com/iu/api/res/1.2/QYlOTFzZKLiCK_UWZqFEDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/28504.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 32 + + + 39 + 12 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 11 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29314 + 29314 + + Adolphus Washington + Adolphus + Washington + Adolphus + Washington + + IR + Injured Reserve + knee + nfl.p.29314 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/xWBHDC4tepTYKot5r2lRtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29314.png + small + + https://s.yimg.com/iu/api/res/1.2/xWBHDC4tepTYKot5r2lRtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29314.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 4 + + + 39 + 4 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24864 + 24864 + + Jurrell Casey + Jurrell + Casey + Jurrell + Casey + + IR + Injured Reserve + knee + nfl.p.24864 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/iDMGTp0FYl0qzx78DR2DeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24864.png + small + + https://s.yimg.com/iu/api/res/1.2/iDMGTp0FYl0qzx78DR2DeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24864.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 9 + -1 + + + season + 2018 + + + 0 + 15 + + + 38 + 36 + + + 39 + 26 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 11 + + + 66 + 1 + + + 83 + 0 + + + + + + 380.p.29356 + 29356 + + Andrew Billings + Andrew + Billings + Andrew + Billings + + nfl.p.29356 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/fLqgK8iC.SARXop9WSsrWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29356.1.png + small + + https://s.yimg.com/iu/api/res/1.2/fLqgK8iC.SARXop9WSsrWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29356.1.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 10 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24805 + 24805 + + Corey Liuget + Corey + Liuget + Corey + Liuget + + IR + Injured Reserve + knee + nfl.p.24805 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/nARbous_HhOgr8vvPoMwdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24805.png + small + + https://s.yimg.com/iu/api/res/1.2/nARbous_HhOgr8vvPoMwdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24805.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 9 + + + 39 + 5 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 24 + + + 83 + 0 + + + + + + 380.p.25791 + 25791 + + Tyrone Crawford + Tyrone + Crawford + Tyrone + Crawford + + neck + nfl.p.25791 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/5cf68925oC2iZOZFXTXmRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25791.png + small + + https://s.yimg.com/iu/api/res/1.2/5cf68925oC2iZOZFXTXmRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25791.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 17 + + + 39 + 17 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27752 + 27752 + + Beau Allen + Beau + Allen + Beau + Allen + + wrist + nfl.p.27752 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/Kbf6kfnzbko4QwlHM6YQmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27752.png + small + + https://s.yimg.com/iu/api/res/1.2/Kbf6kfnzbko4QwlHM6YQmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27752.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 15 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31133 + 31133 + + Tim Settle + Tim + Settle + Tim + Settle + + pectoral + nfl.p.31133 + nfl.t.28 + Washington Redskins + Was + + 4 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/pRXhJP8ryqoP3JfNQsiC_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31133.png + small + + https://s.yimg.com/iu/api/res/1.2/pRXhJP8ryqoP3JfNQsiC_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31133.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 6 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30307 + 30307 + + Vincent Taylor + Vincent + Taylor + Vincent + Taylor + + IR + Injured Reserve + foot + nfl.p.30307 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/5gD2t1HxP12S1Ehy2XdDbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30307.png + small + + https://s.yimg.com/iu/api/res/1.2/5gD2t1HxP12S1Ehy2XdDbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30307.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 15 + + + 39 + 12 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.23978 + 23978 + + Gerald McCoy + Gerald + McCoy + Gerald + McCoy + + calf + nfl.p.23978 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/wGdWU6mmy1KCc4k3kK6Fig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/23978.png + small + + https://s.yimg.com/iu/api/res/1.2/wGdWU6mmy1KCc4k3kK6Fig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/23978.png + 0 + DP + + DT + + 1 + 1547656620 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 17 + + + 39 + 11 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24778 + 24778 + + Tom Johnson + Tom + Johnson + Tom + Johnson + + ankle + nfl.p.24778 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/Njbq_s5U5fWAI5z6cTK5mw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24778.png + small + + https://s.yimg.com/iu/api/res/1.2/Njbq_s5U5fWAI5z6cTK5mw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24778.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 17 + + + 39 + 7 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31066 + 31066 + + Harrison Phillips + Harrison + Phillips + Harrison + Phillips + + nfl.p.31066 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/kqkF_4.7tIz678OgdzHinA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31066.png + small + + https://s.yimg.com/iu/api/res/1.2/kqkF_4.7tIz678OgdzHinA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31066.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 20 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30291 + 30291 + + Davon Godchaux + Davon + Godchaux + Davon + Godchaux + + shin + nfl.p.30291 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 56 + DT + + https://s.yimg.com/iu/api/res/1.2/O4KZKjN6sGIYps_INRa6Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30291.png + small + + https://s.yimg.com/iu/api/res/1.2/O4KZKjN6sGIYps_INRa6Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30291.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 31 + + + 39 + 17 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7840 + 7840 + + Frostee Rucker + Frostee + Rucker + Frostee + Rucker + + neck + nfl.p.7840 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/fSOq804b4Oc18r3azKjZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7840.png + small + + https://s.yimg.com/iu/api/res/1.2/fSOq804b4Oc18r3azKjZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7840.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 23 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27748 + 27748 + + Shamar Stephen + Shamar + Stephen + Shamar + Stephen + + foot + nfl.p.27748 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/uO6I0si8LOD3zNAVe.HCeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27748.png + small + + https://s.yimg.com/iu/api/res/1.2/uO6I0si8LOD3zNAVe.HCeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27748.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 11 + + + 39 + 14 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24056 + 24056 + + Earl Mitchell + Earl + Mitchell + Earl + Mitchell + + nfl.p.24056 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/e6zyCvZxZXKCM6sLqGBkjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/24056.png + small + + https://s.yimg.com/iu/api/res/1.2/e6zyCvZxZXKCM6sLqGBkjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/24056.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 17 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31115 + 31115 + + Bilal Nichols + Bilal + Nichols + Bilal + Nichols + + knee + nfl.p.31115 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/czUIl_fCb5SRd3wwKvRqdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31115.png + small + + https://s.yimg.com/iu/api/res/1.2/czUIl_fCb5SRd3wwKvRqdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31115.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 20 + + + 39 + 8 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23977 + 23977 + + Ndamukong Suh + Ndamukong + Suh + Ndamukong + Suh + + nfl.p.23977 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/u6LOxcN8wBjUsGZww2CFVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/23977.png + small + + https://s.yimg.com/iu/api/res/1.2/u6LOxcN8wBjUsGZww2CFVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/23977.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 36 + + + 39 + 23 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29261 + 29261 + + Kenny Clark + Kenny + Clark + Kenny + Clark + + IR + Injured Reserve + elbow + nfl.p.29261 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/BoNqs9OXDYnwN_S4RvbL3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29261.png + small + + https://s.yimg.com/iu/api/res/1.2/BoNqs9OXDYnwN_S4RvbL3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29261.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 8 + -1 + + + season + 2018 + + + 0 + 13 + + + 38 + 36 + + + 39 + 19 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27743 + 27743 + + Daniel McCullers + Daniel + McCullers + Daniel + McCullers + + ankle + nfl.p.27743 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/j3rPXhpfFh1MIMCvlAflFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27743.png + small + + https://s.yimg.com/iu/api/res/1.2/j3rPXhpfFh1MIMCvlAflFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27743.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 2 + + + 39 + 3 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9513 + 9513 + + Clinton McDonald + Clinton + McDonald + Clinton + McDonald + + nfl.p.9513 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/6l4jiu09i2.xXKCS1C3rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9513.png + small + + https://s.yimg.com/iu/api/res/1.2/6l4jiu09i2.xXKCS1C3rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9513.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 19 + + + 39 + 12 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7761 + 7761 + + Haloti Ngata + Haloti + Ngata + Haloti + Ngata + + knee + nfl.p.7761 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/OHKs4zOU6nwRem_51iQWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7761.png + small + + https://s.yimg.com/iu/api/res/1.2/OHKs4zOU6nwRem_51iQWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7761.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 11 + + + 39 + 6 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30206 + 30206 + + Montravius Adams + Montravius + Adams + Montravius + Adams + + nfl.p.30206 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/9LY_G1rI020qDc4jK8e2IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30206.png + small + + https://s.yimg.com/iu/api/res/1.2/9LY_G1rI020qDc4jK8e2IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30206.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 11 + + + 39 + 9 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28525 + 28525 + + Grady Jarrett + Grady + Jarrett + Grady + Jarrett + + ankle + nfl.p.28525 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/lS5Q8CARJ6kJWMMqxY_g5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28525.png + small + + https://s.yimg.com/iu/api/res/1.2/lS5Q8CARJ6kJWMMqxY_g5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28525.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 27 + + + 39 + 25 + + + 40 + 6.0 + + + 41 + 0 + + + 42 + 3 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 8 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25842 + 25842 + + Mike Daniels + Mike + Daniels + Mike + Daniels + + IR + Injured Reserve + foot + nfl.p.25842 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/nWG_.YqWo.t7wY_IijqKnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25842.png + small + + https://s.yimg.com/iu/api/res/1.2/nWG_.YqWo.t7wY_IijqKnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25842.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 10 + + + 39 + 8 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24021 + 24021 + + Linval Joseph + Linval + Joseph + Linval + Joseph + + ankle, knee + nfl.p.24021 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/USiP1R1LihP0_D9wwufKmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24021.png + small + + https://s.yimg.com/iu/api/res/1.2/USiP1R1LihP0_D9wwufKmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24021.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 36 + + + 39 + 22 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 64 + + + 83 + 0 + + + + + + 380.p.31526 + 31526 + + Taylor Stallworth + Taylor + Stallworth + Taylor + Stallworth + + ankle + nfl.p.31526 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 76 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 6 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27056 + 27056 + + Damion Square + Damion + Square + Damion + Square + + nfl.p.27056 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/fpkNuMhEQsLiieZq0M2opQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27056.png + small + + https://s.yimg.com/iu/api/res/1.2/fpkNuMhEQsLiieZq0M2opQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27056.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 15 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26672 + 26672 + + Johnathan Hankins + Johnathan + Hankins + Johnathan + Hankins + + nfl.p.26672 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/7yiN0AjQ6Utog5TMDS9J5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/26672.png + small + + https://s.yimg.com/iu/api/res/1.2/7yiN0AjQ6Utog5TMDS9J5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/26672.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 21 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29241 + 29241 + + DeForest Buckner + DeForest + Buckner + DeForest + Buckner + + nfl.p.29241 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/NNjyP5lrjEQXqI0Hj1Ufow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29241.png + small + + https://s.yimg.com/iu/api/res/1.2/NNjyP5lrjEQXqI0Hj1Ufow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29241.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 17 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 44 + + + 39 + 23 + + + 40 + 12.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 17 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30999 + 30999 + + Taven Bryan + Taven + Bryan + Taven + Bryan + + nfl.p.30999 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/pSGZV_xn12jYlshXxfZIpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30999.png + small + + https://s.yimg.com/iu/api/res/1.2/pSGZV_xn12jYlshXxfZIpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30999.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 13 + + + 39 + 7 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24790 + 24790 + + Marcell Dareus + Marcell + Dareus + Marcell + Dareus + + back + nfl.p.24790 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/4CMu1Ed8a9Iuje_sBADe_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24790.png + small + + https://s.yimg.com/iu/api/res/1.2/4CMu1Ed8a9Iuje_sBADe_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24790.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 23 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 1 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31045 + 31045 + + Derrick Nnadi + Derrick + Nnadi + Derrick + Nnadi + + nfl.p.31045 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/oLIkVFZPUxinHGHBAh6R0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31045.png + small + + https://s.yimg.com/iu/api/res/1.2/oLIkVFZPUxinHGHBAh6R0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31045.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 17 + + + 39 + 18 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28427 + 28427 + + Eddie Goldman + Eddie + Goldman + Eddie + Goldman + + nfl.p.28427 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/CcLjIdatvbqbWdJZGjUBcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28427.png + small + + https://s.yimg.com/iu/api/res/1.2/CcLjIdatvbqbWdJZGjUBcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28427.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 13 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 1 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28400 + 28400 + + Danny Shelton + Danny + Shelton + Danny + Shelton + + NA + Inactive: Coach's Decision or Not on Roster + elbow + nfl.p.28400 + nfl.t.17 + New England Patriots + NE + + 11 + + 71 + DT + + https://s.yimg.com/iu/api/res/1.2/OZJr5ojsWmR23uWExMZQLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28400.png + small + + https://s.yimg.com/iu/api/res/1.2/OZJr5ojsWmR23uWExMZQLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28400.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 10 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28420 + 28420 + + Malcom Brown + Malcom + Brown + Malcom + Brown + + knee + nfl.p.28420 + nfl.t.17 + New England Patriots + NE + + 11 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/GnMQBzz7m35UsZIaEwkqTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28420.png + small + + https://s.yimg.com/iu/api/res/1.2/GnMQBzz7m35UsZIaEwkqTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28420.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 19 + + + 39 + 20 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30130 + 30130 + + Jonathan Allen + Jonathan + Allen + Jonathan + Allen + + nfl.p.30130 + nfl.t.28 + Washington Redskins + Was + + 4 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/NrRs7RBR3OqVpLEs41CmfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30130.png + small + + https://s.yimg.com/iu/api/res/1.2/NrRs7RBR3OqVpLEs41CmfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30130.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 2 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 35 + + + 39 + 26 + + + 40 + 8.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 11 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30178 + 30178 + + Larry Ogunjobi + Larry + Ogunjobi + Larry + Ogunjobi + + biceps + nfl.p.30178 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 65 + DT + + https://s.yimg.com/iu/api/res/1.2/n6SwEp4uG8a93UxCubt.hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30178.png + small + + https://s.yimg.com/iu/api/res/1.2/n6SwEp4uG8a93UxCubt.hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30178.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 19 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 10 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26828 + 26828 + + Stacy McGee + Stacy + McGee + Stacy + McGee + + nfl.p.26828 + nfl.t.28 + Washington Redskins + Was + + 4 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/BPmd4Ys4ZTUl0Gz9gHLpgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26828.png + small + + https://s.yimg.com/iu/api/res/1.2/BPmd4Ys4ZTUl0Gz9gHLpgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26828.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 7 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30215 + 30215 + + Nazair Jones + Nazair + Jones + Nazair + Jones + + illness + nfl.p.30215 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/k8UEfKPQDHCpAcLITQpNAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30215.png + small + + https://s.yimg.com/iu/api/res/1.2/k8UEfKPQDHCpAcLITQpNAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30215.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 2 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29950 + 29950 + + Antwaun Woods + Antwaun + Woods + Antwaun + Woods + + Q + Questionable + concussion + nfl.p.29950 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/wp7SckT4rCN3WQgll5CPCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29950.png + small + + https://s.yimg.com/iu/api/res/1.2/wp7SckT4rCN3WQgll5CPCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29950.png + 0 + DP + + DT + + 1 + 1547777940 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 15 + + + 39 + 19 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 3 + + + 83 + 0 + + + + + + 380.p.26717 + 26717 + + Brandon Williams + Brandon + Williams + Brandon + Williams + + nfl.p.26717 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/C6XrvUQXwcewXweq7_QExQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/26717.png + small + + https://s.yimg.com/iu/api/res/1.2/C6XrvUQXwcewXweq7_QExQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/26717.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 21 + + + 39 + 13 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31042 + 31042 + + Nathan Shepherd + Nathan + Shepherd + Nathan + Shepherd + + nfl.p.31042 + nfl.t.20 + New York Jets + NYJ + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/hTGAKOKJVlVmSOYyiqf27w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31042.png + small + + https://s.yimg.com/iu/api/res/1.2/hTGAKOKJVlVmSOYyiqf27w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31042.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 5 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28481 + 28481 + + Henry Anderson + Henry + Anderson + Henry + Anderson + + nfl.p.28481 + nfl.t.20 + New York Jets + NYJ + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/d2t._jRR6a7KYsqKIt8WMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28481.png + small + + https://s.yimg.com/iu/api/res/1.2/d2t._jRR6a7KYsqKIt8WMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28481.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 13 + + + 40 + 7.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 2 + + + 65 + 7 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26690 + 26690 + + Bennie Logan + Bennie + Logan + Bennie + Logan + + knee + nfl.p.26690 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/WxrAEHrTFIMgg3v8tVHt9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26690.png + small + + https://s.yimg.com/iu/api/res/1.2/WxrAEHrTFIMgg3v8tVHt9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/26690.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 5 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28542 + 28542 + + Tyeler Davison + Tyeler + Davison + Tyeler + Davison + + foot + nfl.p.28542 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/J0lii_5PiA6JnMjCl5KsbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28542.png + small + + https://s.yimg.com/iu/api/res/1.2/J0lii_5PiA6JnMjCl5KsbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28542.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 8 + + + 39 + 18 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24098 + 24098 + + Al Woods + Al + Woods + Al + Woods + + IR + Injured Reserve + foot + nfl.p.24098 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/qm4n5bgtvO5THKSX1e2nWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24098.png + small + + https://s.yimg.com/iu/api/res/1.2/qm4n5bgtvO5THKSX1e2nWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24098.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 10 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29323 + 29323 + + Javon Hargrave + Javon + Hargrave + Javon + Hargrave + + nfl.p.29323 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 79 + DT + + https://s.yimg.com/iu/api/res/1.2/ErC0RUWEByBDKHUprN5L9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29323.png + small + + https://s.yimg.com/iu/api/res/1.2/ErC0RUWEByBDKHUprN5L9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29323.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 32 + + + 39 + 17 + + + 40 + 6.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27104 + 27104 + + Abry Jones + Abry + Jones + Abry + Jones + + shin + nfl.p.27104 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/3PMZppfQIsuLq2sjfAVOYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27104.png + small + + https://s.yimg.com/iu/api/res/1.2/3PMZppfQIsuLq2sjfAVOYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27104.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 21 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26723 + 26723 + + Akeem Spence + Akeem + Spence + Akeem + Spence + + nfl.p.26723 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/HNfZTwobV2nUxNWgrcx8mg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26723.png + small + + https://s.yimg.com/iu/api/res/1.2/HNfZTwobV2nUxNWgrcx8mg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26723.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 19 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29354 + 29354 + + David Onyemata + David + Onyemata + David + Onyemata + + nfl.p.29354 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/zNWlqE7GwSvrk2ZZO2s.Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29354.png + small + + https://s.yimg.com/iu/api/res/1.2/zNWlqE7GwSvrk2ZZO2s.Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29354.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 12 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30222 + 30222 + + Jaleel Johnson + Jaleel + Johnson + Jaleel + Johnson + + nfl.p.30222 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/HfuLp2URvux9L1ycJoEIIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30222.png + small + + https://s.yimg.com/iu/api/res/1.2/HfuLp2URvux9L1ycJoEIIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30222.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 6 + + + 39 + 7 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29263 + 29263 + + Robert Nkemdiche + Robert + Nkemdiche + Robert + Nkemdiche + + IR + Injured Reserve + knee + nfl.p.29263 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/tGIPHzvWI9PQ2RTGiP3YtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29263.png + small + + https://s.yimg.com/iu/api/res/1.2/tGIPHzvWI9PQ2RTGiP3YtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29263.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 22 + + + 39 + 10 + + + 40 + 4.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31027 + 31027 + + P.J. Hall + P.J. + Hall + P.J. + Hall + + ankle + nfl.p.31027 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/Gny.gUmTTBkVwHzkYD3lmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31027.png + small + + https://s.yimg.com/iu/api/res/1.2/Gny.gUmTTBkVwHzkYD3lmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31027.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 16 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27635 + 27635 + + Justin Ellis + Justin + Ellis + Justin + Ellis + + foot + nfl.p.27635 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 78 + DT + + https://s.yimg.com/iu/api/res/1.2/E8KyUnWr.k7aeduoONt0zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27635.png + small + + https://s.yimg.com/iu/api/res/1.2/E8KyUnWr.k7aeduoONt0zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/27635.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 3 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30983 + 30983 + + Da'Ron Payne + Da'Ron + Payne + Da'Ron + Payne + + nfl.p.30983 + nfl.t.28 + Washington Redskins + Was + + 4 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/l6XEu_sbEbDerk3VSfrgGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30983.png + small + + https://s.yimg.com/iu/api/res/1.2/l6XEu_sbEbDerk3VSfrgGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30983.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 35 + + + 39 + 21 + + + 40 + 5.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 6 + + + 66 + 9 + + + 83 + 0 + + + + + + 380.p.27541 + 27541 + + Aaron Donald + Aaron + Donald + Aaron + Donald + + nfl.p.27541 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/xJ6xWvlOtfl3.G8FSddytg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27541.png + small + + https://s.yimg.com/iu/api/res/1.2/xJ6xWvlOtfl3.G8FSddytg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27541.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 58 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 41 + + + 39 + 18 + + + 40 + 20.5 + + + 41 + 0 + + + 42 + 4 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 25 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30982 + 30982 + + Vita Vea + Vita + Vea + Vita + Vea + + calf + nfl.p.30982 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 50 + DT + + https://s.yimg.com/iu/api/res/1.2/2oOtw8fEjoJKtTpyx24oIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30982.png + small + + https://s.yimg.com/iu/api/res/1.2/2oOtw8fEjoJKtTpyx24oIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30982.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 21 + + + 39 + 7 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30310 + 30310 + + D.J. Jones + D.J. + Jones + D.J. + Jones + + nfl.p.30310 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 93 + DT + + https://s.yimg.com/iu/api/res/1.2/YMXupCIl0ic1glP688cxMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30310.png + small + + https://s.yimg.com/iu/api/res/1.2/YMXupCIl0ic1glP688cxMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30310.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 11 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31060 + 31060 + + Deadrin Senat + Deadrin + Senat + Deadrin + Senat + + nfl.p.31060 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/397OM5TKPVr1X07KALsTyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31060.png + small + + https://s.yimg.com/iu/api/res/1.2/397OM5TKPVr1X07KALsTyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31060.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 15 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24095 + 24095 + + Geno Atkins + Geno + Atkins + Geno + Atkins + + nfl.p.24095 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/HMJ_kiH7_07_ainQglsR0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24095.png + small + + https://s.yimg.com/iu/api/res/1.2/HMJ_kiH7_07_ainQglsR0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24095.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 24 + + + 39 + 21 + + + 40 + 10.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 13 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26153 + 26153 + + Damon Harrison Sr. + Damon + Harrison Sr. + Damon + Harrison Sr. + + ankle + nfl.p.26153 + nfl.t.8 + Detroit Lions + Det + + 6 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/bM0vhAHBYscrTfJBOcIpDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26153.png + small + + https://s.yimg.com/iu/api/res/1.2/bM0vhAHBYscrTfJBOcIpDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26153.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 17 + + + 38 + 52 + + + 39 + 29 + + + 40 + 3.5 + + + 41 + 0 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31054 + 31054 + + Justin Jones + Justin + Jones + Justin + Jones + + nfl.p.31054 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/3nNDjDeIBKHuYj2bcYChnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31054.png + small + + https://s.yimg.com/iu/api/res/1.2/3nNDjDeIBKHuYj2bcYChnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31054.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 7 + + + 39 + 10 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9508 + 9508 + + Ricky Jean Francois + Ricky + Jean Francois + Ricky + Jean Francois + + nfl.p.9508 + nfl.t.8 + Detroit Lions + Det + + 6 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/fGpiVRa4M.LS2iBKLDKFHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/9508.png + small + + https://s.yimg.com/iu/api/res/1.2/fGpiVRa4M.LS2iBKLDKFHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/9508.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 19 + + + 39 + 11 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31110 + 31110 + + Maurice Hurst + Maurice + Hurst + Maurice + Hurst + + Q + Questionable + ankle + nfl.p.31110 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 73 + DT + + https://s.yimg.com/iu/api/res/1.2/KIThGOzOuq.Avm154uhfWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31110.png + small + + https://s.yimg.com/iu/api/res/1.2/KIThGOzOuq.Avm154uhfWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31110.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 26 + + + 39 + 5 + + + 40 + 4.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29400 + 29400 + + D.J. Reader + D.J. + Reader + D.J. + Reader + + nfl.p.29400 + nfl.t.34 + Houston Texans + Hou + + 10 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/sotu4oQMAK9IeTr5moL_.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29400.png + small + + https://s.yimg.com/iu/api/res/1.2/sotu4oQMAK9IeTr5moL_.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29400.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 10 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25722 + 25722 + + Fletcher Cox + Fletcher + Cox + Fletcher + Cox + + Q + Questionable + nfl.p.25722 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/mD8ekbBRI10ZUM6dsV.LeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25722.png + small + + https://s.yimg.com/iu/api/res/1.2/mD8ekbBRI10ZUM6dsV.LeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25722.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 13 + + + 40 + 10.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 12 + + + 66 + 3 + + + 83 + 0 + + + + + + 380.p.26667 + 26667 + + Kawann Short + Kawann + Short + Kawann + Short + + Q + Questionable + calf + nfl.p.26667 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/DBQwkc6ELURIPf6e7hOzPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26667.png + small + + https://s.yimg.com/iu/api/res/1.2/DBQwkc6ELURIPf6e7hOzPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26667.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 29 + + + 39 + 13 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 12 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29289 + 29289 + + Jarran Reed + Jarran + Reed + Jarran + Reed + + oblique, groin + nfl.p.29289 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/Gy6A7mVDjroJuHdiW_ot8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29289.png + small + + https://s.yimg.com/iu/api/res/1.2/Gy6A7mVDjroJuHdiW_ot8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29289.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 34 + + + 39 + 16 + + + 40 + 10.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 12 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.29747 + 29747 + + Brian Price + Brian + Price + Brian + Price + + hamstring + nfl.p.29747 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/ARNMxe4F9DNRMXKQGQqbpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29747.png + small + + https://s.yimg.com/iu/api/res/1.2/ARNMxe4F9DNRMXKQGQqbpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29747.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 6 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8339 + 8339 + + Brandon Mebane + Brandon + Mebane + Brandon + Mebane + + not injury related + nfl.p.8339 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/VRNEHexvbXha_JefoPdRAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/8339.png + small + + https://s.yimg.com/iu/api/res/1.2/VRNEHexvbXha_JefoPdRAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/8339.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 22 + + + 39 + 18 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27686 + 27686 + + Caraun Reid + Caraun + Reid + Caraun + Reid + + nfl.p.27686 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 51 + DT + + https://s.yimg.com/iu/api/res/1.2/SYpLRDjhhosnj0d2.URpkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27686.png + small + + https://s.yimg.com/iu/api/res/1.2/SYpLRDjhhosnj0d2.URpkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27686.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 6 + + + 39 + 4 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30257 + 30257 + + Grover Stewart + Grover + Stewart + Grover + Stewart + + shoulder + nfl.p.30257 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/tK9nli8oXqyh5LqgfN7j4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30257.png + small + + https://s.yimg.com/iu/api/res/1.2/tK9nli8oXqyh5LqgfN7j4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30257.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 8 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29376 + 29376 + + Ronald Blair III + Ronald + Blair III + Ronald + Blair III + + nfl.p.29376 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/ikdGI3IrjzV29596Sa7w3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29376.png + small + + https://s.yimg.com/iu/api/res/1.2/ikdGI3IrjzV29596Sa7w3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29376.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 24 + + + 39 + 12 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 10 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29337 + 29337 + + Sheldon Day + Sheldon + Day + Sheldon + Day + + nfl.p.29337 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/gQGxwtxqLdo0xIHBKfmHGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29337.png + small + + https://s.yimg.com/iu/api/res/1.2/gQGxwtxqLdo0xIHBKfmHGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29337.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 9 + + + 39 + 2 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29264 + 29264 + + Vernon Butler + Vernon + Butler + Vernon + Butler + + nfl.p.29264 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 92 + DT + + https://s.yimg.com/iu/api/res/1.2/W52cQDZvWPgD7ChxTtx92Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29264.png + small + + https://s.yimg.com/iu/api/res/1.2/W52cQDZvWPgD7ChxTtx92Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/29264.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 6 + + + 39 + 13 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28405 + 28405 + + Arik Armstead + Arik + Armstead + Arik + Armstead + + Q + Questionable + nfl.p.28405 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/9dDNlvfToUfzEecslFGtcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28405.png + small + + https://s.yimg.com/iu/api/res/1.2/9dDNlvfToUfzEecslFGtcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28405.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 15 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24852 + 24852 + + Terrell McClain + Terrell + McClain + Terrell + McClain + + toe + nfl.p.24852 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/61QEf2weVPZLh6U._7GTow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24852.png + small + + https://s.yimg.com/iu/api/res/1.2/61QEf2weVPZLh6U._7GTow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24852.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 9 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9673 + 9673 + + Steve McLendon + Steve + McLendon + Steve + McLendon + + ankle + nfl.p.9673 + nfl.t.20 + New York Jets + NYJ + + 11 + + 99 + DT + + https://s.yimg.com/iu/api/res/1.2/kPVDVAVvUeOsvVcxujizLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/9673.png + small + + https://s.yimg.com/iu/api/res/1.2/kPVDVAVvUeOsvVcxujizLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/9673.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 21 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29280 + 29280 + + A'Shawn Robinson + A'Shawn + Robinson + A'Shawn + Robinson + + IR + Injured Reserve + knee + nfl.p.29280 + nfl.t.8 + Detroit Lions + Det + + 6 + + 91 + DT + + https://s.yimg.com/iu/api/res/1.2/3eL1F6CRvERVt0eRUfk4ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29280.png + small + + https://s.yimg.com/iu/api/res/1.2/3eL1F6CRvERVt0eRUfk4ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29280.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 34 + + + 39 + 15 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26637 + 26637 + + Star Lotulelei + Star + Lotulelei + Star + Lotulelei + + nfl.p.26637 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/6xSlx0kcQ8SCqrLoq8CzLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26637.png + small + + https://s.yimg.com/iu/api/res/1.2/6xSlx0kcQ8SCqrLoq8CzLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26637.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 10 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31039 + 31039 + + B.J. Hill + B.J. + Hill + B.J. + Hill + + nfl.p.31039 + nfl.t.19 + New York Giants + NYG + + 9 + + 95 + DT + + https://s.yimg.com/iu/api/res/1.2/LgaYDI0UgEjopVi3LEGtvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31039.png + small + + https://s.yimg.com/iu/api/res/1.2/LgaYDI0UgEjopVi3LEGtvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31039.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 32 + + + 39 + 16 + + + 40 + 5.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 6 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26651 + 26651 + + Sylvester Williams + Sylvester + Williams + Sylvester + Williams + + nfl.p.26651 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/oI8J5tbnt2EpJkaxH5hSoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26651.png + small + + https://s.yimg.com/iu/api/res/1.2/oI8J5tbnt2EpJkaxH5hSoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26651.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 8 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30357 + 30357 + + Treyvon Hester + Treyvon + Hester + Treyvon + Hester + + nfl.p.30357 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 90 + DT + + https://s.yimg.com/iu/api/res/1.2/ZdNaB6TZb9mRXJyNO0aeuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30357.png + small + + https://s.yimg.com/iu/api/res/1.2/ZdNaB6TZb9mRXJyNO0aeuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30357.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 8 + + + 39 + 5 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31477 + 31477 + + Poona Ford + Poona + Ford + Poona + Ford + + nfl.p.31477 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 13 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29301 + 29301 + + Maliek Collins + Maliek + Collins + Maliek + Collins + + illness, ankle + nfl.p.29301 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 96 + DT + + https://s.yimg.com/iu/api/res/1.2/cMwkNevNrnTU.3nrfNCUNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29301.png + small + + https://s.yimg.com/iu/api/res/1.2/cMwkNevNrnTU.3nrfNCUNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29301.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 12 + + + 39 + 7 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28440 + 28440 + + Jordan Phillips + Jordan + Phillips + Jordan + Phillips + + nfl.p.28440 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 97 + DT + + https://s.yimg.com/iu/api/res/1.2/r068a4o7nNQ.WTZVhIOeBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28440.png + small + + https://s.yimg.com/iu/api/res/1.2/r068a4o7nNQ.WTZVhIOeBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28440.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28085 + 28085 + + Mike Pennel + Mike + Pennel + Mike + Pennel + + nfl.p.28085 + nfl.t.20 + New York Jets + NYJ + + 11 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/HJaF36pydF588cVjAT1MpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28085.png + small + + https://s.yimg.com/iu/api/res/1.2/HJaF36pydF588cVjAT1MpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/28085.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28815 + 28815 + + Xavier Williams + Xavier + Williams + Xavier + Williams + + nfl.p.28815 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/AfVjl8LJLbKEeAw6Dx_w9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28815.png + small + + https://s.yimg.com/iu/api/res/1.2/AfVjl8LJLbKEeAw6Dx_w9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28815.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 22 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24058 + 24058 + + Corey Peters + Corey + Peters + Corey + Peters + + heel, back + nfl.p.24058 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 98 + DT + + https://s.yimg.com/iu/api/res/1.2/ndjC2Hy8dhmvxeu3UiNjvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24058.png + small + + https://s.yimg.com/iu/api/res/1.2/ndjC2Hy8dhmvxeu3UiNjvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24058.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 33 + + + 39 + 17 + + + 40 + 2.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 9 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29277 + 29277 + + Austin Johnson + Austin + Johnson + Austin + Johnson + + nfl.p.29277 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 94 + DT + + https://s.yimg.com/iu/api/res/1.2/YJZtfUSWYYLxp07R8JhohQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29277.png + small + + https://s.yimg.com/iu/api/res/1.2/YJZtfUSWYYLxp07R8JhohQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29277.png + 0 + DP + + DT + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 13 + + + 39 + 9 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30631 + 30631 + + Rickey Jefferson + Rickey + Jefferson + Rickey + Jefferson + + IR + Injured Reserve + torn ACL + nfl.p.30631 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28828 + 28828 + + Damian Parms + Damian + Parms + Damian + Parms + + IR + Injured Reserve + shoulder + nfl.p.28828 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/aNgHUN2tTo676iIDHHBzyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28828.png + small + + https://s.yimg.com/iu/api/res/1.2/aNgHUN2tTo676iIDHHBzyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28828.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31359 + 31359 + + Chris Lammons + Chris + Lammons + Chris + Lammons + + nfl.p.31359 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/DUyZMgjkNfpIfj_yP_ugQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31359.png + small + + https://s.yimg.com/iu/api/res/1.2/DUyZMgjkNfpIfj_yP_ugQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31359.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24109 + 24109 + + Kam Chancellor + Kam + Chancellor + Kam + Chancellor + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.24109 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/YWxB3gebEf1YkqpGHFSEYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24109.png + small + + https://s.yimg.com/iu/api/res/1.2/YWxB3gebEf1YkqpGHFSEYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24109.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31258 + 31258 + + Godwin Igwebuike + Godwin + Igwebuike + Godwin + Igwebuike + + nfl.p.31258 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/uNjpZe2QEOoomJ8WXiQHaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31258.png + small + + https://s.yimg.com/iu/api/res/1.2/uNjpZe2QEOoomJ8WXiQHaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31258.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28830 + 28830 + + Robenson Therezie + Robenson + Therezie + Robenson + Therezie + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28830 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/W0ySvJyVOSGrr14pbdgy_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28830.png + small + + https://s.yimg.com/iu/api/res/1.2/W0ySvJyVOSGrr14pbdgy_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28830.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31713 + 31713 + + Tyrin Holloway + Tyrin + Holloway + Tyrin + Holloway + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31713 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28532 + 28532 + + Mykkele Thompson + Mykkele + Thompson + Mykkele + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28532 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 28 + S + + https://s.yimg.com/iu/api/res/1.2/ca4vaxCZkVOzX33ltuU4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28532.png + small + + https://s.yimg.com/iu/api/res/1.2/ca4vaxCZkVOzX33ltuU4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28532.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27596 + 27596 + + Dezmen Southward + Dezmen + Southward + Dezmen + Southward + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27596 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/b9UPX6DDaFnFOYxVU36oSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27596.1.png + small + + https://s.yimg.com/iu/api/res/1.2/b9UPX6DDaFnFOYxVU36oSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27596.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30461 + 30461 + + Jordan Moore + Jordan + Moore + Jordan + Moore + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30461 + nfl.t.7 + Denver Broncos + Den + + 10 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/FeVJspYN60YB7gJMyP1UuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30461.png + small + + https://s.yimg.com/iu/api/res/1.2/FeVJspYN60YB7gJMyP1UuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30461.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28468 + 28468 + + Alex Carter + Alex + Carter + Alex + Carter + + nfl.p.28468 + nfl.t.28 + Washington Redskins + Was + + 4 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/7tTTOPTQYAhdVrmKYeArhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28468.png + small + + https://s.yimg.com/iu/api/res/1.2/7tTTOPTQYAhdVrmKYeArhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28468.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31384 + 31384 + + Corey Griffin + Corey + Griffin + Corey + Griffin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31384 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/FPxWkQTBe_4mPfUUo1Wudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31384.png + small + + https://s.yimg.com/iu/api/res/1.2/FPxWkQTBe_4mPfUUo1Wudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31384.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29216 + 29216 + + Dexter McCoil + Dexter + McCoil + Dexter + McCoil + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29216 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/sjP7mDGXq6xWWsmOEAHd3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29216.png + small + + https://s.yimg.com/iu/api/res/1.2/sjP7mDGXq6xWWsmOEAHd3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29216.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31737 + 31737 + + Chucky Williams + Chucky + Williams + Chucky + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31737 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25091 + 25091 + + Jeron Johnson + Jeron + Johnson + Jeron + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25091 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/Q.7Qox9_KGGYY31DJWHF.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/25091.png + small + + https://s.yimg.com/iu/api/res/1.2/Q.7Qox9_KGGYY31DJWHF.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/25091.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30690 + 30690 + + Chanceller James + Chanceller + James + Chanceller + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30690 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/SaLcw4m5PLkDmV48f3tlJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30690.png + small + + https://s.yimg.com/iu/api/res/1.2/SaLcw4m5PLkDmV48f3tlJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/30690.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30838 + 30838 + + Tyson Graham + Tyson + Graham + Tyson + Graham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30838 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/X2ei8JMfgXv1y8yOBo8MWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30838.png + small + + https://s.yimg.com/iu/api/res/1.2/X2ei8JMfgXv1y8yOBo8MWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30838.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31562 + 31562 + + Trayvon Henderson + Trayvon + Henderson + Trayvon + Henderson + + IR + Injured Reserve + knee + nfl.p.31562 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31723 + 31723 + + Dallin Leavitt + Dallin + Leavitt + Dallin + Leavitt + + nfl.p.31723 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 0 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29845 + 29845 + + Trae Elston + Trae + Elston + Trae + Elston + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29845 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/Q5_qMFsExwf3JjXGvnapVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29845.png + small + + https://s.yimg.com/iu/api/res/1.2/Q5_qMFsExwf3JjXGvnapVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29845.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28636 + 28636 + + Ryan Murphy + Ryan + Murphy + Ryan + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28636 + nfl.t.19 + New York Giants + NYG + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/X4YAk9FNgR2MFuErpL31lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28636.png + small + + https://s.yimg.com/iu/api/res/1.2/X4YAk9FNgR2MFuErpL31lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28636.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26356 + 26356 + + Rodney McLeod + Rodney + McLeod + Rodney + McLeod + + IR + Injured Reserve + knee + nfl.p.26356 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/Mtbvo0oKNvh0rIVPViw1eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26356.png + small + + https://s.yimg.com/iu/api/res/1.2/Mtbvo0oKNvh0rIVPViw1eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26356.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 7 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30358 + 30358 + + Jack Tocho + Jack + Tocho + Jack + Tocho + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30358 + nfl.t.28 + Washington Redskins + Was + + 4 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/Wxyx0dGqH83hPm9QeIEToQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30358.png + small + + https://s.yimg.com/iu/api/res/1.2/Wxyx0dGqH83hPm9QeIEToQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30358.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29933 + 29933 + + Rolan Milligan + Rolan + Milligan + Rolan + Milligan + + nfl.p.29933 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/.MGf1HrCcBJtdHNjH97L1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29933.png + small + + https://s.yimg.com/iu/api/res/1.2/.MGf1HrCcBJtdHNjH97L1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29933.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30673 + 30673 + + Damarius Travis + Damarius + Travis + Damarius + Travis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30673 + nfl.t.17 + New England Patriots + NE + + 11 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/szHSYnPRGulpI7BUGSsKJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30673.png + small + + https://s.yimg.com/iu/api/res/1.2/szHSYnPRGulpI7BUGSsKJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30673.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26871 + 26871 + + Daimion Stafford + Daimion + Stafford + Daimion + Stafford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26871 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/fODtGpnrfoMvancn5Rpi7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26871.png + small + + https://s.yimg.com/iu/api/res/1.2/fODtGpnrfoMvancn5Rpi7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26871.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29952 + 29952 + + Marwin Evans + Marwin + Evans + Marwin + Evans + + nfl.p.29952 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/WkJmLOATjrCzuAHlaAWuKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29952.png + small + + https://s.yimg.com/iu/api/res/1.2/WkJmLOATjrCzuAHlaAWuKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29952.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7864 + 7864 + + Will Blackmon + Will + Blackmon + Will + Blackmon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7864 + nfl.t.28 + Washington Redskins + Was + + 4 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/xAI_vWDq0M2C2ZXCyWsfDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7864.png + small + + https://s.yimg.com/iu/api/res/1.2/xAI_vWDq0M2C2ZXCyWsfDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7864.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9352 + 9352 + + Lardarius Webb + Lardarius + Webb + Lardarius + Webb + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9352 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/sk7HEBf.pbl3dVaLwGsSXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9352.png + small + + https://s.yimg.com/iu/api/res/1.2/sk7HEBf.pbl3dVaLwGsSXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9352.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30807 + 30807 + + T.J. Mutcherson + T.J. + Mutcherson + T.J. + Mutcherson + + IR + Injured Reserve + undisclosed + nfl.p.30807 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/wu5xe5zG_QLfq_8Fv53Ptg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30807.png + small + + https://s.yimg.com/iu/api/res/1.2/wu5xe5zG_QLfq_8Fv53Ptg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30807.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.25884 + 25884 + + Keith Tandy + Keith + Tandy + Keith + Tandy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25884 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/c3i6x6V7zjzYat5yfs8Skg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25884.png + small + + https://s.yimg.com/iu/api/res/1.2/c3i6x6V7zjzYat5yfs8Skg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25884.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 0 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 1 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31733 + 31733 + + Steven Parker + Steven + Parker + Steven + Parker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31733 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8894 + 8894 + + Quintin Demps + Quintin + Demps + Quintin + Demps + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8894 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/C_5xtgJIrSEaIiDIy_hkOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/8894.png + small + + https://s.yimg.com/iu/api/res/1.2/C_5xtgJIrSEaIiDIy_hkOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/8894.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31582 + 31582 + + Jeremy Reaves + Jeremy + Reaves + Jeremy + Reaves + + nfl.p.31582 + nfl.t.28 + Washington Redskins + Was + + 4 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29251 + 29251 + + Keanu Neal + Keanu + Neal + Keanu + Neal + + IR + Injured Reserve + torn left ACL + nfl.p.29251 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/mswQqZJA3cm20OjlOdkzXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29251.png + small + + https://s.yimg.com/iu/api/res/1.2/mswQqZJA3cm20OjlOdkzXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29251.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 1 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31237 + 31237 + + Tray Matthews + Tray + Matthews + Tray + Matthews + + nfl.p.31237 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/_7shD_Is9MyDKWFC0oGkmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31237.png + small + + https://s.yimg.com/iu/api/res/1.2/_7shD_Is9MyDKWFC0oGkmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31237.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27675 + 27675 + + Ricardo Allen + Ricardo + Allen + Ricardo + Allen + + IR + Injured Reserve + torn left Achilles + nfl.p.27675 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/FLRw.d2TWKfZKMDIM4_VYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27675.png + small + + https://s.yimg.com/iu/api/res/1.2/FLRw.d2TWKfZKMDIM4_VYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27675.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 14 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 28 + + + 83 + 0 + + + + + + 380.p.24326 + 24326 + + Chris Maragos + Chris + Maragos + Chris + Maragos + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.24326 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/gBr6yHA2WU5Q31ZgkpFzTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24326.png + small + + https://s.yimg.com/iu/api/res/1.2/gBr6yHA2WU5Q31ZgkpFzTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24326.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30750 + 30750 + + Denzel Johnson + Denzel + Johnson + Denzel + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30750 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31587 + 31587 + + Dominick Sanders + Dominick + Sanders + Dominick + Sanders + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31587 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31273 + 31273 + + C.J. Reavis + C.J. + Reavis + C.J. + Reavis + + nfl.p.31273 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/8EeigPpbVZmm6mMNlfcQYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31273.png + small + + https://s.yimg.com/iu/api/res/1.2/8EeigPpbVZmm6mMNlfcQYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/31273.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30687 + 30687 + + Jordan Sterns + Jordan + Sterns + Jordan + Sterns + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30687 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/Ri750LtMC4TmJHXW2B.ncg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30687.png + small + + https://s.yimg.com/iu/api/res/1.2/Ri750LtMC4TmJHXW2B.ncg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30687.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26222 + 26222 + + Robert Golden + Robert + Golden + Robert + Golden + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26222 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/.KG0zJJT52TMSRz9NDwhKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26222.png + small + + https://s.yimg.com/iu/api/res/1.2/.KG0zJJT52TMSRz9NDwhKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26222.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30331 + 30331 + + Leon McQuay + Leon + McQuay + Leon + McQuay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30331 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/6wZWTRNua0lSD.hgL8jHHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30331.png + small + + https://s.yimg.com/iu/api/res/1.2/6wZWTRNua0lSD.hgL8jHHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30331.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30848 + 30848 + + Jamal Carter Sr. + Jamal + Carter Sr. + Jamal + Carter Sr. + + IR + Injured Reserve + torn hamstring + nfl.p.30848 + nfl.t.7 + Denver Broncos + Den + + 10 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/HxIvvqYJ7Y_2abgUfpm8hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30848.png + small + + https://s.yimg.com/iu/api/res/1.2/HxIvvqYJ7Y_2abgUfpm8hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30848.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29829 + 29829 + + A.J. Hendy + A.J. + Hendy + A.J. + Hendy + + nfl.p.29829 + nfl.t.34 + Houston Texans + Hou + + 10 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/wUQIy1OaDvdIUEhygQLLcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29829.png + small + + https://s.yimg.com/iu/api/res/1.2/wUQIy1OaDvdIUEhygQLLcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29829.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24887 + 24887 + + Da'Norris Searcy + Da'Norris + Searcy + Da'Norris + Searcy + + IR + Injured Reserve + concussion + nfl.p.24887 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/wB6oJ94ENLmmVkhBcI2LMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/24887.png + small + + https://s.yimg.com/iu/api/res/1.2/wB6oJ94ENLmmVkhBcI2LMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/24887.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31296 + 31296 + + Tyree Robinson + Tyree + Robinson + Tyree + Robinson + + nfl.p.31296 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 49 + S + + https://s.yimg.com/iu/api/res/1.2/IAVEGjkh1wKt7YpRSmVxFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31296.png + small + + https://s.yimg.com/iu/api/res/1.2/IAVEGjkh1wKt7YpRSmVxFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31296.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23980 + 23980 + + Eric Berry + Eric + Berry + Eric + Berry + + heel + nfl.p.23980 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/4j05_jO5oqv6aOT7_FvQuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/23980.png + small + + https://s.yimg.com/iu/api/res/1.2/4j05_jO5oqv6aOT7_FvQuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/23980.png + 0 + DP + + S + + 1 + 1547996340 + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 8 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30169 + 30169 + + Obi Melifonwu + Obi + Melifonwu + Obi + Melifonwu + + hip + nfl.p.30169 + nfl.t.17 + New England Patriots + NE + + 11 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/doveszM9UUK4RIGB.XlIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30169.png + small + + https://s.yimg.com/iu/api/res/1.2/doveszM9UUK4RIGB.XlIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30169.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 3 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31306 + 31306 + + A.J. Howard + A.J. + Howard + A.J. + Howard + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31306 + nfl.t.17 + New England Patriots + NE + + 11 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/iJ4fUYPJmMSb9O0TI2njjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31306.1.png + small + + https://s.yimg.com/iu/api/res/1.2/iJ4fUYPJmMSb9O0TI2njjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31306.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31160 + 31160 + + DeShon Elliott + DeShon + Elliott + DeShon + Elliott + + IR + Injured Reserve + undisclosed + nfl.p.31160 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/6EsfXmqtCzG4Q2fjNY1WNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/31160.png + small + + https://s.yimg.com/iu/api/res/1.2/6EsfXmqtCzG4Q2fjNY1WNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/31160.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29833 + 29833 + + Tyvis Powell + Tyvis + Powell + Tyvis + Powell + + nfl.p.29833 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/KZ2w3anSZIa0aUowKHfSHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29833.png + small + + https://s.yimg.com/iu/api/res/1.2/KZ2w3anSZIa0aUowKHfSHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/29833.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 6 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31644 + 31644 + + Anthony Sherrils + Anthony + Sherrils + Anthony + Sherrils + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31644 + nfl.t.8 + Detroit Lions + Det + + 6 + + + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31318 + 31318 + + Jonathan Owens + Jonathan + Owens + Jonathan + Owens + + IR + Injured Reserve + undisclosed + nfl.p.31318 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27680 + 27680 + + Nat Berhe + Nat + Berhe + Nat + Berhe + + IR + Injured Reserve + pectoral + nfl.p.27680 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/yT0yQsM3JHr_CG5B3bNKDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27680.png + small + + https://s.yimg.com/iu/api/res/1.2/yT0yQsM3JHr_CG5B3bNKDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27680.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 2 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30578 + 30578 + + Demetrious Cox + Demetrious + Cox + Demetrious + Cox + + nfl.p.30578 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/bZm7nXoNReFtPbOagOXHtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30578.png + small + + https://s.yimg.com/iu/api/res/1.2/bZm7nXoNReFtPbOagOXHtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30578.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26978 + 26978 + + Steven Terrell + Steven + Terrell + Steven + Terrell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26978 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/vlNtgYCVAHETSK8GfRCTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26978.png + small + + https://s.yimg.com/iu/api/res/1.2/vlNtgYCVAHETSK8GfRCTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26978.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28492 + 28492 + + James Sample + James + Sample + James + Sample + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28492 + nfl.t.28 + Washington Redskins + Was + + 4 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/qEugH2TrA7GpBpBfs8bzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28492.1.png + small + + https://s.yimg.com/iu/api/res/1.2/qEugH2TrA7GpBpBfs8bzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28492.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9305 + 9305 + + Darius Butler + Darius + Butler + Darius + Butler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9305 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/AjK14_8rt7MpuhabRJ1c_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/9305.png + small + + https://s.yimg.com/iu/api/res/1.2/AjK14_8rt7MpuhabRJ1c_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/9305.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31395 + 31395 + + Quin Blanding + Quin + Blanding + Quin + Blanding + + nfl.p.31395 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/sqMGCl.9CWvHQ.EQRAXZvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31395.png + small + + https://s.yimg.com/iu/api/res/1.2/sqMGCl.9CWvHQ.EQRAXZvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31395.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8877 + 8877 + + Tyvon Branch + Tyvon + Branch + Tyvon + Branch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8877 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/5p4m_brpgwzGmVESs.5y9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8877.png + small + + https://s.yimg.com/iu/api/res/1.2/5p4m_brpgwzGmVESs.5y9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8877.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29604 + 29604 + + Stefan McClure + Stefan + McClure + Stefan + McClure + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29604 + nfl.t.8 + Detroit Lions + Det + + 6 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/EnIHZXfqiFKkmbVcWEp7tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29604.png + small + + https://s.yimg.com/iu/api/res/1.2/EnIHZXfqiFKkmbVcWEp7tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29604.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31079 + 31079 + + Troy Apke + Troy + Apke + Troy + Apke + + IR + Injured Reserve + hamstring + nfl.p.31079 + nfl.t.28 + Washington Redskins + Was + + 4 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/XriPj2q8xXeZzrfWpHRV3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31079.png + small + + https://s.yimg.com/iu/api/res/1.2/XriPj2q8xXeZzrfWpHRV3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31079.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30447 + 30447 + + Marcelis Branch + Marcelis + Branch + Marcelis + Branch + + nfl.p.30447 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/PS4FrYErEJU6LM_4KzAO1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30447.png + small + + https://s.yimg.com/iu/api/res/1.2/PS4FrYErEJU6LM_4KzAO1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30447.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26922 + 26922 + + Marcus Cromartie + Marcus + Cromartie + Marcus + Cromartie + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.26922 + nfl.t.8 + Detroit Lions + Det + + 6 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/uK8cVQ5l_H8yCwM5fHsD2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26922.png + small + + https://s.yimg.com/iu/api/res/1.2/uK8cVQ5l_H8yCwM5fHsD2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26922.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31754 + 31754 + + Nate Holley + Nate + Holley + Nate + Holley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31754 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24880 + 24880 + + Chris Conte + Chris + Conte + Chris + Conte + + IR + Injured Reserve + knee + nfl.p.24880 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/OL3yPhQZYPPpg4W3v2L6wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24880.png + small + + https://s.yimg.com/iu/api/res/1.2/OL3yPhQZYPPpg4W3v2L6wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24880.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 38 + 10 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30557 + 30557 + + Malik Golden + Malik + Golden + Malik + Golden + + IR + Injured Reserve + undisclosed + nfl.p.30557 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/.CycT1Nf8E_hqi_KP8YICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30557.png + small + + https://s.yimg.com/iu/api/res/1.2/.CycT1Nf8E_hqi_KP8YICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30557.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26873 + 26873 + + Don Jones + Don + Jones + Don + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26873 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/9s7aQdPYbpGSgHKBErkcLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/26873.png + small + + https://s.yimg.com/iu/api/res/1.2/9s7aQdPYbpGSgHKBErkcLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/26873.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9596 + 9596 + + Colt Anderson + Colt + Anderson + Colt + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9596 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/L5UgESv5GgjewSMSIMpUKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9596.1.png + small + + https://s.yimg.com/iu/api/res/1.2/L5UgESv5GgjewSMSIMpUKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9596.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31363 + 31363 + + Tigie Sankoh + Tigie + Sankoh + Tigie + Sankoh + + nfl.p.31363 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/kAIeM7mE8n2AYFeklLiWqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31363.png + small + + https://s.yimg.com/iu/api/res/1.2/kAIeM7mE8n2AYFeklLiWqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31363.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30652 + 30652 + + Maurice Smith + Maurice + Smith + Maurice + Smith + + nfl.p.30652 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/chtUa6gnY3pMb91AQ2TxDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30652.png + small + + https://s.yimg.com/iu/api/res/1.2/chtUa6gnY3pMb91AQ2TxDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30652.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 5 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28732 + 28732 + + Dean Marlowe + Dean + Marlowe + Dean + Marlowe + + nfl.p.28732 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/baBvJI9bcsfvAj9qWmwrZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28732.png + small + + https://s.yimg.com/iu/api/res/1.2/baBvJI9bcsfvAj9qWmwrZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28732.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 4 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9441 + 9441 + + Don Carey + Don + Carey + Don + Carey + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.9441 + nfl.t.8 + Detroit Lions + Det + + 6 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/6e7F9k.QY4WIX4uknHBsKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/9441.png + small + + https://s.yimg.com/iu/api/res/1.2/6e7F9k.QY4WIX4uknHBsKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/9441.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28712 + 28712 + + Ronald Martin + Ronald + Martin + Ronald + Martin + + IR + Injured Reserve + nfl.p.28712 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/C.MOLYBt7GFPXIi6vSz2YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28712.png + small + + https://s.yimg.com/iu/api/res/1.2/C.MOLYBt7GFPXIi6vSz2YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28712.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31333 + 31333 + + Terrell Williams Jr. + Terrell + Williams Jr. + Terrell + Williams Jr. + + undisclosed + nfl.p.31333 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 6 + S + + https://s.yimg.com/iu/api/res/1.2/Gvst2ZSGOaXRk96k0hEqFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31333.png + small + + https://s.yimg.com/iu/api/res/1.2/Gvst2ZSGOaXRk96k0hEqFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31333.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31763 + 31763 + + Brandon Bryant + Brandon + Bryant + Brandon + Bryant + + nfl.p.31763 + nfl.t.20 + New York Jets + NYJ + + 11 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26656 + 26656 + + Johnathan Cyprien + Johnathan + Cyprien + Johnathan + Cyprien + + IR + Injured Reserve + torn left ACL + nfl.p.26656 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/3hY9rdLCmUJ_obvkE9LV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26656.png + small + + https://s.yimg.com/iu/api/res/1.2/3hY9rdLCmUJ_obvkE9LV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26656.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29022 + 29022 + + Jameill Showers + Jameill + Showers + Jameill + Showers + + IR + Injured Reserve + torn ACL + nfl.p.29022 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 28 + S + + https://s.yimg.com/iu/api/res/1.2/FGmpS_d2qUJvraX3ihh25w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29022.png + small + + https://s.yimg.com/iu/api/res/1.2/FGmpS_d2qUJvraX3ihh25w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29022.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31729 + 31729 + + Michael Cirino + Michael + Cirino + Michael + Cirino + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31729 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28148 + 28148 + + L.J. McCray + L.J. + McCray + L.J. + McCray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28148 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/cAHLfFhNfUZMsreE7UVZAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28148.png + small + + https://s.yimg.com/iu/api/res/1.2/cAHLfFhNfUZMsreE7UVZAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28148.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9306 + 9306 + + Jairus Byrd + Jairus + Byrd + Jairus + Byrd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9306 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/Hd9Tajw.rFDb8tgVsEQL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9306.png + small + + https://s.yimg.com/iu/api/res/1.2/Hd9Tajw.rFDb8tgVsEQL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9306.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31118 + 31118 + + Marcus Allen + Marcus + Allen + Marcus + Allen + + nfl.p.31118 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/k4yfKa5fDFQjjXHheZmQGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31118.png + small + + https://s.yimg.com/iu/api/res/1.2/k4yfKa5fDFQjjXHheZmQGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31118.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30663 + 30663 + + David Jones + David + Jones + David + Jones + + undisclosed + nfl.p.30663 + nfl.t.8 + Detroit Lions + Det + + 6 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/AZdW0HX5pqGlWPd0nBdCsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30663.png + small + + https://s.yimg.com/iu/api/res/1.2/AZdW0HX5pqGlWPd0nBdCsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30663.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24908 + 24908 + + Chris Prosinski + Chris + Prosinski + Chris + Prosinski + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24908 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/Id1lvVA7jrWt1h1xBWnt6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24908.png + small + + https://s.yimg.com/iu/api/res/1.2/Id1lvVA7jrWt1h1xBWnt6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24908.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31731 + 31731 + + Afolabi Laguda + Afolabi + Laguda + Afolabi + Laguda + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31731 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28585 + 28585 + + Derron Smith + Derron + Smith + Derron + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28585 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/XzhUO3RoMX_gfFhu5I61jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28585.png + small + + https://s.yimg.com/iu/api/res/1.2/XzhUO3RoMX_gfFhu5I61jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28585.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31367 + 31367 + + Chris Cooper + Chris + Cooper + Chris + Cooper + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31367 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/S8yz2GvHoyppye3p1Pd.2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31367.png + small + + https://s.yimg.com/iu/api/res/1.2/S8yz2GvHoyppye3p1Pd.2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31367.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31611 + 31611 + + Damon Webb + Damon + Webb + Damon + Webb + + nfl.p.31611 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29439 + 29439 + + Harlan Miller + Harlan + Miller + Harlan + Miller + + nfl.p.29439 + nfl.t.28 + Washington Redskins + Was + + 4 + + 48 + S + + https://s.yimg.com/iu/api/res/1.2/px3f0OOlp55NmJDM8n1y3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29439.png + small + + https://s.yimg.com/iu/api/res/1.2/px3f0OOlp55NmJDM8n1y3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29439.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29079 + 29079 + + Travell Dixon + Travell + Dixon + Travell + Dixon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29079 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/4.BoXEOZkjXzY58NG5OqhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29079.1.png + small + + https://s.yimg.com/iu/api/res/1.2/4.BoXEOZkjXzY58NG5OqhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29079.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28889 + 28889 + + Kurtis Drummond + Kurtis + Drummond + Kurtis + Drummond + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28889 + nfl.t.34 + Houston Texans + Hou + + 10 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/oVg_bmQhyMuNu3qmWHTtjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28889.png + small + + https://s.yimg.com/iu/api/res/1.2/oVg_bmQhyMuNu3qmWHTtjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/28889.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.24012 + 24012 + + Nate Allen + Nate + Allen + Nate + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24012 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/V9p.nrh.6ytDsMysII.Erg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/24012.png + small + + https://s.yimg.com/iu/api/res/1.2/V9p.nrh.6ytDsMysII.Erg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/24012.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28879 + 28879 + + Isaiah Johnson + Isaiah + Johnson + Isaiah + Johnson + + nfl.p.28879 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/A0Wae9o7KLg48kIz4.ZV6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28879.png + small + + https://s.yimg.com/iu/api/res/1.2/A0Wae9o7KLg48kIz4.ZV6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/28879.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 38 + 1 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31576 + 31576 + + Ryan Neal + Ryan + Neal + Ryan + Neal + + nfl.p.31576 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31585 + 31585 + + Stephen Roberts + Stephen + Roberts + Stephen + Roberts + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31585 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27629 + 27629 + + Jaylen Watkins + Jaylen + Watkins + Jaylen + Watkins + + IR + Injured Reserve + torn right ACL + nfl.p.27629 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/pkJdzfvDyYJ7H9kmKhu5UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27629.png + small + + https://s.yimg.com/iu/api/res/1.2/pkJdzfvDyYJ7H9kmKhu5UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27629.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30678 + 30678 + + Devin Chappell + Devin + Chappell + Devin + Chappell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30678 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29305 + 29305 + + Darian Thompson + Darian + Thompson + Darian + Thompson + + Q + Questionable + groin + nfl.p.29305 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/GmQdixgTP1NUI0jMhM_6iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29305.png + small + + https://s.yimg.com/iu/api/res/1.2/GmQdixgTP1NUI0jMhM_6iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29305.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31455 + 31455 + + Micah Hannemann + Micah + Hannemann + Micah + Hannemann + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31455 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26288 + 26288 + + Kelcie McCray + Kelcie + McCray + Kelcie + McCray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26288 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/V17AD4jfeKmyIRVfEWf3gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26288.png + small + + https://s.yimg.com/iu/api/res/1.2/V17AD4jfeKmyIRVfEWf3gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26288.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30404 + 30404 + + Charlie Miller + Charlie + Miller + Charlie + Miller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30404 + nfl.t.20 + New York Jets + NYJ + + 11 + + 47 + S + + https://s.yimg.com/iu/api/res/1.2/1R0npFwSbqnZdtpMdfkhCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30404.png + small + + https://s.yimg.com/iu/api/res/1.2/1R0npFwSbqnZdtpMdfkhCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30404.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30485 + 30485 + + Ironhead Gallon + Ironhead + Gallon + Ironhead + Gallon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30485 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/GwaVUzrIf6cVbj7ovb7rEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30485.png + small + + https://s.yimg.com/iu/api/res/1.2/GwaVUzrIf6cVbj7ovb7rEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30485.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30508 + 30508 + + Fish Smithson + Fish + Smithson + Fish + Smithson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30508 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/Mb9Tj.Jxrr5TUq0tUrhTpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30508.png + small + + https://s.yimg.com/iu/api/res/1.2/Mb9Tj.Jxrr5TUq0tUrhTpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30508.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27650 + 27650 + + Marqueston Huff + Marqueston + Huff + Marqueston + Huff + + undisclosed + nfl.p.27650 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/M.9pvWs4CCkzb3peg_5QbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27650.png + small + + https://s.yimg.com/iu/api/res/1.2/M.9pvWs4CCkzb3peg_5QbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27650.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29291 + 29291 + + T.J. Green + T.J. + Green + T.J. + Green + + O + Out + undisclosed + nfl.p.29291 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/Ajmv4960cj0O_qbnqy9NtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29291.png + small + + https://s.yimg.com/iu/api/res/1.2/Ajmv4960cj0O_qbnqy9NtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29291.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31664 + 31664 + + Nick Orr + Nick + Orr + Nick + Orr + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31664 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 46 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31259 + 31259 + + Josh Liddell + Josh + Liddell + Josh + Liddell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31259 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31381 + 31381 + + Trey Marshall + Trey + Marshall + Trey + Marshall + + nfl.p.31381 + nfl.t.7 + Denver Broncos + Den + + 10 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/LCR1E.W1yMXt_1vacI3FLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31381.png + small + + https://s.yimg.com/iu/api/res/1.2/LCR1E.W1yMXt_1vacI3FLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/31381.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31693 + 31693 + + Tyrice Beverette + Tyrice + Beverette + Tyrice + Beverette + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31693 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.6767 + 6767 + + DeAngelo Hall + DeAngelo + Hall + DeAngelo + Hall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6767 + nfl.t.28 + Washington Redskins + Was + + 4 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/23sr6BDpt2hT.ElhbFZuIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/6767.png + small + + https://s.yimg.com/iu/api/res/1.2/23sr6BDpt2hT.ElhbFZuIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/6767.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31360 + 31360 + + Secdrick Cooper + Secdrick + Cooper + Secdrick + Cooper + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31360 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/P.OK18dMUA1EH0ribkVfOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31360.png + small + + https://s.yimg.com/iu/api/res/1.2/P.OK18dMUA1EH0ribkVfOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31360.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24013 + 24013 + + T.J. Ward + T.J. + Ward + T.J. + Ward + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24013 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/MLFKrk8VYZ3Eel0xZ7u5qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/24013.png + small + + https://s.yimg.com/iu/api/res/1.2/MLFKrk8VYZ3Eel0xZ7u5qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/24013.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30460 + 30460 + + Quincy Mauger + Quincy + Mauger + Quincy + Mauger + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30460 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/95xrlrPCipNSln5DblLNdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30460.png + small + + https://s.yimg.com/iu/api/res/1.2/95xrlrPCipNSln5DblLNdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30460.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31116 + 31116 + + Tre Flowers + Tre + Flowers + Tre + Flowers + + hamstring + nfl.p.31116 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 37 + S,CB + + https://s.yimg.com/iu/api/res/1.2/J5bFuF7iJ0GhdfvmYdDXQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31116.png + small + + https://s.yimg.com/iu/api/res/1.2/J5bFuF7iJ0GhdfvmYdDXQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31116.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 55 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31124 + 31124 + + Siran Neal + Siran + Neal + Siran + Neal + + nfl.p.31124 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 29 + S,CB + + https://s.yimg.com/iu/api/res/1.2/uYJc_TruW8agS8I0o0cuLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31124.png + small + + https://s.yimg.com/iu/api/res/1.2/uYJc_TruW8agS8I0o0cuLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31124.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 10 + + + 39 + 1 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.23995 + 23995 + + Kareem Jackson + Kareem + Jackson + Kareem + Jackson + + nfl.p.23995 + nfl.t.34 + Houston Texans + Hou + + 10 + + 25 + S,CB + + https://s.yimg.com/iu/api/res/1.2/pcY8G4qQrlNaGavKf.OCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23995.png + small + + https://s.yimg.com/iu/api/res/1.2/pcY8G4qQrlNaGavKf.OCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23995.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 31 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 70 + + + 39 + 17 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 17 + + + 47 + 0 + + + 65 + 5 + + + 66 + 24 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29438 + 29438 + + Jordan Lucas + Jordan + Lucas + Jordan + Lucas + + nfl.p.29438 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 24 + S,CB + + https://s.yimg.com/iu/api/res/1.2/vVgwt4gzxwE369Lzj.FpIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29438.png + small + + https://s.yimg.com/iu/api/res/1.2/vVgwt4gzxwE369Lzj.FpIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29438.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 10 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 49 + + + 83 + 0 + + + + + + 380.p.29062 + 29062 + + Curtis Riley + Curtis + Riley + Curtis + Riley + + nfl.p.29062 + nfl.t.19 + New York Giants + NYG + + 9 + + 35 + S,CB + + https://s.yimg.com/iu/api/res/1.2/cyTC8s8AGWSqQnupPTdi8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29062.png + small + + https://s.yimg.com/iu/api/res/1.2/cyTC8s8AGWSqQnupPTdi8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29062.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 63 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 4 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 0 + + + 66 + 67 + + + 83 + 0 + + + + + + 380.p.29361 + 29361 + + Deiondre' Hall + Deiondre' + Hall + Deiondre' + Hall + + nfl.p.29361 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 36 + S,CB + + https://s.yimg.com/iu/api/res/1.2/XKPLEMEcmZNpAmHOMN1Bdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29361.png + small + + https://s.yimg.com/iu/api/res/1.2/XKPLEMEcmZNpAmHOMN1Bdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29361.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 3 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28415 + 28415 + + Byron Jones + Byron + Jones + Byron + Jones + + nfl.p.28415 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 31 + S,CB + + https://s.yimg.com/iu/api/res/1.2/IcF61NKmLV1sS8kV5OBugw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28415.png + small + + https://s.yimg.com/iu/api/res/1.2/IcF61NKmLV1sS8kV5OBugw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28415.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 56 + + + 39 + 11 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 14 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31055 + 31055 + + Rashaan Gaulden + Rashaan + Gaulden + Rashaan + Gaulden + + ankle + nfl.p.31055 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 28 + S,CB + + https://s.yimg.com/iu/api/res/1.2/RPQr1GRRDVzxnoYo_AQa3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31055.png + small + + https://s.yimg.com/iu/api/res/1.2/RPQr1GRRDVzxnoYo_AQa3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31055.png + 0 + DP + + S + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 12 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28987 + 28987 + + Brandon King + Brandon + King + Brandon + King + + knee + nfl.p.28987 + nfl.t.17 + New England Patriots + NE + + 11 + + 36 + LB,S + + https://s.yimg.com/iu/api/res/1.2/Bho0JcWLorqtrCSaiuAZqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28987.png + small + + https://s.yimg.com/iu/api/res/1.2/Bho0JcWLorqtrCSaiuAZqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28987.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 7 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31324 + 31324 + + Zeke Turner + Zeke + Turner + Zeke + Turner + + nfl.p.31324 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 47 + LB,S + + https://s.yimg.com/iu/api/res/1.2/fPeRph_n.QL8m7Y4ateWnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31324.1.png + small + + https://s.yimg.com/iu/api/res/1.2/fPeRph_n.QL8m7Y4ateWnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/31324.1.png + 0 + DP + + LB + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 13 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28801 + 28801 + + Jermaine Whitehead + Jermaine + Whitehead + Jermaine + Whitehead + + back + nfl.p.28801 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/.HO29kgLh4fQhtzlfTxzxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28801.png + small + + https://s.yimg.com/iu/api/res/1.2/.HO29kgLh4fQhtzlfTxzxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/28801.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 19 + + + 39 + 5 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26694 + 26694 + + T.J. McDonald + T.J. + McDonald + T.J. + McDonald + + Q + Questionable + ankle + nfl.p.26694 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/kS8tYrpxaPrgOFcxFcKkwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26694.png + small + + https://s.yimg.com/iu/api/res/1.2/kS8tYrpxaPrgOFcxFcKkwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26694.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 63 + + + 39 + 23 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 41 + + + 83 + 0 + + + + + + 380.p.25739 + 25739 + + Harrison Smith + Harrison + Smith + Harrison + Smith + + nfl.p.25739 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/ZA8Qo7TwVoRRpYWiOeeUpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25739.png + small + + https://s.yimg.com/iu/api/res/1.2/ZA8Qo7TwVoRRpYWiOeeUpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25739.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 63 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 67 + + + 39 + 17 + + + 40 + 3.0 + + + 41 + 3 + + + 42 + 1 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 9 + + + 66 + 66 + + + 83 + 0 + + + + + + 380.p.29514 + 29514 + + Jarrod Wilson + Jarrod + Wilson + Jarrod + Wilson + + nfl.p.29514 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/gW0MyA0aHXA3Oc2t8LLEWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29514.png + small + + https://s.yimg.com/iu/api/res/1.2/gW0MyA0aHXA3Oc2t8LLEWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29514.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 19 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31038 + 31038 + + Justin Reid + Justin + Reid + Justin + Reid + + Q + Questionable + nfl.p.31038 + nfl.t.34 + Houston Texans + Hou + + 10 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/E3k6UyWicJRfLX6G1hef0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31038.png + small + + https://s.yimg.com/iu/api/res/1.2/E3k6UyWicJRfLX6G1hef0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31038.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 70 + + + 39 + 18 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 1 + + + 43 + 2 + + + 44 + 1 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 2 + + + 66 + 129 + + + 83 + 0 + + + + + + 380.p.30155 + 30155 + + Marcus Williams + Marcus + Williams + Marcus + Williams + + nfl.p.30155 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/cAbr0SuiGjI6jl2jJIJA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30155.png + small + + https://s.yimg.com/iu/api/res/1.2/cAbr0SuiGjI6jl2jJIJA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30155.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 49 + + + 39 + 10 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 100 + + + 83 + 0 + + + + + + 380.p.26707 + 26707 + + Shawn Williams + Shawn + Williams + Shawn + Williams + + nfl.p.26707 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/3tDbR_ZK40fqafzr6_Tpag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/26707.png + small + + https://s.yimg.com/iu/api/res/1.2/3tDbR_ZK40fqafzr6_Tpag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/26707.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 24 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 81 + + + 39 + 29 + + + 40 + 1.0 + + + 41 + 5 + + + 42 + 1 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 2 + + + 66 + 131 + + + 83 + 0 + + + + + + 380.p.30299 + 30299 + + Chuck Clark + Chuck + Clark + Chuck + Clark + + nfl.p.30299 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/EK6T.OFvTaj_Y3agf.5XGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30299.png + small + + https://s.yimg.com/iu/api/res/1.2/EK6T.OFvTaj_Y3agf.5XGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/30299.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 5 + + + 83 + 0 + + + + + + 380.p.24677 + 24677 + + Anthony Levine Sr. + Anthony + Levine Sr. + Anthony + Levine Sr. + + toe, ankle + nfl.p.24677 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/S5zuWV0_Wqa4cTybNkUU5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/24677.png + small + + https://s.yimg.com/iu/api/res/1.2/S5zuWV0_Wqa4cTybNkUU5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292018/24677.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 23 + + + 39 + 5 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 1 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.29363 + 29363 + + Derrick Kindred + Derrick + Kindred + Derrick + Kindred + + nfl.p.29363 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/y1lyEG7DapfJaeY7rpQwoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29363.png + small + + https://s.yimg.com/iu/api/res/1.2/y1lyEG7DapfJaeY7rpQwoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29363.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 33 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + -2 + + + 83 + 0 + + + + + + 380.p.29224 + 29224 + + Erik Harris + Erik + Harris + Erik + Harris + + nfl.p.29224 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/eEbtnF3.biP9tMrAcseS8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29224.png + small + + https://s.yimg.com/iu/api/res/1.2/eEbtnF3.biP9tMrAcseS8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/29224.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 36 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 2 + + + 66 + 22 + + + 83 + 0 + + + + + + 380.p.31065 + 31065 + + Tarvarius Moore + Tarvarius + Moore + Tarvarius + Moore + + Q + Questionable + shoulder + nfl.p.31065 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/wg_ih6mbp1aSQ5XfDq7lng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31065.png + small + + https://s.yimg.com/iu/api/res/1.2/wg_ih6mbp1aSQ5XfDq7lng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31065.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 20 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24139 + 24139 + + Reshad Jones + Reshad + Jones + Reshad + Jones + + Q + Questionable + shoulder + nfl.p.24139 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/SdVzlHbqYzbzZyWMSNsgdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24139.png + small + + https://s.yimg.com/iu/api/res/1.2/SdVzlHbqYzbzZyWMSNsgdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/24139.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 20 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 57 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 4 + + + 66 + 109 + + + 83 + 0 + + + + + + 380.p.28838 + 28838 + + Anthony Harris + Anthony + Harris + Anthony + Harris + + hamstring + nfl.p.28838 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/2hhcbIcSggeAbS80nvLmhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28838.png + small + + https://s.yimg.com/iu/api/res/1.2/2hhcbIcSggeAbS80nvLmhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28838.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 34 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 0 + + + 66 + 33 + + + 83 + 0 + + + + + + 380.p.26703 + 26703 + + J.J. Wilcox + J.J. + Wilcox + J.J. + Wilcox + + ankle + nfl.p.26703 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/EGVbwxbFNgNuuO0JOiUlZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26703.png + small + + https://s.yimg.com/iu/api/res/1.2/EGVbwxbFNgNuuO0JOiUlZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26703.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 6 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29720 + 29720 + + Kentrell Brice + Kentrell + Brice + Kentrell + Brice + + ankle, not injury related + nfl.p.29720 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/ijOxOU_gu6Uu826IfFF_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29720.png + small + + https://s.yimg.com/iu/api/res/1.2/ijOxOU_gu6Uu826IfFF_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29720.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 39 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29292 + 29292 + + Sean Davis + Sean + Davis + Sean + Davis + + Q + Questionable + quadriceps + nfl.p.29292 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/nzYY9ZkMsBksqpVs.v_Ctw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29292.png + small + + https://s.yimg.com/iu/api/res/1.2/nzYY9ZkMsBksqpVs.v_Ctw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29292.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 59 + + + 39 + 21 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 0 + + + 66 + 27 + + + 83 + 0 + + + + + + 380.p.30987 + 30987 + + Derwin James + Derwin + James + Derwin + James + + nfl.p.30987 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/5jmzC6TvOgR405uBJham6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30987.png + small + + https://s.yimg.com/iu/api/res/1.2/5jmzC6TvOgR405uBJham6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30987.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 56 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 75 + + + 39 + 30 + + + 40 + 3.5 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 13 + + + 47 + 0 + + + 65 + 4 + + + 66 + 30 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28785 + 28785 + + Deshazor Everett + Deshazor + Everett + Deshazor + Everett + + nfl.p.28785 + nfl.t.28 + Washington Redskins + Was + + 4 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/A1a.TzEqmqb2XdmxhAyE2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28785.png + small + + https://s.yimg.com/iu/api/res/1.2/A1a.TzEqmqb2XdmxhAyE2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28785.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 17 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 24 + + + 83 + 0 + + + + + + 380.p.29453 + 29453 + + Will Parks + Will + Parks + Will + Parks + + nfl.p.29453 + nfl.t.7 + Denver Broncos + Den + + 10 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/ge2AhQsV0lIRYzsF5jhHaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29453.png + small + + https://s.yimg.com/iu/api/res/1.2/ge2AhQsV0lIRYzsF5jhHaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29453.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 25 + + + 39 + 16 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 11 + + + 83 + 0 + + + + + + 380.p.30998 + 30998 + + Terrell Edmunds + Terrell + Edmunds + Terrell + Edmunds + + nfl.p.30998 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/h5oCA1.aVFJ8W6LHTNu6iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30998.png + small + + https://s.yimg.com/iu/api/res/1.2/h5oCA1.aVFJ8W6LHTNu6iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30998.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 55 + + + 39 + 23 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 1 + + + 66 + 35 + + + 83 + 0 + + + + + + 380.p.30262 + 30262 + + Damontae Kazee + Damontae + Kazee + Damontae + Kazee + + nfl.p.30262 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/lkE7EUmBIZzwpo0TUiTGKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30262.png + small + + https://s.yimg.com/iu/api/res/1.2/lkE7EUmBIZzwpo0TUiTGKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30262.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 15 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 60 + + + 39 + 22 + + + 40 + 0.0 + + + 41 + 7 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 1 + + + 66 + 54 + + + 83 + 0 + + + + + + 380.p.24759 + 24759 + + Andrew Sendejo + Andrew + Sendejo + Andrew + Sendejo + + IR + Injured Reserve + groin + nfl.p.24759 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/yDPjw.vHcnT4hhulY9R2sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24759.png + small + + https://s.yimg.com/iu/api/res/1.2/yDPjw.vHcnT4hhulY9R2sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24759.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 21 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28036 + 28036 + + Daniel Sorensen + Daniel + Sorensen + Daniel + Sorensen + + knee + nfl.p.28036 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 49 + S + + https://s.yimg.com/iu/api/res/1.2/mGlc8q68_hCqDmuhNj9J2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28036.png + small + + https://s.yimg.com/iu/api/res/1.2/mGlc8q68_hCqDmuhNj9J2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/28036.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 14 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 54 + + + 83 + 0 + + + + + + 380.p.28153 + 28153 + + Kenny Ladler + Kenny + Ladler + Kenny + Ladler + + nfl.p.28153 + nfl.t.19 + New York Giants + NYG + + 9 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/jzW47Upozua1KZs2f5ZW3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28153.png + small + + https://s.yimg.com/iu/api/res/1.2/jzW47Upozua1KZs2f5ZW3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28153.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 4 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30149 + 30149 + + Budda Baker + Budda + Baker + Budda + Baker + + knee + nfl.p.30149 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/m9zLUFuoZFnGiH83UQoM6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30149.png + small + + https://s.yimg.com/iu/api/res/1.2/m9zLUFuoZFnGiH83UQoM6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30149.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 19 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 78 + + + 39 + 24 + + + 40 + 2.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 2 + + + 44 + 1 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 8 + + + 66 + 34 + + + 83 + 0 + + + + + + 380.p.30224 + 30224 + + Tedric Thompson + Tedric + Thompson + Tedric + Thompson + + ankle + nfl.p.30224 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/0hty7kLEwxcxsjPzEFf30A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30224.png + small + + https://s.yimg.com/iu/api/res/1.2/0hty7kLEwxcxsjPzEFf30A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30224.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 41 + + + 39 + 16 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31548 + 31548 + + Sean Chandler + Sean + Chandler + Sean + Chandler + + nfl.p.31548 + nfl.t.19 + New York Giants + NYG + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 16 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29781 + 29781 + + Charles Washington + Charles + Washington + Charles + Washington + + IR + Injured Reserve + hamstring + nfl.p.29781 + nfl.t.8 + Detroit Lions + Det + + 6 + + 45 + S + + https://s.yimg.com/iu/api/res/1.2/0tcXOeBz10xVdYkEPs1ibQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29781.png + small + + https://s.yimg.com/iu/api/res/1.2/0tcXOeBz10xVdYkEPs1ibQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/29781.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 5 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26680 + 26680 + + D.J. Swearinger Sr. + D.J. + Swearinger Sr. + D.J. + Swearinger Sr. + + nfl.p.26680 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/iu8LKZWzTssaWWGDeLVC5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26680.png + small + + https://s.yimg.com/iu/api/res/1.2/iu8LKZWzTssaWWGDeLVC5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/26680.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 26 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 42 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 4 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 0 + + + 66 + 33 + + + 83 + 0 + + + + + + 380.p.27558 + 27558 + + Jimmie Ward + Jimmie + Ward + Jimmie + Ward + + IR + Injured Reserve + broken forearm + nfl.p.27558 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/ax44m7fRpi_EUHoPPZfl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27558.png + small + + https://s.yimg.com/iu/api/res/1.2/ax44m7fRpi_EUHoPPZfl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27558.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 19 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30825 + 30825 + + Dymonte Thomas + Dymonte + Thomas + Dymonte + Thomas + + ankle + nfl.p.30825 + nfl.t.7 + Denver Broncos + Den + + 10 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/ecgpWdv66h45x1MAzPIyrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30825.png + small + + https://s.yimg.com/iu/api/res/1.2/ecgpWdv66h45x1MAzPIyrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30825.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 8 + + + 39 + 4 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26734 + 26734 + + Shamarko Thomas + Shamarko + Thomas + Shamarko + Thomas + + nfl.p.26734 + nfl.t.7 + Denver Broncos + Den + + 10 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/nx6Xf2DXOZLfFpd640wDCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26734.png + small + + https://s.yimg.com/iu/api/res/1.2/nx6Xf2DXOZLfFpd640wDCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26734.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 5 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28434 + 28434 + + Jaquiski Tartt + Jaquiski + Tartt + Jaquiski + Tartt + + IR + Injured Reserve + shoulder + nfl.p.28434 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/Q7W_eV_N6FGRfZWFflb.lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28434.png + small + + https://s.yimg.com/iu/api/res/1.2/Q7W_eV_N6FGRfZWFflb.lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/28434.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 32 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 4 + + + 66 + 23 + + + 83 + 0 + + + + + + 380.p.26372 + 26372 + + Tashaun Gipson + Tashaun + Gipson + Tashaun + Gipson + + ankle + nfl.p.26372 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/C6d09v0gq6GCXu2JP.LNEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/26372.png + small + + https://s.yimg.com/iu/api/res/1.2/C6d09v0gq6GCXu2JP.LNEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/26372.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 44 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 1 + + + 66 + 8 + + + 83 + 0 + + + + + + 380.p.25090 + 25090 + + Ron Parker + Ron + Parker + Ron + Parker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25090 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/Ye_l8imspHuH0Eu3BSmbOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25090.1.png + small + + https://s.yimg.com/iu/api/res/1.2/Ye_l8imspHuH0Eu3BSmbOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25090.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 64 + + + 39 + 13 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 33 + + + 83 + 0 + + + + + + 380.p.9311 + 9311 + + Mike Mitchell + Mike + Mitchell + Mike + Mitchell + + IR + Injured Reserve + calf + nfl.p.9311 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 34 + S + + https://s.yimg.com/iu/api/res/1.2/b63zpUCEjyNmcB2cm28QLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9311.png + small + + https://s.yimg.com/iu/api/res/1.2/b63zpUCEjyNmcB2cm28QLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9311.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 22 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 2 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 47 + + + 83 + 0 + + + + + + 380.p.31154 + 31154 + + Marcell Harris + Marcell + Harris + Marcell + Harris + + Achilles + nfl.p.31154 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/tSul6.YWaPadwvYYD3O0uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31154.png + small + + https://s.yimg.com/iu/api/res/1.2/tSul6.YWaPadwvYYD3O0uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31154.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 24 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7121 + 7121 + + Mike Adams + Mike + Adams + Mike + Adams + + nfl.p.7121 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/KqFVzWLcSmq7ZD0wYAVzbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7121.png + small + + https://s.yimg.com/iu/api/res/1.2/KqFVzWLcSmq7ZD0wYAVzbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7121.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 47 + + + 39 + 28 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 3 + + + 66 + 11 + + + 83 + 0 + + + + + + 380.p.29446 + 29446 + + Kavon Frazier + Kavon + Frazier + Kavon + Frazier + + nfl.p.29446 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/UREetx7JbW2.yJ0HyP21MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29446.png + small + + https://s.yimg.com/iu/api/res/1.2/UREetx7JbW2.yJ0HyP21MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29446.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 15 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30163 + 30163 + + Justin Evans + Justin + Evans + Justin + Evans + + IR + Injured Reserve + toe + nfl.p.30163 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/DZTnVKAEUBXKs2EFwOn3Sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30163.png + small + + https://s.yimg.com/iu/api/res/1.2/DZTnVKAEUBXKs2EFwOn3Sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30163.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 43 + + + 39 + 16 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 34 + + + 83 + 0 + + + + + + 380.p.31052 + 31052 + + Tracy Walker + Tracy + Walker + Tracy + Walker + + nfl.p.31052 + nfl.t.8 + Detroit Lions + Det + + 6 + + 47 + S + + https://s.yimg.com/iu/api/res/1.2/ZmMsfngpLdTDpGKo6ARSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31052.png + small + + https://s.yimg.com/iu/api/res/1.2/ZmMsfngpLdTDpGKo6ARSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31052.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 18 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26782 + 26782 + + Micah Hyde + Micah + Hyde + Micah + Hyde + + nfl.p.26782 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/L69TRYUMNbQf0O33eheaDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26782.png + small + + https://s.yimg.com/iu/api/res/1.2/L69TRYUMNbQf0O33eheaDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26782.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 41 + + + 39 + 17 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 25 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29086 + 29086 + + Corey Moore + Corey + Moore + Corey + Moore + + nfl.p.29086 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/g.GPKQsQqLqEJAvC7QS5.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29086.png + small + + https://s.yimg.com/iu/api/res/1.2/g.GPKQsQqLqEJAvC7QS5.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29086.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 7 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27744 + 27744 + + Andre Hal + Andre + Hal + Andre + Hal + + ankle + nfl.p.27744 + nfl.t.34 + Houston Texans + Hou + + 10 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/LRoiL3cAAYNze_vfUBe3MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27744.png + small + + https://s.yimg.com/iu/api/res/1.2/LRoiL3cAAYNze_vfUBe3MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/27744.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 38 + 6 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 0 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.9278 + 9278 + + Malcolm Jenkins + Malcolm + Jenkins + Malcolm + Jenkins + + nfl.p.9278 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/wADObqYJt4LSbJHb99ss6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9278.png + small + + https://s.yimg.com/iu/api/res/1.2/wADObqYJt4LSbJHb99ss6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9278.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 16 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 79 + + + 39 + 18 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 6 + + + 66 + 36 + + + 83 + 0 + + + + + + 380.p.27607 + 27607 + + Terrence Brooks + Terrence + Brooks + Terrence + Brooks + + nfl.p.27607 + nfl.t.20 + New York Jets + NYJ + + 11 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/ksrMaCiDIdibxjA23PjTdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27607.png + small + + https://s.yimg.com/iu/api/res/1.2/ksrMaCiDIdibxjA23PjTdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/27607.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 9 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24259 + 24259 + + Rafael Bush + Rafael + Bush + Rafael + Bush + + shoulder + nfl.p.24259 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/t2eAsuRtwyXq3.GaAM5IQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/24259.png + small + + https://s.yimg.com/iu/api/res/1.2/t2eAsuRtwyXq3.GaAM5IQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/24259.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 30 + + + 39 + 15 + + + 40 + 1.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31652 + 31652 + + A.J. Moore + A.J. + Moore + A.J. + Moore + + nfl.p.31652 + nfl.t.34 + Houston Texans + Hou + + 10 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27180 + 27180 + + Bradley McDougald + Bradley + McDougald + Bradley + McDougald + + knee + nfl.p.27180 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/ZInmZY5qcmnP_gxpy9frbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27180.png + small + + https://s.yimg.com/iu/api/res/1.2/ZInmZY5qcmnP_gxpy9frbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27180.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 18 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 66 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 4 + + + 66 + 39 + + + 83 + 0 + + + + + + 380.p.28530 + 28530 + + Adrian Amos Jr. + Adrian + Amos Jr. + Adrian + Amos Jr. + + nfl.p.28530 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/ltvRgr1JBylOJzvLPnzgwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28530.png + small + + https://s.yimg.com/iu/api/res/1.2/ltvRgr1JBylOJzvLPnzgwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/28530.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 59 + + + 39 + 14 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 2 + + + 66 + 42 + + + 83 + 0 + + + + + + 380.p.30174 + 30174 + + Josh Jones + Josh + Jones + Josh + Jones + + ankle + nfl.p.30174 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/sG9u3nyTiPkagvYxObM34w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30174.png + small + + https://s.yimg.com/iu/api/res/1.2/sG9u3nyTiPkagvYxObM34w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30174.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 40 + + + 39 + 15 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30334 + 30334 + + Shalom Luani + Shalom + Luani + Shalom + Luani + + quadriceps + nfl.p.30334 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/NaXfFOd5GykHVSkDA64Icg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30334.png + small + + https://s.yimg.com/iu/api/res/1.2/NaXfFOd5GykHVSkDA64Icg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/30334.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 7 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28497 + 28497 + + Clayton Geathers + Clayton + Geathers + Clayton + Geathers + + knee + nfl.p.28497 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/XZOInveYlGNVPS.8gUgQIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28497.png + small + + https://s.yimg.com/iu/api/res/1.2/XZOInveYlGNVPS.8gUgQIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28497.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 61 + + + 39 + 28 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30321 + 30321 + + Rudy Ford + Rudy + Ford + Rudy + Ford + + ribs + nfl.p.30321 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/z2eBoPinXESBiGRP.9GknQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30321.1.png + small + + https://s.yimg.com/iu/api/res/1.2/z2eBoPinXESBiGRP.9GknQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30321.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 7 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26866 + 26866 + + Kemal Ishmael + Kemal + Ishmael + Kemal + Ishmael + + nfl.p.26866 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/YKTfvGu5fho6RPfkHSjsdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26866.png + small + + https://s.yimg.com/iu/api/res/1.2/YKTfvGu5fho6RPfkHSjsdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26866.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 11 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8422 + 8422 + + Corey Graham + Corey + Graham + Corey + Graham + + hamstring + nfl.p.8422 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/WsF01Xmmba_0bNgu38aKYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8422.1.png + small + + https://s.yimg.com/iu/api/res/1.2/WsF01Xmmba_0bNgu38aKYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8422.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + -1 + + + season + 2018 + + + 0 + 13 + + + 38 + 43 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 45 + + + 83 + 0 + + + + + + 380.p.24046 + 24046 + + Morgan Burnett + Morgan + Burnett + Morgan + Burnett + + back + nfl.p.24046 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/_D755vC5mNLOQC8qbI38MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/24046.png + small + + https://s.yimg.com/iu/api/res/1.2/_D755vC5mNLOQC8qbI38MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/24046.png + 0 + DP + + S + + 1 + 1547932560 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 17 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29248 + 29248 + + Karl Joseph + Karl + Joseph + Karl + Joseph + + hamstring + nfl.p.29248 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/eCZDiQ7eW7oYgyJAmILyvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29248.png + small + + https://s.yimg.com/iu/api/res/1.2/eCZDiQ7eW7oYgyJAmILyvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29248.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 34 + + + 39 + 14 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 2 + + + 66 + 5 + + + 83 + 0 + + + + + + 380.p.29286 + 29286 + + Su'a Cravens + Su'a + Cravens + Su'a + Cravens + + knee + nfl.p.29286 + nfl.t.7 + Denver Broncos + Den + + 10 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/xDoOpVH83jjxQobNkWfIhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/29286.png + small + + https://s.yimg.com/iu/api/res/1.2/xDoOpVH83jjxQobNkWfIhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/29286.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 11 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28421 + 28421 + + Landon Collins + Landon + Collins + Landon + Collins + + IR + Injured Reserve + partially-torn rotator cuff + nfl.p.28421 + nfl.t.19 + New York Giants + NYG + + 9 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/OZSR66k8JCaO3Vb.N2bchw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28421.png + small + + https://s.yimg.com/iu/api/res/1.2/OZSR66k8JCaO3Vb.N2bchw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28421.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 15 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 67 + + + 39 + 29 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27638 + 27638 + + Maurice Alexander + Maurice + Alexander + Maurice + Alexander + + concussion + nfl.p.27638 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/XT1ulS0CAapn66e.V_CYeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27638.png + small + + https://s.yimg.com/iu/api/res/1.2/XT1ulS0CAapn66e.V_CYeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27638.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 38 + 9 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30152 + 30152 + + Marcus Maye + Marcus + Maye + Marcus + Maye + + IR + Injured Reserve + shoulder, thumb + nfl.p.30152 + nfl.t.20 + New York Jets + NYJ + + 11 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/RqK0JU2GSRDcl_wFe117tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30152.png + small + + https://s.yimg.com/iu/api/res/1.2/RqK0JU2GSRDcl_wFe117tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/30152.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 30 + + + 39 + 4 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 104 + + + 83 + 0 + + + + + + 380.p.31087 + 31087 + + Jordan Whitehead + Jordan + Whitehead + Jordan + Whitehead + + concussion + nfl.p.31087 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/QeFfnzN31vf358E361Vhqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31087.png + small + + https://s.yimg.com/iu/api/res/1.2/QeFfnzN31vf358E361Vhqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31087.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 61 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28503 + 28503 + + Ibraheim Campbell + Ibraheim + Campbell + Ibraheim + Campbell + + IR + Injured Reserve + undisclosed + nfl.p.28503 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/VNt.LAT_LbYpbt6LOlX8Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28503.png + small + + https://s.yimg.com/iu/api/res/1.2/VNt.LAT_LbYpbt6LOlX8Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28503.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 16 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26265 + 26265 + + Michael Thomas + Michael + Thomas + Michael + Thomas + + nfl.p.26265 + nfl.t.19 + New York Giants + NYG + + 9 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/S2QG8EXHn.4e2_ezOJHTDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26265.png + small + + https://s.yimg.com/iu/api/res/1.2/S2QG8EXHn.4e2_ezOJHTDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26265.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 41 + + + 39 + 18 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 2 + + + 66 + 26 + + + 83 + 0 + + + + + + 380.p.24112 + 24112 + + Kendrick Lewis + Kendrick + Lewis + Kendrick + Lewis + + foot + nfl.p.24112 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 28 + S + + https://s.yimg.com/iu/api/res/1.2/EE627cbmfqEmpma4beaIEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24112.png + small + + https://s.yimg.com/iu/api/res/1.2/EE627cbmfqEmpma4beaIEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24112.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 20 + + + 39 + 7 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30226 + 30226 + + Rayshawn Jenkins + Rayshawn + Jenkins + Rayshawn + Jenkins + + nfl.p.30226 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/w5u2jgL9UO7p2A5oCTZqpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30226.png + small + + https://s.yimg.com/iu/api/res/1.2/w5u2jgL9UO7p2A5oCTZqpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30226.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 13 + + + 39 + 10 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30119 + 30119 + + Jamal Adams + Jamal + Adams + Jamal + Adams + + nfl.p.30119 + nfl.t.20 + New York Jets + NYJ + + 11 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/jL6qZbxH3ekH80M.olGbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30119.png + small + + https://s.yimg.com/iu/api/res/1.2/jL6qZbxH3ekH80M.olGbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30119.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 42 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 86 + + + 39 + 29 + + + 40 + 3.5 + + + 41 + 1 + + + 42 + 3 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 12 + + + 47 + 0 + + + 65 + 9 + + + 66 + 43 + + + 83 + 0 + + + + + + 380.p.29345 + 29345 + + Miles Killebrew + Miles + Killebrew + Miles + Killebrew + + nfl.p.29345 + nfl.t.8 + Detroit Lions + Det + + 6 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/rF.UC8WYfNIVN0t5ic.DBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29345.png + small + + https://s.yimg.com/iu/api/res/1.2/rF.UC8WYfNIVN0t5ic.DBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29345.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 5 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26638 + 26638 + + Kenny Vaccaro + Kenny + Vaccaro + Kenny + Vaccaro + + elbow + nfl.p.26638 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/OB28ivj6qcGqMrvLTE2Xzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/26638.png + small + + https://s.yimg.com/iu/api/res/1.2/OB28ivj6qcGqMrvLTE2Xzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/26638.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 41 + + + 39 + 17 + + + 40 + 2.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27081 + 27081 + + Tony Jefferson + Tony + Jefferson + Tony + Jefferson + + ankle + nfl.p.27081 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/Rc5UzfkIQltfOnSsWwQhfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27081.png + small + + https://s.yimg.com/iu/api/res/1.2/Rc5UzfkIQltfOnSsWwQhfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27081.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 53 + + + 39 + 21 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 6 + + + 66 + 15 + + + 83 + 0 + + + + + + 380.p.26484 + 26484 + + Eddie Pleasant + Eddie + Pleasant + Eddie + Pleasant + + nfl.p.26484 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/SuqVtwiL.lnekLQ2oMHDow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26484.1.png + small + + https://s.yimg.com/iu/api/res/1.2/SuqVtwiL.lnekLQ2oMHDow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26484.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 5 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24603 + 24603 + + Barry Church + Barry + Church + Barry + Church + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24603 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/fz.lwO.xmhfZbPlwBc7Syw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/24603.png + small + + https://s.yimg.com/iu/api/res/1.2/fz.lwO.xmhfZbPlwBc7Syw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/24603.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 32 + + + 39 + 6 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 3 + + + 66 + 11 + + + 83 + 0 + + + + + + 380.p.26641 + 26641 + + Eric Reid + Eric + Reid + Eric + Reid + + shoulder + nfl.p.26641 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/q1Ki8rJNQTsilDSYDlNAJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26641.png + small + + https://s.yimg.com/iu/api/res/1.2/q1Ki8rJNQTsilDSYDlNAJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26641.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 50 + + + 39 + 21 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 3 + + + 66 + 39 + + + 83 + 0 + + + + + + 380.p.29419 + 29419 + + DeAndre Houston-Carson + DeAndre + Houston-Carson + DeAndre + Houston-Carson + + ribs + nfl.p.29419 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/8zAQhBzADdVFzTtPli7Dvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29419.png + small + + https://s.yimg.com/iu/api/res/1.2/8zAQhBzADdVFzTtPli7Dvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29419.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 8 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9298 + 9298 + + Patrick Chung + Patrick + Chung + Patrick + Chung + + concussion + nfl.p.9298 + nfl.t.17 + New England Patriots + NE + + 11 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/h6zBojQU1YJSYF6XRjoPRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9298.png + small + + https://s.yimg.com/iu/api/res/1.2/h6zBojQU1YJSYF6XRjoPRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9298.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 52 + + + 39 + 32 + + + 40 + 0.5 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.29577 + 29577 + + Isaiah Johnson + Isaiah + Johnson + Isaiah + Johnson + + Q + Questionable + concussion + nfl.p.29577 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/Wo_91YkI8WOyU2h4wgRt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29577.png + small + + https://s.yimg.com/iu/api/res/1.2/Wo_91YkI8WOyU2h4wgRt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29577.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 40 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 6 + + + 83 + 0 + + + + + + 380.p.31094 + 31094 + + Armani Watts + Armani + Watts + Armani + Watts + + IR + Injured Reserve + groin + nfl.p.31094 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/8tF9zEZ9KtTNPbXru5VKdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31094.png + small + + https://s.yimg.com/iu/api/res/1.2/8tF9zEZ9KtTNPbXru5VKdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31094.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 3 + + + 39 + 2 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26692 + 26692 + + Tyrann Mathieu + Tyrann + Mathieu + Tyrann + Mathieu + + nfl.p.26692 + nfl.t.34 + Houston Texans + Hou + + 10 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/gm7Y.sNLq3SZPc13sxfrvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26692.png + small + + https://s.yimg.com/iu/api/res/1.2/gm7Y.sNLq3SZPc13sxfrvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26692.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 46 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 70 + + + 39 + 19 + + + 40 + 3.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 8 + + + 47 + 0 + + + 65 + 5 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.29295 + 29295 + + Vonn Bell + Vonn + Bell + Vonn + Bell + + nfl.p.29295 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 24 + S + + https://s.yimg.com/iu/api/res/1.2/6yvbVWF9ez5ZOXGLinsA8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29295.png + small + + https://s.yimg.com/iu/api/res/1.2/6yvbVWF9ez5ZOXGLinsA8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29295.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 63 + + + 39 + 26 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30304 + 30304 + + Xavier Woods + Xavier + Woods + Xavier + Woods + + hamstring + nfl.p.30304 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 25 + S + + https://s.yimg.com/iu/api/res/1.2/TvHAiMdEQUzdSwD8aApxkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30304.png + small + + https://s.yimg.com/iu/api/res/1.2/TvHAiMdEQUzdSwD8aApxkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30304.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 39 + + + 39 + 17 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 0 + + + 66 + 15 + + + 83 + 0 + + + + + + 380.p.24837 + 24837 + + Marcus Gilchrist + Marcus + Gilchrist + Marcus + Gilchrist + + nfl.p.24837 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/OqpjHm9ONqgW071e7lAezA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24837.png + small + + https://s.yimg.com/iu/api/res/1.2/OqpjHm9ONqgW071e7lAezA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24837.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 40 + + + 39 + 18 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 0 + + + 66 + 2 + + + 83 + 0 + + + + + + 380.p.25877 + 25877 + + George Iloka + George + Iloka + George + Iloka + + nfl.p.25877 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 23 + S + + https://s.yimg.com/iu/api/res/1.2/Ipi5h5PZn7ZfKCbEz2BNAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25877.png + small + + https://s.yimg.com/iu/api/res/1.2/Ipi5h5PZn7ZfKCbEz2BNAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25877.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 14 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27269 + 27269 + + Brynden Trawick + Brynden + Trawick + Brynden + Trawick + + nfl.p.27269 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/23uUWMd1gb0lylmhL12X5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27269.png + small + + https://s.yimg.com/iu/api/res/1.2/23uUWMd1gb0lylmhL12X5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27269.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 7 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30236 + 30236 + + Montae Nicholson + Montae + Nicholson + Montae + Nicholson + + O + Out + concussion + nfl.p.30236 + nfl.t.28 + Washington Redskins + Was + + 4 + + 35 + S + + https://s.yimg.com/iu/api/res/1.2/Uw1sKxl0jPdiYCHF_TA6cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30236.png + small + + https://s.yimg.com/iu/api/res/1.2/Uw1sKxl0jPdiYCHF_TA6cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30236.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 29 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27000 + 27000 + + Jordan Dangerfield + Jordan + Dangerfield + Jordan + Dangerfield + + nfl.p.27000 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/w8PfiJJbgPqxnCbXcoU1wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27000.png + small + + https://s.yimg.com/iu/api/res/1.2/w8PfiJJbgPqxnCbXcoU1wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/27000.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 6 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29574 + 29574 + + Matthias Farley + Matthias + Farley + Matthias + Farley + + IR + Injured Reserve + shoulder, groin, wirst + nfl.p.29574 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/YRte2_FVp1qQFdOa.VyXUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29574.png + small + + https://s.yimg.com/iu/api/res/1.2/YRte2_FVp1qQFdOa.VyXUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29574.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 11 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 7 + + + 83 + 0 + + + + + + 380.p.29478 + 29478 + + Jayron Kearse + Jayron + Kearse + Jayron + Kearse + + nfl.p.29478 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/1XFi7ZTPO6DzuONBCg6C2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29478.png + small + + https://s.yimg.com/iu/api/res/1.2/1XFi7ZTPO6DzuONBCg6C2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29478.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 27 + + + 39 + 5 + + + 40 + 0.5 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29358 + 29358 + + Deon Bush + Deon + Bush + Deon + Bush + + hamstring + nfl.p.29358 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/NuyRkny0KU6zbI9BuxBTFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29358.png + small + + https://s.yimg.com/iu/api/res/1.2/NuyRkny0KU6zbI9BuxBTFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29358.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 8 + + + 39 + 0 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.24002 + 24002 + + Devin McCourty + Devin + McCourty + Devin + McCourty + + nfl.p.24002 + nfl.t.17 + New England Patriots + NE + + 11 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/Uy0ugS_68v5UHevux2AL6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/24002.png + small + + https://s.yimg.com/iu/api/res/1.2/Uy0ugS_68v5UHevux2AL6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/24002.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 12 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 59 + + + 39 + 23 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 2 + + + 44 + 1 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 1 + + + 66 + 98 + + + 83 + 0 + + + + + + 380.p.27105 + 27105 + + Cody Davis + Cody + Davis + Cody + Davis + + hamstring + nfl.p.27105 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/3mlQ3qcAx1KHAyROj6J2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27105.png + small + + https://s.yimg.com/iu/api/res/1.2/3mlQ3qcAx1KHAyROj6J2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27105.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 5 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8291 + 8291 + + Eric Weddle + Eric + Weddle + Eric + Weddle + + nfl.p.8291 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 32 + S + + https://s.yimg.com/iu/api/res/1.2/wXLbKuj5Y2r61r_b5w2XJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8291.png + small + + https://s.yimg.com/iu/api/res/1.2/wXLbKuj5Y2r61r_b5w2XJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/8291.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 54 + + + 39 + 14 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27569 + 27569 + + Lamarcus Joyner + Lamarcus + Joyner + Lamarcus + Joyner + + ankle + nfl.p.27569 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/3SIFG7kCpGTMnjezwhtwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27569.png + small + + https://s.yimg.com/iu/api/res/1.2/3SIFG7kCpGTMnjezwhtwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27569.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 6 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 58 + + + 39 + 20 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 3 + + + 66 + 5 + + + 83 + 0 + + + + + + 380.p.31063 + 31063 + + Ronnie Harrison + Ronnie + Harrison + Ronnie + Harrison + + IR + Injured Reserve + knee + nfl.p.31063 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/bSetFbvHnOmUENzYZaz7lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31063.png + small + + https://s.yimg.com/iu/api/res/1.2/bSetFbvHnOmUENzYZaz7lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31063.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 24 + + + 39 + 8 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 3 + + + 66 + 14 + + + 83 + 0 + + + + + + 380.p.25907 + 25907 + + Nate Ebner + Nate + Ebner + Nate + Ebner + + knee + nfl.p.25907 + nfl.t.17 + New England Patriots + NE + + 11 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/Os6RMd3zX4c9B0opp56Gmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25907.png + small + + https://s.yimg.com/iu/api/res/1.2/Os6RMd3zX4c9B0opp56Gmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25907.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 4 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.9376 + 9376 + + Glover Quin + Glover + Quin + Glover + Quin + + nfl.p.9376 + nfl.t.8 + Detroit Lions + Det + + 6 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/GYTryXAXQ5hB6XSkIJojTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/9376.png + small + + https://s.yimg.com/iu/api/res/1.2/GYTryXAXQ5hB6XSkIJojTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/9376.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 58 + + + 39 + 16 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26714 + 26714 + + Duron Harmon + Duron + Harmon + Duron + Harmon + + nfl.p.26714 + nfl.t.17 + New England Patriots + NE + + 11 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/ZOk2sdIItvDU5T0xSn.31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/26714.png + small + + https://s.yimg.com/iu/api/res/1.2/ZOk2sdIItvDU5T0xSn.31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/26714.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 32 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 4 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 4 + + + 83 + 0 + + + + + + 380.p.24977 + 24977 + + Colin Jones + Colin + Jones + Colin + Jones + + illness + nfl.p.24977 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/iBpZDZyhW8IrxFb.xwi.0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/24977.png + small + + https://s.yimg.com/iu/api/res/1.2/iBpZDZyhW8IrxFb.xwi.0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/24977.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 5 + + + 83 + 0 + + + + + + 380.p.29798 + 29798 + + Doug Middleton + Doug + Middleton + Doug + Middleton + + IR + Injured Reserve + torn pectoral + nfl.p.29798 + nfl.t.20 + New York Jets + NYJ + + 11 + + 36 + S + + https://s.yimg.com/iu/api/res/1.2/IVBPCv.3XK04Jn0cYEjOnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29798.png + small + + https://s.yimg.com/iu/api/res/1.2/IVBPCv.3XK04Jn0cYEjOnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09282018/29798.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 38 + 23 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30128 + 30128 + + Malik Hooker + Malik + Hooker + Malik + Hooker + + Q + Questionable + foot + nfl.p.30128 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/41NY6.pFgTimGTV5glCrYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30128.png + small + + https://s.yimg.com/iu/api/res/1.2/41NY6.pFgTimGTV5glCrYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30128.png + 0 + DP + + S + + 1 + 1547324460 + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 30 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 0 + + + 66 + 34 + + + 83 + 0 + + + + + + 380.p.26621 + 26621 + + Chris Banjo + Chris + Banjo + Chris + Banjo + + nfl.p.26621 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/jVGU3xIazjHs8cXwx8Za7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26621.png + small + + https://s.yimg.com/iu/api/res/1.2/jVGU3xIazjHs8cXwx8Za7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26621.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 8 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30320 + 30320 + + Brandon Wilson + Brandon + Wilson + Brandon + Wilson + + Q + Questionable + nfl.p.30320 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 40 + S + + https://s.yimg.com/iu/api/res/1.2/6_whYjSgHo.aDtD7A1WhOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30320.1.png + small + + https://s.yimg.com/iu/api/res/1.2/6_whYjSgHo.aDtD7A1WhOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/30320.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 6 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.8275 + 8275 + + Reggie Nelson + Reggie + Nelson + Reggie + Nelson + + IR + Injured Reserve + shoulder + nfl.p.8275 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 27 + S + + https://s.yimg.com/iu/api/res/1.2/HAI_ok.Kq.m2uRlcxE8UMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8275.png + small + + https://s.yimg.com/iu/api/res/1.2/HAI_ok.Kq.m2uRlcxE8UMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8275.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 25 + + + 39 + 4 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29332 + 29332 + + Justin Simmons + Justin + Simmons + Justin + Simmons + + nfl.p.29332 + nfl.t.7 + Denver Broncos + Den + + 10 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/UZ4YPb5zjpfuKdMRFV0UnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29332.png + small + + https://s.yimg.com/iu/api/res/1.2/UZ4YPb5zjpfuKdMRFV0UnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29332.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 14 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 71 + + + 39 + 26 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 2 + + + 65 + 0 + + + 66 + 8 + + + 83 + 0 + + + + + + 380.p.27710 + 27710 + + Antone Exum Jr. + Antone + Exum Jr. + Antone + Exum Jr. + + concussion + nfl.p.27710 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 38 + S + + https://s.yimg.com/iu/api/res/1.2/K_qbeiItChl6Fvh7c2oypg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27710.png + small + + https://s.yimg.com/iu/api/res/1.2/K_qbeiItChl6Fvh7c2oypg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/27710.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 34 + + + 39 + 6 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 2 + + + 66 + 32 + + + 83 + 0 + + + + + + 380.p.29401 + 29401 + + Marqui Christian + Marqui + Christian + Marqui + Christian + + nfl.p.29401 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/AuDRK3.VFsmDe9wG4KyBrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29401.png + small + + https://s.yimg.com/iu/api/res/1.2/AuDRK3.VFsmDe9wG4KyBrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/29401.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 28 + + + 39 + 8 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.27656 + 27656 + + Tre Boston + Tre + Boston + Tre + Boston + + chest + nfl.p.27656 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 33 + S + + https://s.yimg.com/iu/api/res/1.2/egO1niwL1MIPiTQXX9T0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27656.png + small + + https://s.yimg.com/iu/api/res/1.2/egO1niwL1MIPiTQXX9T0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27656.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 24 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 66 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 1 + + + 66 + 9 + + + 83 + 0 + + + + + + 380.p.30208 + 30208 + + Delano Hill + Delano + Hill + Delano + Hill + + IR + Injured Reserve + hip + nfl.p.30208 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 42 + S + + https://s.yimg.com/iu/api/res/1.2/Uv_DGllAig3HPSX71Aea_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30208.png + small + + https://s.yimg.com/iu/api/res/1.2/Uv_DGllAig3HPSX71Aea_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30208.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 15 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28303 + 28303 + + Adrian Phillips + Adrian + Phillips + Adrian + Phillips + + Q + Questionable + nfl.p.28303 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 31 + S + + https://s.yimg.com/iu/api/res/1.2/ItMjJZIO7NS8Iqq3op2cGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28303.png + small + + https://s.yimg.com/iu/api/res/1.2/ItMjJZIO7NS8Iqq3op2cGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28303.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 65 + + + 39 + 29 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 4 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30225 + 30225 + + Eddie Jackson + Eddie + Jackson + Eddie + Jackson + + ankle + nfl.p.30225 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 39 + S + + https://s.yimg.com/iu/api/res/1.2/1gt7W2b08bUkQuPyb9LXaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30225.png + small + + https://s.yimg.com/iu/api/res/1.2/1gt7W2b08bUkQuPyb9LXaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30225.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 11 + -1 + + + season + 2018 + + + 0 + 14 + + + 38 + 41 + + + 39 + 10 + + + 40 + 1.0 + + + 41 + 6 + + + 42 + 2 + + + 43 + 1 + + + 44 + 3 + + + 45 + 0 + + + 46 + 15 + + + 47 + 0 + + + 65 + 2 + + + 66 + 146 + + + 83 + 0 + + + + + + 380.p.29841 + 29841 + + Andrew Adams + Andrew + Adams + Andrew + Adams + + nfl.p.29841 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/uHmeiuIRUJ3DPbsv7Hj4UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29841.png + small + + https://s.yimg.com/iu/api/res/1.2/uHmeiuIRUJ3DPbsv7Hj4UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29841.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 38 + 29 + + + 39 + 9 + + + 40 + 0.0 + + + 41 + 4 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 0 + + + 66 + 34 + + + 83 + 0 + + + + + + 380.p.31373 + 31373 + + George Odum + George + Odum + George + Odum + + knee + nfl.p.31373 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 30 + S + + https://s.yimg.com/iu/api/res/1.2/VU0lGIGHH8vUtLxPJntIxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31373.png + small + + https://s.yimg.com/iu/api/res/1.2/VU0lGIGHH8vUtLxPJntIxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31373.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 15 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 14 + + + 83 + 0 + + + + + + 380.p.27549 + 27549 + + Ha Ha Clinton-Dix + Ha Ha + Clinton-Dix + Ha Ha + Clinton-Dix + + nfl.p.27549 + nfl.t.28 + Washington Redskins + Was + + 4 + + 20 + S + + https://s.yimg.com/iu/api/res/1.2/RFSmsObXQCz9RaTarXb9og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/27549.png + small + + https://s.yimg.com/iu/api/res/1.2/RFSmsObXQCz9RaTarXb9og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/27549.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 32 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 80 + + + 39 + 13 + + + 40 + 1.0 + + + 41 + 3 + + + 42 + 2 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 1 + + + 66 + 25 + + + 83 + 0 + + + + + + 380.p.23989 + 23989 + + Earl Thomas + Earl + Thomas + Earl + Thomas + + IR + Injured Reserve + broken left leg + nfl.p.23989 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/e2enV3FGLnUQVehTgy9o0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23989.png + small + + https://s.yimg.com/iu/api/res/1.2/e2enV3FGLnUQVehTgy9o0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23989.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 4 + + + 38 + 16 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 0 + + + 66 + 25 + + + 83 + 0 + + + + + + 380.p.30204 + 30204 + + John Johnson III + John + Johnson III + John + Johnson III + + nfl.p.30204 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 43 + S + + https://s.yimg.com/iu/api/res/1.2/eSg_UIjNiNdBaENDXVnFHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30204.png + small + + https://s.yimg.com/iu/api/res/1.2/eSg_UIjNiNdBaENDXVnFHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09232018/30204.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 48 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 82 + + + 39 + 37 + + + 40 + 0.0 + + + 41 + 4 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 11 + + + 47 + 0 + + + 65 + 3 + + + 66 + 46 + + + 83 + 0 + + + + + + 380.p.24219 + 24219 + + Kurt Coleman + Kurt + Coleman + Kurt + Coleman + + nfl.p.24219 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/ydFZpHdfS15vHQ9BtvD.ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24219.png + small + + https://s.yimg.com/iu/api/res/1.2/ydFZpHdfS15vHQ9BtvD.ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24219.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 22 + + + 39 + 10 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.7956 + 7956 + + Antoine Bethea + Antoine + Bethea + Antoine + Bethea + + nfl.p.7956 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 41 + S + + https://s.yimg.com/iu/api/res/1.2/441pCHnQtw2oh8ArNc63.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/7956.1.png + small + + https://s.yimg.com/iu/api/res/1.2/441pCHnQtw2oh8ArNc63.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062018/7956.1.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 39 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 100 + + + 39 + 21 + + + 40 + 3.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 5 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.24590 + 24590 + + Darian Stewart + Darian + Stewart + Darian + Stewart + + neck + nfl.p.24590 + nfl.t.7 + Denver Broncos + Den + + 10 + + 26 + S + + https://s.yimg.com/iu/api/res/1.2/1EdKZzo6.4o39_6vT41Ksg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24590.png + small + + https://s.yimg.com/iu/api/res/1.2/1EdKZzo6.4o39_6vT41Ksg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24590.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 38 + 46 + + + 39 + 14 + + + 40 + 1.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 3 + + + 83 + 0 + + + + + + 380.p.28452 + 28452 + + Jordan Richards + Jordan + Richards + Jordan + Richards + + nfl.p.28452 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/phITilKJBUd2WQpmngItJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28452.png + small + + https://s.yimg.com/iu/api/res/1.2/phITilKJBUd2WQpmngItJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28452.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 27 + + + 39 + 12 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26841 + 26841 + + Jordan Poyer + Jordan + Poyer + Jordan + Poyer + + nfl.p.26841 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 21 + S + + https://s.yimg.com/iu/api/res/1.2/G_aR1sCZSn8RpRdn5mu.2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26841.png + small + + https://s.yimg.com/iu/api/res/1.2/G_aR1sCZSn8RpRdn5mu.2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/26841.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 17 + 1 + + + season + 2018 + + + 0 + 16 + + + 38 + 73 + + + 39 + 27 + + + 40 + 2.0 + + + 41 + 4 + + + 42 + 1 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 6 + + + 47 + 0 + + + 65 + 9 + + + 66 + 11 + + + 83 + 0 + + + + + + 380.p.30981 + 30981 + + Minkah Fitzpatrick + Minkah + Fitzpatrick + Minkah + Fitzpatrick + + nfl.p.30981 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 29 + S + + https://s.yimg.com/iu/api/res/1.2/rwqTjWAIqK6xpnc5.iW.PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30981.png + small + + https://s.yimg.com/iu/api/res/1.2/rwqTjWAIqK6xpnc5.iW.PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30981.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 51 + + + 39 + 29 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 9 + + + 47 + 0 + + + 65 + 2 + + + 66 + 64 + + + 83 + 0 + + + + + + 380.p.28115 + 28115 + + Damien Williams + Damien + Williams + Damien + Williams + + nfl.p.28115 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/b_IC306TP6kHbZkY3ptPLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28115.png + small + + https://s.yimg.com/iu/api/res/1.2/b_IC306TP6kHbZkY3ptPLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28115.png + 0 + O + + RB + + 1 + 1 + 1548043680 + + - + - + - + - + + + week + 17 + 83 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 50 + + + 9 + 256 + + + 10 + 4 + + + 11 + 23 + + + 12 + 160 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 9 + + + 81 + 15 + + + + + + 380.p.29420 + 29420 + + Jakeem Grant + Jakeem + Grant + Jakeem + Grant + + IR + Injured Reserve + Achilles + nfl.p.29420 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/bXlNw_UBUpnzhHWymCWTaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29420.png + small + + https://s.yimg.com/iu/api/res/1.2/bXlNw_UBUpnzhHWymCWTaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29420.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 5 + + + 10 + 0 + + + 11 + 21 + + + 12 + 268 + + + 13 + 2 + + + 14 + 763 + + + 15 + 2 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 34 + + + 79 + 0 + + + 80 + 13 + + + 81 + 0 + + + + + + 380.p.31415 + 31415 + + Linden Stephens + Linden + Stephens + Linden + Stephens + + nfl.p.31415 + nfl.t.7 + Denver Broncos + Den + + 10 + + 37 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31521 + 31521 + + Step Durham + Step + Durham + Step + Durham + + undisclosed + nfl.p.31521 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 47 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31411 + 31411 + + J.T. Gray + J.T. + Gray + J.T. + Gray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31411 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 48 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 5 + + + 38 + 1 + + + 39 + 1 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31158 + 31158 + + Simeon Thomas + Simeon + Thomas + Simeon + Thomas + + nfl.p.31158 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 34 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/OhYWpEPZDQc37uMEmKTmhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31158.png + small + + https://s.yimg.com/iu/api/res/1.2/OhYWpEPZDQc37uMEmKTmhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182018/31158.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26043 + 26043 + + Leonard Johnson + Leonard + Johnson + Leonard + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26043 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 27 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/V3sMC_Nl2QU3oqBiB4K3YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20140830/26043.png + small + + https://s.yimg.com/iu/api/res/1.2/V3sMC_Nl2QU3oqBiB4K3YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20140830/26043.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 8 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31499 + 31499 + + D'Montre Wade + D'Montre + Wade + D'Montre + Wade + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31499 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 40 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31159 + 31159 + + Kamrin Moore + Kamrin + Moore + Kamrin + Moore + + nfl.p.31159 + nfl.t.19 + New York Giants + NYG + + 9 + + 29 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/3dqpszhAMdwnEsJhfD3x1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31159.png + small + + https://s.yimg.com/iu/api/res/1.2/3dqpszhAMdwnEsJhfD3x1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31159.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.26939 + 26939 + + Demontre Hurst + Demontre + Hurst + Demontre + Hurst + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26939 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 20 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/uIbVp_WBN9y1CHixSyFH.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26939.png + small + + https://s.yimg.com/iu/api/res/1.2/uIbVp_WBN9y1CHixSyFH.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26939.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30824 + 30824 + + Orion Stewart + Orion + Stewart + Orion + Stewart + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30824 + nfl.t.19 + New York Giants + NYG + + 9 + + 45 + DB,S + + https://s.yimg.com/iu/api/res/1.2/ewGNFCz5wxq_gQD_KlLGYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30824.png + small + + https://s.yimg.com/iu/api/res/1.2/ewGNFCz5wxq_gQD_KlLGYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30824.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 38 + 0 + + + 39 + 0 + + + 40 + 0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30571 + 30571 + + Anthony Firkser + Anthony + Firkser + Anthony + Firkser + + nfl.p.30571 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/vifWn_YMlpw1atp4lK09bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30571.png + small + + https://s.yimg.com/iu/api/res/1.2/vifWn_YMlpw1atp4lK09bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30571.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 19 + + + 12 + 225 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 20 + + + 79 + 0 + + + 80 + 12 + + + 81 + 0 + + + + + + 380.p.31134 + 31134 + + Natrell Jamerson + Natrell + Jamerson + Natrell + Jamerson + + nfl.p.31134 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 21 + DB,S,CB + + https://s.yimg.com/iu/api/res/1.2/eOfEzx40QENXfy4V2ltapA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31134.png + small + + https://s.yimg.com/iu/api/res/1.2/eOfEzx40QENXfy4V2ltapA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31134.png + 0 + DP + + DB + S + CB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 8 + + + 39 + 2 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 1 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.100006 + 100006 + + Dallas + Dallas + + Dallas + + + nfl.p.100006 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/dal.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/dal.gif + 0 + DT + + DEF + + + 121.9 + 12.8 + 1.2 + 0.06 + + + week + 17 + 42 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 318 + + + 32 + 39.0 + + + 33 + 9 + + + 34 + 11 + + + 35 + 1 + + + 36 + 0 + + + 37 + 0 + + + 48 + 402 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 3 + + + 53 + 6 + + + 54 + 5 + + + 55 + 1 + + + 56 + 1 + + + 67 + 8 + + + 68 + 69 + + + 69 + 5268 + + + 70 + 0 + + + 71 + 0 + + + 72 + 1 + + + 73 + 5 + + + 74 + 7 + + + 75 + 3 + + + 76 + 0 + + + 77 + 33 + + + 82 + 0 + + + + + + 380.p.31213 + 31213 + + Keion Crossen + Keion + Crossen + Keion + Crossen + + hamstring + nfl.p.31213 + nfl.t.17 + New England Patriots + NE + + 11 + + 35 + DB,CB + + https://s.yimg.com/iu/api/res/1.2/uPKDMP1WoQhGsi4VEfF0MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31213.png + small + + https://s.yimg.com/iu/api/res/1.2/uPKDMP1WoQhGsi4VEfF0MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31213.png + 0 + DP + + DB + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 38 + 14 + + + 39 + 0 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.29653 + 29653 + + Sharrod Neasman + Sharrod + Neasman + Sharrod + Neasman + + undisclosed + nfl.p.29653 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 41 + DB,S + + https://s.yimg.com/iu/api/res/1.2/iOTEdOU1SPKXmPRJrOdkcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29653.png + small + + https://s.yimg.com/iu/api/res/1.2/iOTEdOU1SPKXmPRJrOdkcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29653.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 31 + + + 39 + 13 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 4 + + + 47 + 0 + + + 65 + 2 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31024 + 31024 + + Jessie Bates III + Jessie + Bates III + Jessie + Bates III + + nfl.p.31024 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 30 + DB,S + + https://s.yimg.com/iu/api/res/1.2/qA9WgB3IhhFd0R39yLL4QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31024.png + small + + https://s.yimg.com/iu/api/res/1.2/qA9WgB3IhhFd0R39yLL4QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31024.png + 0 + DP + + DB + S + + + - + - + - + - + + + week + 17 + 43 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 73 + + + 39 + 38 + + + 40 + 0.0 + + + 41 + 3 + + + 42 + 0 + + + 43 + 0 + + + 44 + 1 + + + 45 + 0 + + + 46 + 7 + + + 47 + 0 + + + 65 + 0 + + + 66 + 42 + + + 83 + 0 + + + + + + 380.p.30131 + 30131 + + Adoree' Jackson + Adoree' + Jackson + Adoree' + Jackson + + nfl.p.30131 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 25 + CB + + https://s.yimg.com/iu/api/res/1.2/avA0KdjRTuV_LfkmmlqWXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30131.png + small + + https://s.yimg.com/iu/api/res/1.2/avA0KdjRTuV_LfkmmlqWXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30131.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 21 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 67 + + + 39 + 6 + + + 40 + 0.0 + + + 41 + 2 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 10 + + + 47 + 0 + + + 65 + 2 + + + 66 + 7 + + + 83 + 0 + + + + + + 380.p.30138 + 30138 + + Jabrill Peppers + Jabrill + Peppers + Jabrill + Peppers + + neck + nfl.p.30138 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 22 + S + + https://s.yimg.com/iu/api/res/1.2/8csop.Pj8w9XS8Ea1yoVbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30138.png + small + + https://s.yimg.com/iu/api/res/1.2/8csop.Pj8w9XS8Ea1yoVbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30138.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 52 + + + 39 + 27 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 2 + + + 44 + 0 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 5 + + + 66 + 16 + + + 83 + 0 + + + + + + 380.p.26917 + 26917 + + Jahleel Addae + Jahleel + Addae + Jahleel + Addae + + nfl.p.26917 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/jD85D2DKxLbV8Fqi47daWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26917.png + small + + https://s.yimg.com/iu/api/res/1.2/jD85D2DKxLbV8Fqi47daWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26917.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 52 + + + 39 + 23 + + + 40 + 1.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 3 + + + 47 + 0 + + + 65 + 1 + + + 66 + 19 + + + 83 + 0 + + + + + + 380.p.31112 + 31112 + + D.J. Reed Jr. + D.J. + Reed Jr. + D.J. + Reed Jr. + + heel, chest + nfl.p.31112 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 32 + CB + + https://s.yimg.com/iu/api/res/1.2/e1.ldYe6XVBvXKUP0Y5NaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31112.png + small + + https://s.yimg.com/iu/api/res/1.2/e1.ldYe6XVBvXKUP0Y5NaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31112.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 38 + 30 + + + 39 + 11 + + + 40 + 1.0 + + + 41 + 0 + + + 42 + 1 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 3 + + + 66 + 0 + + + 83 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.25775 + 25775 + + Trumaine Johnson + Trumaine + Johnson + Trumaine + Johnson + + foot + nfl.p.25775 + nfl.t.20 + New York Jets + NYJ + + 11 + + 22 + CB + + https://s.yimg.com/iu/api/res/1.2/SbDWNixVJ_jgNSYniUxr4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/25775.png + small + + https://s.yimg.com/iu/api/res/1.2/SbDWNixVJ_jgNSYniUxr4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/25775.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 10 + + + 38 + 35 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 4 + + + 42 + 1 + + + 43 + 1 + + + 44 + 1 + + + 45 + 0 + + + 46 + 5 + + + 47 + 0 + + + 65 + 1 + + + 66 + 63 + + + 83 + 0 + + + + + + 380.p.30713 + 30713 + + Tre Sullivan + Tre + Sullivan + Tre + Sullivan + + nfl.p.30713 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 37 + S + + https://s.yimg.com/iu/api/res/1.2/BpU_z_1DRVHHcb8Ki83VvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30713.png + small + + https://s.yimg.com/iu/api/res/1.2/BpU_z_1DRVHHcb8Ki83VvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30713.png + 0 + DP + + S + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 38 + 12 + + + 39 + 5 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 0 + + + 44 + 0 + + + 45 + 0 + + + 46 + 0 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.28417 + 28417 + + Phillip Dorsett + Phillip + Dorsett + Phillip + Dorsett + + nfl.p.28417 + nfl.t.17 + New England Patriots + NE + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/tCsbXe5u_0bUEHbnIUaQWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28417.png + small + + https://s.yimg.com/iu/api/res/1.2/tCsbXe5u_0bUEHbnIUaQWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28417.png + 0 + O + + WR + + 1 + 1547422680 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 29 + + + 10 + 0 + + + 11 + 32 + + + 12 + 290 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 42 + + + 79 + 0 + + + 80 + 17 + + + 81 + 2 + + + + + + 380.p.31096 + 31096 + + Ito Smith + Ito + Smith + Ito + Smith + + IR + Injured Reserve + knee + nfl.p.31096 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/xzgiErw3KMDpBfcJNUZw1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31096.png + small + + https://s.yimg.com/iu/api/res/1.2/xzgiErw3KMDpBfcJNUZw1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31096.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 25 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 90 + + + 9 + 315 + + + 10 + 4 + + + 11 + 27 + + + 12 + 152 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 32 + + + 79 + 0 + + + 80 + 9 + + + 81 + 18 + + + + + + 380.p.8212 + 8212 + + Tramon Williams + Tramon + Williams + Tramon + Williams + + nfl.p.8212 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 38 + CB + + https://s.yimg.com/iu/api/res/1.2/0FAHdJ5Sqt_4I1zw1_sQEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8212.png + small + + https://s.yimg.com/iu/api/res/1.2/0FAHdJ5Sqt_4I1zw1_sQEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8212.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 38 + 40 + + + 39 + 14 + + + 40 + 0.0 + + + 41 + 0 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 0 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.31181 + 31181 + + Jordan Thomas + Jordan + Thomas + Jordan + Thomas + + hip + nfl.p.31181 + nfl.t.34 + Houston Texans + Hou + + 10 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/GFbpAoWlMQfNPBnMdWqDMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31181.png + small + + https://s.yimg.com/iu/api/res/1.2/GFbpAoWlMQfNPBnMdWqDMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31181.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 20 + + + 12 + 215 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 27 + + + 79 + 0 + + + 80 + 12 + + + 81 + 0 + + + + + + 380.p.29328 + 29328 + + Nick Vannett + Nick + Vannett + Nick + Vannett + + back + nfl.p.29328 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/w0eBeDIjyLbSMtwqqpsXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29328.png + small + + https://s.yimg.com/iu/api/res/1.2/w0eBeDIjyLbSMtwqqpsXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29328.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 29 + + + 12 + 269 + + + 13 + 3 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 43 + + + 79 + 0 + + + 80 + 17 + + + 81 + 0 + + + + + + 380.p.31394 + 31394 + + Jeff Wilson Jr. + Jeff + Wilson Jr. + Jeff + Wilson Jr. + + Q + Questionable + nfl.p.31394 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/oPOfbkWyRGsZKJaOKzlJ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31394.png + small + + https://s.yimg.com/iu/api/res/1.2/oPOfbkWyRGsZKJaOKzlJ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31394.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 48 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 66 + + + 9 + 266 + + + 10 + 0 + + + 11 + 12 + + + 12 + 98 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 15 + + + 79 + 0 + + + 80 + 5 + + + 81 + 13 + + + + + + 380.p.30146 + 30146 + + Kevin King + Kevin + King + Kevin + King + + IR + Injured Reserve + hamstring + nfl.p.30146 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 20 + CB + + https://s.yimg.com/iu/api/res/1.2/4ueoJLopBLQ6F9wwXeT__w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30146.png + small + + https://s.yimg.com/iu/api/res/1.2/4ueoJLopBLQ6F9wwXeT__w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30146.png + 0 + DP + + CB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 38 + 14 + + + 39 + 3 + + + 40 + 0.0 + + + 41 + 1 + + + 42 + 0 + + + 43 + 1 + + + 44 + 0 + + + 45 + 0 + + + 46 + 2 + + + 47 + 0 + + + 65 + 1 + + + 66 + 0 + + + 83 + 0 + + + + + + 380.p.30551 + 30551 + + Kendrick Bourne + Kendrick + Bourne + Kendrick + Bourne + + nfl.p.30551 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/O6EYlj7YVcGNcuzPjwfK4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30551.png + small + + https://s.yimg.com/iu/api/res/1.2/O6EYlj7YVcGNcuzPjwfK4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30551.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 42 + + + 12 + 487 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 66 + + + 79 + 0 + + + 80 + 30 + + + 81 + 0 + + + + + + 380.p.26756 + 26756 + + Levine Toilolo + Levine + Toilolo + Levine + Toilolo + + nfl.p.26756 + nfl.t.8 + Detroit Lions + Det + + 6 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/DQizynXqF86z9xXVw9b3bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26756.png + small + + https://s.yimg.com/iu/api/res/1.2/DQizynXqF86z9xXVw9b3bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26756.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 21 + + + 12 + 263 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.9066 + 9066 + + Stephen Hauschka + Stephen + Hauschka + Stephen + Hauschka + + right hip + nfl.p.9066 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/vho1OdxrheXvPzDfSHZNYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9066.png + small + + https://s.yimg.com/iu/api/res/1.2/vho1OdxrheXvPzDfSHZNYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9066.png + 0 + K + + K + + + 123.6 + 12.9 + 1.2 + 0.02 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 3 + + + 21 + 8 + + + 22 + 7 + + + 23 + 4 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 3 + + + 28 + 3 + + + 29 + 25 + + + 30 + 1 + + + + + + 380.p.25871 + 25871 + + Randy Bullock + Randy + Bullock + Randy + Bullock + + nfl.p.25871 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/UDtHBPRLbO0Wfi3iY6M1vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25871.png + small + + https://s.yimg.com/iu/api/res/1.2/UDtHBPRLbO0Wfi3iY6M1vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25871.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 4 + + + 21 + 7 + + + 22 + 6 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 0 + + + 28 + 3 + + + 29 + 39 + + + 30 + 2 + + + + + + 380.p.30158 + 30158 + + Adam Shaheen + Adam + Shaheen + Adam + Shaheen + + concussion + nfl.p.30158 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/J7xULkZEoZXKx8Tfaf5hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30158.png + small + + https://s.yimg.com/iu/api/res/1.2/J7xULkZEoZXKx8Tfaf5hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30158.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 48 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.31144 + 31144 + + Marquez Valdes-Scantling + Marquez + Valdes-Scantling + Marquez + Valdes-Scantling + + nfl.p.31144 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/4TvrpPxrvGaBRPY68LLTvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31144.png + small + + https://s.yimg.com/iu/api/res/1.2/4TvrpPxrvGaBRPY68LLTvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31144.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 27 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 29 + + + 10 + 0 + + + 11 + 38 + + + 12 + 581 + + + 13 + 2 + + + 14 + 21 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 4 + + + 64 + 1 + + + 78 + 73 + + + 79 + 0 + + + 80 + 23 + + + 81 + 2 + + + + + + 380.p.29344 + 29344 + + Tyler Higbee + Tyler + Higbee + Tyler + Higbee + + knee + nfl.p.29344 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/fyWWKHQFtTk6AnpQq0JW2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29344.png + small + + https://s.yimg.com/iu/api/res/1.2/fyWWKHQFtTk6AnpQq0JW2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29344.png + 0 + O + + TE + + 1 + 1 + 1548028680 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 24 + + + 12 + 292 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 34 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.29609 + 29609 + + Chester Rogers + Chester + Rogers + Chester + Rogers + + groin + nfl.p.29609 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/9jBX1EgVjyyFI.gr9uxSLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29609.png + small + + https://s.yimg.com/iu/api/res/1.2/9jBX1EgVjyyFI.gr9uxSLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29609.png + 0 + O + + WR + + 1 + 1547344740 + + - + - + - + - + + + week + 17 + 3 + 1 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -4 + + + 10 + 0 + + + 11 + 53 + + + 12 + 485 + + + 13 + 2 + + + 14 + 225 + + + 15 + 0 + + + 16 + 2 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 72 + + + 79 + 0 + + + 80 + 28 + + + 81 + 0 + + + + + + 380.p.26789 + 26789 + + Caleb Sturgis + Caleb + Sturgis + Caleb + Sturgis + + NA + Inactive: Coach's Decision or Not on Roster + quadriceps + nfl.p.26789 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/aamIm.l8u7BGC48k2ncA1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26789.png + small + + https://s.yimg.com/iu/api/res/1.2/aamIm.l8u7BGC48k2ncA1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26789.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 19 + 0 + + + 20 + 4 + + + 21 + 2 + + + 22 + 3 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 3 + + + 28 + 1 + + + 29 + 9 + + + 30 + 6 + + + + + + 380.p.25681 + 25681 + + Terrelle Pryor + Terrelle + Pryor + Terrelle + Pryor + + NA + Inactive: Coach's Decision or Not on Roster + groin + nfl.p.25681 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/sM1Ge6xr.11RtU5KWhPZ6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25681.png + small + + https://s.yimg.com/iu/api/res/1.2/sM1Ge6xr.11RtU5KWhPZ6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25681.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -1 + + + 10 + 0 + + + 11 + 16 + + + 12 + 252 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 30 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.31517 + 31517 + + Keith Kirkwood + Keith + Kirkwood + Keith + Kirkwood + + O + Out + calf + nfl.p.31517 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + 1 + 1547428500 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 13 + + + 12 + 209 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 21 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.28214 + 28214 + + Seth Roberts + Seth + Roberts + Seth + Roberts + + concussion + nfl.p.28214 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/GO2WLCQDPSljvPjmnmNf4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28214.png + small + + https://s.yimg.com/iu/api/res/1.2/GO2WLCQDPSljvPjmnmNf4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28214.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 5 + + + 10 + 0 + + + 11 + 45 + + + 12 + 494 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 64 + + + 79 + 0 + + + 80 + 24 + + + 81 + 1 + + + + + + 380.p.28103 + 28103 + + Chandler Catanzaro + Chandler + Catanzaro + Chandler + Catanzaro + + nfl.p.28103 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/TqscIFttcW.TkGpVi5tGzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28103.png + small + + https://s.yimg.com/iu/api/res/1.2/TqscIFttcW.TkGpVi5tGzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28103.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 13 + + + 19 + 0 + + + 20 + 4 + + + 21 + 9 + + + 22 + 0 + + + 23 + 3 + + + 24 + 0 + + + 25 + 0 + + + 26 + 1 + + + 27 + 3 + + + 28 + 0 + + + 29 + 30 + + + 30 + 5 + + + + + + 380.p.25838 + 25838 + + Rhett Ellison + Rhett + Ellison + Rhett + Ellison + + Q + Questionable + concussion + nfl.p.25838 + nfl.t.19 + New York Giants + NYG + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/fBbwQ7.i3q3S8B1s_8IiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25838.png + small + + https://s.yimg.com/iu/api/res/1.2/fBbwQ7.i3q3S8B1s_8IiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25838.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 25 + + + 12 + 272 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 34 + + + 79 + 0 + + + 80 + 13 + + + 81 + 0 + + + + + + 380.p.30112 + 30112 + + Mo Alie-Cox + Mo + Alie-Cox + Mo + Alie-Cox + + calf + nfl.p.30112 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/nLxRlYcYziOcUVib7a8lhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30112.png + small + + https://s.yimg.com/iu/api/res/1.2/nLxRlYcYziOcUVib7a8lhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30112.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 7 + + + 12 + 133 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 13 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.8937 + 8937 + + Josh Johnson + Josh + Johnson + Josh + Johnson + + nfl.p.8937 + nfl.t.28 + Washington Redskins + Was + + 4 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/PVwYZk.7IRqaHJZTp0GO.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8937.png + small + + https://s.yimg.com/iu/api/res/1.2/PVwYZk.7IRqaHJZTp0GO.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8937.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 91 + + + 2 + 52 + + + 3 + 39 + + + 4 + 590 + + + 5 + 3 + + + 6 + 4 + + + 7 + 9 + + + 8 + 23 + + + 9 + 120 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 2 + + + 17 + 2 + + + 18 + 0 + + + 57 + 0 + + + 58 + 1 + + + 59 + 1 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 29 + + + 80 + 0 + + + 81 + 7 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31567 + 31567 + + Josh Adams + Josh + Adams + Josh + Adams + + hip + nfl.p.31567 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/KbEo5JEC.UKaIbcrEfwZpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/11262018/31567.png + small + + https://s.yimg.com/iu/api/res/1.2/KbEo5JEC.UKaIbcrEfwZpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/11262018/31567.png + 0 + O + + RB + + 1 + 1547429400 + + - + - + - + - + + + week + 17 + 69 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 120 + + + 9 + 511 + + + 10 + 3 + + + 11 + 7 + + + 12 + 58 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 13 + + + 79 + 0 + + + 80 + 3 + + + 81 + 23 + + + + + + 380.p.26652 + 26652 + + Cordarrelle Patterson + Cordarrelle + Patterson + Cordarrelle + Patterson + + knee + nfl.p.26652 + nfl.t.17 + New England Patriots + NE + + 11 + + 84 + WR,RB + + https://s.yimg.com/iu/api/res/1.2/D_wX0U7jVcUTYTrh9osl4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/26652.png + small + + https://s.yimg.com/iu/api/res/1.2/D_wX0U7jVcUTYTrh9osl4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/26652.png + 0 + O + + WR + RB + + 1 + 1547422860 + + - + - + - + - + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 42 + + + 9 + 228 + + + 10 + 1 + + + 11 + 21 + + + 12 + 247 + + + 13 + 3 + + + 14 + 663 + + + 15 + 1 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 28 + + + 79 + 0 + + + 80 + 11 + + + 81 + 15 + + + + + + 380.p.31221 + 31221 + + Justin Jackson + Justin + Jackson + Justin + Jackson + + nfl.p.31221 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/HEm6xKQOdJPpKfwbOJ5Uwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31221.png + small + + https://s.yimg.com/iu/api/res/1.2/HEm6xKQOdJPpKfwbOJ5Uwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31221.png + 0 + O + + RB + + 1 + 1547422620 + + - + - + - + - + + + week + 17 + 46 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 50 + + + 9 + 206 + + + 10 + 2 + + + 11 + 15 + + + 12 + 135 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 5 + + + 81 + 14 + + + + + + 380.p.30285 + 30285 + + Isaiah McKenzie + Isaiah + McKenzie + Isaiah + McKenzie + + toe + nfl.p.30285 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/uLkKcRNpJ.Q5Of9OsFlr3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30285.png + small + + https://s.yimg.com/iu/api/res/1.2/uLkKcRNpJ.Q5Of9OsFlr3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30285.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 10 + + + 9 + 66 + + + 10 + 2 + + + 11 + 18 + + + 12 + 179 + + + 13 + 0 + + + 14 + 337 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 30 + + + 79 + 0 + + + 80 + 10 + + + 81 + 4 + + + + + + 380.p.28414 + 28414 + + Breshad Perriman + Breshad + Perriman + Breshad + Perriman + + nfl.p.28414 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/tKS4Zv6loyCtREmMQmaLUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28414.png + small + + https://s.yimg.com/iu/api/res/1.2/tKS4Zv6loyCtREmMQmaLUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28414.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 2 + + + 10 + 0 + + + 11 + 16 + + + 12 + 340 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 13 + + + 81 + 0 + + + + + + 380.p.30594 + 30594 + + Jason Croom + Jason + Croom + Jason + Croom + + groin + nfl.p.30594 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/3hizR8DuHH6YY1PeoXjo1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30594.png + small + + https://s.yimg.com/iu/api/res/1.2/3hizR8DuHH6YY1PeoXjo1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30594.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 22 + + + 12 + 259 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 1 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 35 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.28513 + 28513 + + Javorius Allen + Javorius + Allen + Javorius + Allen + + nfl.p.28513 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/_NjWyCB97ssx2P8limp9PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28513.png + small + + https://s.yimg.com/iu/api/res/1.2/_NjWyCB97ssx2P8limp9PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28513.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 16 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 41 + + + 9 + 110 + + + 10 + 3 + + + 11 + 35 + + + 12 + 196 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 43 + + + 79 + 0 + + + 80 + 11 + + + 81 + 10 + + + + + + 380.p.27174 + 27174 + + Demetrius Harris + Demetrius + Harris + Demetrius + Harris + + knee, illness + nfl.p.27174 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/4Q_6Pwo78Z_exSK99nBEkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27174.png + small + + https://s.yimg.com/iu/api/res/1.2/4Q_6Pwo78Z_exSK99nBEkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27174.png + 0 + O + + TE + + 1 + 1 + 1548045660 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 12 + + + 12 + 164 + + + 13 + 3 + + + 14 + 11 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 9 + + + 81 + 0 + + + + + + 380.p.26253 + 26253 + + Garrett Celek + Garrett + Celek + Garrett + Celek + + Q + Questionable + concussion + nfl.p.26253 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/mxFD3ch3juzDVhtfSCZU2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26253.png + small + + https://s.yimg.com/iu/api/res/1.2/mxFD3ch3juzDVhtfSCZU2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26253.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 90 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 8 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.31199 + 31199 + + Jason Sanders + Jason + Sanders + Jason + Sanders + + nfl.p.31199 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/dCtblAjcHBiItC3wBxyEaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31199.png + small + + https://s.yimg.com/iu/api/res/1.2/dCtblAjcHBiItC3wBxyEaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31199.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 19 + 0 + + + 20 + 7 + + + 21 + 3 + + + 22 + 7 + + + 23 + 1 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 0 + + + 29 + 35 + + + 30 + 1 + + + + + + 380.p.28875 + 28875 + + Matt LaCosse + Matt + LaCosse + Matt + LaCosse + + ankle + nfl.p.28875 + nfl.t.7 + Denver Broncos + Den + + 10 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/T2EKBm0bzb84zLBfugKlcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28875.png + small + + https://s.yimg.com/iu/api/res/1.2/T2EKBm0bzb84zLBfugKlcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28875.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 24 + + + 12 + 250 + + + 13 + 1 + + + 14 + 10 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 37 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.26824 + 26824 + + Ryan Griffin + Ryan + Griffin + Ryan + Griffin + + illness + nfl.p.26824 + nfl.t.34 + Houston Texans + Hou + + 10 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/9hwZF.DLYTCjU2.25jsevA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26824.png + small + + https://s.yimg.com/iu/api/res/1.2/9hwZF.DLYTCjU2.25jsevA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26824.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 24 + + + 12 + 305 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 43 + + + 79 + 0 + + + 80 + 15 + + + 81 + 0 + + + + + + 380.p.27646 + 27646 + + Martavis Bryant + Martavis + Bryant + Martavis + Bryant + + IR + Injured Reserve + knee + nfl.p.27646 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/.P_p0cpVMxIdMqdwjuQtYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27646.png + small + + https://s.yimg.com/iu/api/res/1.2/.P_p0cpVMxIdMqdwjuQtYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27646.png + 0 + O + + WR + + + 126.5 + 13.4 + 1.9 + 0.07 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 23 + + + 10 + 0 + + + 11 + 19 + + + 12 + 266 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 27 + + + 79 + 0 + + + 80 + 10 + + + 81 + 1 + + + + + + 380.p.24845 + 24845 + + Torrey Smith + Torrey + Smith + Torrey + Smith + + knee + nfl.p.24845 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/cnz9SPmTiomlDoyc1kFkMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24845.png + small + + https://s.yimg.com/iu/api/res/1.2/cnz9SPmTiomlDoyc1kFkMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24845.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 17 + + + 12 + 190 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 31 + + + 79 + 0 + + + 80 + 12 + + + 81 + 0 + + + + + + 380.p.28443 + 28443 + + Maxx Williams + Maxx + Williams + Maxx + Williams + + nfl.p.28443 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/HHKeoRWWOYY608qO6I55Qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28443.png + small + + https://s.yimg.com/iu/api/res/1.2/HHKeoRWWOYY608qO6I55Qg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28443.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 8 + + + 10 + 0 + + + 11 + 16 + + + 12 + 143 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 17 + + + 79 + 0 + + + 80 + 7 + + + 81 + 2 + + + + + + 380.p.31538 + 31538 + + Greg Joseph + Greg + Joseph + Greg + Joseph + + nfl.p.31538 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 17 + K + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 19 + 0 + + + 20 + 4 + + + 21 + 7 + + + 22 + 5 + + + 23 + 1 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 1 + + + 29 + 25 + + + 30 + 4 + + + + + + 380.p.27584 + 27584 + + Cody Latimer + Cody + Latimer + Cody + Latimer + + hamstring + nfl.p.27584 + nfl.t.19 + New York Giants + NYG + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/DJ9YG14Zut7zgza8HNT.Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27584.png + small + + https://s.yimg.com/iu/api/res/1.2/DJ9YG14Zut7zgza8HNT.Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27584.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 11 + + + 12 + 190 + + + 13 + 1 + + + 14 + 123 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 16 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.28592 + 28592 + + Darren Waller + Darren + Waller + Darren + Waller + + nfl.p.28592 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/C1rv5HKB_B34dRET.2vwIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28592.1.png + small + + https://s.yimg.com/iu/api/res/1.2/C1rv5HKB_B34dRET.2vwIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28592.1.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 21 + + + 10 + 0 + + + 11 + 6 + + + 12 + 75 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 4 + + + 81 + 1 + + + + + + 380.p.28582 + 28582 + + Nick O'Leary + Nick + O'Leary + Nick + O'Leary + + nfl.p.28582 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/xKElw8hrEXXo33v8LY.vyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28582.png + small + + https://s.yimg.com/iu/api/res/1.2/xKElw8hrEXXo33v8LY.vyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28582.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 8 + + + 12 + 86 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.28464 + 28464 + + Chris Conley + Chris + Conley + Chris + Conley + + nfl.p.28464 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/Cq7P6MQNeBvW85FalXycLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28464.png + small + + https://s.yimg.com/iu/api/res/1.2/Cq7P6MQNeBvW85FalXycLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28464.png + 0 + O + + WR + + 1 + 1 + 1548045540 + + - + - + - + - + + + week + 17 + 11 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 32 + + + 12 + 334 + + + 13 + 5 + + + 14 + 5 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 52 + + + 79 + 0 + + + 80 + 18 + + + 81 + 0 + + + + + + 380.p.30337 + 30337 + + Zane Gonzalez + Zane + Gonzalez + Zane + Gonzalez + + nfl.p.30337 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/l8Yys4C3G3FNygqTZZMkqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30337.png + small + + https://s.yimg.com/iu/api/res/1.2/l8Yys4C3G3FNygqTZZMkqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30337.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 19 + 0 + + + 20 + 1 + + + 21 + 4 + + + 22 + 2 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 3 + + + 29 + 8 + + + 30 + 3 + + + + + + 380.p.24891 + 24891 + + Luke Stocker + Luke + Stocker + Luke + Stocker + + Q + Questionable + calf + nfl.p.24891 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/KjWKVludZI13nJnpREbZ0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24891.png + small + + https://s.yimg.com/iu/api/res/1.2/KjWKVludZI13nJnpREbZ0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24891.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 15 + + + 12 + 165 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 21 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.28531 + 28531 + + MyCole Pruitt + MyCole + Pruitt + MyCole + Pruitt + + nfl.p.28531 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/xnTWaTzGWH9t9lEPIZZ5mQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28531.png + small + + https://s.yimg.com/iu/api/res/1.2/xnTWaTzGWH9t9lEPIZZ5mQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28531.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 102 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.26950 + 26950 + + Josh Hill + Josh + Hill + Josh + Hill + + Q + Questionable + nfl.p.26950 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/X3DqLmYuYufE5ShyW9lKlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26950.png + small + + https://s.yimg.com/iu/api/res/1.2/X3DqLmYuYufE5ShyW9lKlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26950.png + 0 + O + + TE + + 1 + 1548016620 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 16 + + + 12 + 185 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.27074 + 27074 + + Jaron Brown + Jaron + Brown + Jaron + Brown + + nfl.p.27074 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/2I_KSWgrW87yXYq3ptkLDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27074.png + small + + https://s.yimg.com/iu/api/res/1.2/2I_KSWgrW87yXYq3ptkLDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27074.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 14 + + + 12 + 166 + + + 13 + 5 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 9 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27821 + 27821 + + Kapri Bibbs + Kapri + Bibbs + Kapri + Bibbs + + nfl.p.27821 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/N9ws6GQ4TqVLJFHNnRyEyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27821.png + small + + https://s.yimg.com/iu/api/res/1.2/N9ws6GQ4TqVLJFHNnRyEyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/27821.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 21 + + + 9 + 103 + + + 10 + 3 + + + 11 + 16 + + + 12 + 115 + + + 13 + 1 + + + 14 + 57 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 23 + + + 79 + 0 + + + 80 + 4 + + + 81 + 8 + + + + + + 380.p.30891 + 30891 + + Dan Arnold + Dan + Arnold + Dan + Arnold + + nfl.p.30891 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 85 + WR,TE + + https://s.yimg.com/iu/api/res/1.2/pMRvyf3wXQ3MpGTltfU1jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30891.png + small + + https://s.yimg.com/iu/api/res/1.2/pMRvyf3wXQ3MpGTltfU1jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30891.png + 0 + O + + WR + TE + + 1 + 1 + 1548030840 + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 12 + + + 12 + 150 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 9 + + + 81 + 0 + + + + + + 380.p.31198 + 31198 + + Marcell Ateman + Marcell + Ateman + Marcell + Ateman + + nfl.p.31198 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/TcpIVjL3COgsQTV8D4ClGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31198.png + small + + https://s.yimg.com/iu/api/res/1.2/TcpIVjL3COgsQTV8D4ClGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31198.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 15 + + + 12 + 154 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 31 + + + 79 + 0 + + + 80 + 7 + + + 81 + 0 + + + + + + 380.p.26631 + 26631 + + Tavon Austin + Tavon + Austin + Tavon + Austin + + groin + nfl.p.26631 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 10 + WR,RB + + https://s.yimg.com/iu/api/res/1.2/rMSB5_iVoqtkFwa3p8zSGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26631.png + small + + https://s.yimg.com/iu/api/res/1.2/rMSB5_iVoqtkFwa3p8zSGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26631.png + 0 + O + + WR + RB + + 1 + 1547356680 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 55 + + + 10 + 0 + + + 11 + 8 + + + 12 + 140 + + + 13 + 2 + + + 14 + 58 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 13 + + + 79 + 0 + + + 80 + 5 + + + 81 + 2 + + + + + + 380.p.25828 + 25828 + + Jarius Wright + Jarius + Wright + Jarius + Wright + + nfl.p.25828 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/7zEhWtrzuH6vlBGjC7CV8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25828.png + small + + https://s.yimg.com/iu/api/res/1.2/7zEhWtrzuH6vlBGjC7CV8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25828.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 39 + + + 10 + 0 + + + 11 + 43 + + + 12 + 447 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 3 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 59 + + + 79 + 0 + + + 80 + 25 + + + 81 + 1 + + + + + + 380.p.29678 + 29678 + + Marcus Johnson + Marcus + Johnson + Marcus + Johnson + + IR + Injured Reserve + ankle + nfl.p.29678 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/ToDETSh_H0fVSdEPhaLRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29678.png + small + + https://s.yimg.com/iu/api/res/1.2/ToDETSh_H0fVSdEPhaLRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29678.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -2 + + + 10 + 0 + + + 11 + 6 + + + 12 + 102 + + + 13 + 1 + + + 14 + 23 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.24991 + 24991 + + Virgil Green + Virgil + Green + Virgil + Green + + nfl.p.24991 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/0H0X7u8l4e8G7fVNN7mf6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24991.png + small + + https://s.yimg.com/iu/api/res/1.2/0H0X7u8l4e8G7fVNN7mf6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24991.png + 0 + O + + TE + + 1 + 1547422680 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 19 + + + 12 + 210 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 27 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.25991 + 25991 + + Jermaine Kearse + Jermaine + Kearse + Jermaine + Kearse + + Q + Questionable + Achilles + nfl.p.25991 + nfl.t.20 + New York Jets + NYJ + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/RvAYccK6dDrnBRXFxTfWVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25991.png + small + + https://s.yimg.com/iu/api/res/1.2/RvAYccK6dDrnBRXFxTfWVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25991.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + -1 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 37 + + + 12 + 371 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 76 + + + 79 + 0 + + + 80 + 20 + + + 81 + 0 + + + + + + 380.p.24608 + 24608 + + Logan Paulsen + Logan + Paulsen + Logan + Paulsen + + knee, ankle + nfl.p.24608 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/qg1We9aFyz1iI6G.ZbgL3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24608.png + small + + https://s.yimg.com/iu/api/res/1.2/qg1We9aFyz1iI6G.ZbgL3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24608.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 91 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.28559 + 28559 + + Nick Boyle + Nick + Boyle + Nick + Boyle + + concussion + nfl.p.28559 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/mxt.99uAb5XuxKTPOe1WHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28559.png + small + + https://s.yimg.com/iu/api/res/1.2/mxt.99uAb5XuxKTPOe1WHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28559.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 23 + + + 12 + 213 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 37 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.31083 + 31083 + + DaeSean Hamilton + DaeSean + Hamilton + DaeSean + Hamilton + + nfl.p.31083 + nfl.t.7 + Denver Broncos + Den + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/s5LGR7zuCzLsBcRFoJ8SjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/31083.png + small + + https://s.yimg.com/iu/api/res/1.2/s5LGR7zuCzLsBcRFoJ8SjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/31083.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 33 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 30 + + + 12 + 243 + + + 13 + 2 + + + 14 + 31 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 46 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.31320 + 31320 + + Trent Sherfield + Trent + Sherfield + Trent + Sherfield + + nfl.p.31320 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/xv0TN9fgtDNMu2I29iJEwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31320.png + small + + https://s.yimg.com/iu/api/res/1.2/xv0TN9fgtDNMu2I29iJEwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31320.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 19 + + + 12 + 210 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 28 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.29360 + 29360 + + Demarcus Robinson + Demarcus + Robinson + Demarcus + Robinson + + nfl.p.29360 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/HLp_ktZ1oEzQBjoyErElOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29360.png + small + + https://s.yimg.com/iu/api/res/1.2/HLp_ktZ1oEzQBjoyErElOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29360.png + 0 + O + + WR + + 1 + 1 + 1548045360 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 22 + + + 12 + 288 + + + 13 + 4 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 33 + + + 79 + 0 + + + 80 + 12 + + + 81 + 0 + + + + + + 380.p.30777 + 30777 + + Robert Tonyan + Robert + Tonyan + Robert + Tonyan + + nfl.p.30777 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/wFx9I0wTj5DBDsW.YfPvHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30777.png + small + + https://s.yimg.com/iu/api/res/1.2/wFx9I0wTj5DBDsW.YfPvHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30777.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 77 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 6 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.31127 + 31127 + + Tyler Conklin + Tyler + Conklin + Tyler + Conklin + + nfl.p.31127 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/8aXRMuvm6EQiqQIyT3q.GA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31127.png + small + + https://s.yimg.com/iu/api/res/1.2/8aXRMuvm6EQiqQIyT3q.GA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31127.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 77 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.27055 + 27055 + + Russell Shepard + Russell + Shepard + Russell + Shepard + + Q + Questionable + ankle + nfl.p.27055 + nfl.t.19 + New York Giants + NYG + + 9 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/frsmGsJjqiqQ0DUZRS5frg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27055.png + small + + https://s.yimg.com/iu/api/res/1.2/frsmGsJjqiqQ0DUZRS5frg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/27055.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 10 + + + 12 + 188 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 2 + + + 64 + 1 + + + 78 + 19 + + + 79 + 0 + + + 80 + 7 + + + 81 + 0 + + + + + + 380.p.31588 + 31588 + + Vyncint Smith + Vyncint + Smith + Vyncint + Smith + + nfl.p.31588 + nfl.t.34 + Houston Texans + Hou + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 91 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.24965 + 24965 + + Aldrick Robinson + Aldrick + Robinson + Aldrick + Robinson + + nfl.p.24965 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/LXDBf_eeaBykbP9YGaU76g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24965.png + small + + https://s.yimg.com/iu/api/res/1.2/LXDBf_eeaBykbP9YGaU76g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24965.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 17 + + + 12 + 231 + + + 13 + 5 + + + 14 + 21 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 35 + + + 79 + 0 + + + 80 + 12 + + + 81 + 0 + + + + + + 380.p.24942 + 24942 + + Niles Paul + Niles + Paul + Niles + Paul + + NA + Inactive: Coach's Decision or Not on Roster + MCL sprain + nfl.p.24942 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/pBZorpF6bwoeLisvgYDwQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24942.png + small + + https://s.yimg.com/iu/api/res/1.2/pBZorpF6bwoeLisvgYDwQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24942.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -3 + + + 10 + 0 + + + 11 + 10 + + + 12 + 98 + + + 13 + 0 + + + 14 + 8 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 13 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.28561 + 28561 + + James O'Shaughnessy + James + O'Shaughnessy + James + O'Shaughnessy + + nfl.p.28561 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/VRcEFSE2J3QpTF_BFGVXDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28561.png + small + + https://s.yimg.com/iu/api/res/1.2/VRcEFSE2J3QpTF_BFGVXDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28561.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 24 + + + 12 + 214 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 38 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.31068 + 31068 + + Jordan Akins + Jordan + Akins + Jordan + Akins + + nfl.p.31068 + nfl.t.34 + Houston Texans + Hou + + 10 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/dwKTWNnUWGVUocz0_X8Cng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31068.png + small + + https://s.yimg.com/iu/api/res/1.2/dwKTWNnUWGVUocz0_X8Cng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31068.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 17 + + + 12 + 225 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.31749 + 31749 + + Jaeden Graham + Jaeden + Graham + Jaeden + Graham + + nfl.p.31749 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29857 + 29857 + + Ryan Malleck + Ryan + Malleck + Ryan + Malleck + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29857 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/G2jzVilXJlo02Sj5UDc17g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29857.png + small + + https://s.yimg.com/iu/api/res/1.2/G2jzVilXJlo02Sj5UDc17g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29857.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29418 + 29418 + + Jerell Adams + Jerell + Adams + Jerell + Adams + + nfl.p.29418 + nfl.t.34 + Houston Texans + Hou + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/9YEGS_WUAuJfLzuVzDIlxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29418.png + small + + https://s.yimg.com/iu/api/res/1.2/9YEGS_WUAuJfLzuVzDIlxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29418.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29269 + 29269 + + Hunter Henry + Hunter + Henry + Hunter + Henry + + knee + nfl.p.29269 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/a6eWsvpkP22wQ1mPSGKwXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/29269.png + small + + https://s.yimg.com/iu/api/res/1.2/a6eWsvpkP22wQ1mPSGKwXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/29269.png + 0 + O + + TE + + 1 + 1547422680 + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28348 + 28348 + + Jerome Cunningham + Jerome + Cunningham + Jerome + Cunningham + + nfl.p.28348 + nfl.t.8 + Detroit Lions + Det + + 6 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/C67TDpL.d6xOVM.7tt3ukg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28348.png + small + + https://s.yimg.com/iu/api/res/1.2/C67TDpL.d6xOVM.7tt3ukg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28348.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31345 + 31345 + + Jake Roh + Jake + Roh + Jake + Roh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31345 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31656 + 31656 + + Dejon Allen + Dejon + Allen + Dejon + Allen + + nfl.p.31656 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 62 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31298 + 31298 + + Alec Bloom + Alec + Bloom + Alec + Bloom + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31298 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/u_U8_wjrhqNaSmzf2UWR5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31298.png + small + + https://s.yimg.com/iu/api/res/1.2/u_U8_wjrhqNaSmzf2UWR5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31298.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31680 + 31680 + + Cole Hunt + Cole + Hunt + Cole + Hunt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31680 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25291 + 25291 + + Kyle Nelson + Kyle + Nelson + Kyle + Nelson + + nfl.p.25291 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/RcLkMAyRf_fe9bY7DJQyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25291.png + small + + https://s.yimg.com/iu/api/res/1.2/RcLkMAyRf_fe9bY7DJQyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25291.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30441 + 30441 + + Josiah Price + Josiah + Price + Josiah + Price + + IR + Injured Reserve + knee + nfl.p.30441 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/Yy9Lg4_avBp3cRPRBwFNsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30441.png + small + + https://s.yimg.com/iu/api/res/1.2/Yy9Lg4_avBp3cRPRBwFNsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30441.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31364 + 31364 + + Christian Scotland-Williamson + Christian + Scotland-Williamson + Christian + Scotland-Williamson + + nfl.p.31364 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/K7P1fJ87DfFjVTtc457qng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31364.png + small + + https://s.yimg.com/iu/api/res/1.2/K7P1fJ87DfFjVTtc457qng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31364.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31505 + 31505 + + Julian Allen + Julian + Allen + Julian + Allen + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31505 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27941 + 27941 + + Marcus Lucas + Marcus + Lucas + Marcus + Lucas + + nfl.p.27941 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/O_o7Nfu4Uxpv1sgc0V_sBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27941.png + small + + https://s.yimg.com/iu/api/res/1.2/O_o7Nfu4Uxpv1sgc0V_sBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27941.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31519 + 31519 + + Deon Yelder + Deon + Yelder + Deon + Yelder + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31519 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30627 + 30627 + + Pharaoh Brown + Pharaoh + Brown + Pharaoh + Brown + + IR + Injured Reserve + shoulder + nfl.p.30627 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/7OLrAKnHzlXyxqPx3Braog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30627.png + small + + https://s.yimg.com/iu/api/res/1.2/7OLrAKnHzlXyxqPx3Braog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30627.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28511 + 28511 + + Vince Mayle + Vince + Mayle + Vince + Mayle + + nfl.p.28511 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/WaP6knyc9E9elJxPV6sqcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28511.png + small + + https://s.yimg.com/iu/api/res/1.2/WaP6knyc9E9elJxPV6sqcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28511.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29055 + 29055 + + Tim Semisch + Tim + Semisch + Tim + Semisch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29055 + nfl.t.7 + Denver Broncos + Den + + 10 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/5Tdhyg_EALK41PsGyrMfYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29055.png + small + + https://s.yimg.com/iu/api/res/1.2/5Tdhyg_EALK41PsGyrMfYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29055.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30527 + 30527 + + Colin Jeter + Colin + Jeter + Colin + Jeter + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30527 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/KqKXexoeqre9XlvXjdn1KA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30527.png + small + + https://s.yimg.com/iu/api/res/1.2/KqKXexoeqre9XlvXjdn1KA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30527.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29666 + 29666 + + J.P. Holtz + J.P. + Holtz + J.P. + Holtz + + nfl.p.29666 + nfl.t.28 + Washington Redskins + Was + + 4 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/hFk8Qkszaas67tLR15G8wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29666.png + small + + https://s.yimg.com/iu/api/res/1.2/hFk8Qkszaas67tLR15G8wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29666.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31719 + 31719 + + Clayton Wilson + Clayton + Wilson + Clayton + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31719 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29764 + 29764 + + Devon Cajuste + Devon + Cajuste + Devon + Cajuste + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29764 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/5G5jlBgi7dmkVFVYoNZQGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29764.png + small + + https://s.yimg.com/iu/api/res/1.2/5G5jlBgi7dmkVFVYoNZQGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29764.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29414 + 29414 + + Moritz Boehringer + Moritz + Boehringer + Moritz + Boehringer + + nfl.p.29414 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/Vwp4_n3De_lBijBdz_zAPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29414.png + small + + https://s.yimg.com/iu/api/res/1.2/Vwp4_n3De_lBijBdz_zAPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29414.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29623 + 29623 + + Henry Krieger-Coble + Henry + Krieger-Coble + Henry + Krieger-Coble + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29623 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/vCVPre4IfPbhKGBInhuwTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29623.png + small + + https://s.yimg.com/iu/api/res/1.2/vCVPre4IfPbhKGBInhuwTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29623.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31283 + 31283 + + David Wells + David + Wells + David + Wells + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31283 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/HdpDJJg6oFfoRqkqDYcjVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31283.png + small + + https://s.yimg.com/iu/api/res/1.2/HdpDJJg6oFfoRqkqDYcjVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31283.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31746 + 31746 + + Garrett Hudson + Garrett + Hudson + Garrett + Hudson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31746 + nfl.t.28 + Washington Redskins + Was + + 4 + + 46 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30756 + 30756 + + Billy Brown + Billy + Brown + Billy + Brown + + nfl.p.30756 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/.3LrEW1kI5UAMwPMJKB6nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30756.png + small + + https://s.yimg.com/iu/api/res/1.2/.3LrEW1kI5UAMwPMJKB6nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30756.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30765 + 30765 + + Brandon Barnes + Brandon + Barnes + Brandon + Barnes + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30765 + nfl.t.8 + Detroit Lions + Det + + 6 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/6PNW4UcJOVcfsqAB7OrP4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30765.png + small + + https://s.yimg.com/iu/api/res/1.2/6PNW4UcJOVcfsqAB7OrP4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30765.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25992 + 25992 + + Sean McGrath + Sean + McGrath + Sean + McGrath + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25992 + nfl.t.8 + Detroit Lions + Det + + 6 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/2N74fP_osJs1dh1Gj4BNmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25992.png + small + + https://s.yimg.com/iu/api/res/1.2/2N74fP_osJs1dh1Gj4BNmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25992.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29944 + 29944 + + Alex Ellis + Alex + Ellis + Alex + Ellis + + IR + Injured Reserve + undisclosed + nfl.p.29944 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/I3B4GBEKLPB2u0Vt2pfqaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29944.png + small + + https://s.yimg.com/iu/api/res/1.2/I3B4GBEKLPB2u0Vt2pfqaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29944.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31501 + 31501 + + Ryan Smith + Ryan + Smith + Ryan + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31501 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31478 + 31478 + + Marcus Baugh + Marcus + Baugh + Marcus + Baugh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31478 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26807 + 26807 + + Mychal Rivera + Mychal + Rivera + Mychal + Rivera + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26807 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/nbhFx2HxdFhTR3q2G_XgxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/26807.png + small + + https://s.yimg.com/iu/api/res/1.2/nbhFx2HxdFhTR3q2G_XgxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/26807.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30577 + 30577 + + Cethan Carter + Cethan + Carter + Cethan + Carter + + IR + Injured Reserve + shoulder + nfl.p.30577 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/zkwFtld4HwpLtZnzwLArSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30577.png + small + + https://s.yimg.com/iu/api/res/1.2/zkwFtld4HwpLtZnzwLArSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30577.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30603 + 30603 + + Keith Towbridge + Keith + Towbridge + Keith + Towbridge + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30603 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/NmGNF.dkN7Gl_rAIdzx7MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30603.png + small + + https://s.yimg.com/iu/api/res/1.2/NmGNF.dkN7Gl_rAIdzx7MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30603.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29208 + 29208 + + Ross Travis + Ross + Travis + Ross + Travis + + IR + Injured Reserve + undisclosed + nfl.p.29208 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 43 + TE + + https://s.yimg.com/iu/api/res/1.2/lZPG19GOLYjddffpSP3s7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29208.png + small + + https://s.yimg.com/iu/api/res/1.2/lZPG19GOLYjddffpSP3s7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29208.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29728 + 29728 + + David Grinnage + David + Grinnage + David + Grinnage + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.29728 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 61 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.24108 + 24108 + + Michael Hoomanawanui + Michael + Hoomanawanui + Michael + Hoomanawanui + + IR + Injured Reserve + undisclosed + nfl.p.24108 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/M4DaFQtaQ4Uh8fzO_1xEpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/24108.png + small + + https://s.yimg.com/iu/api/res/1.2/M4DaFQtaQ4Uh8fzO_1xEpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/24108.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29508 + 29508 + + Braedon Bowman + Braedon + Bowman + Braedon + Bowman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29508 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/.tsnK6h_GcdkHnnY7oVtrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29508.png + small + + https://s.yimg.com/iu/api/res/1.2/.tsnK6h_GcdkHnnY7oVtrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29508.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30632 + 30632 + + Anthony Kukwa + Anthony + Kukwa + Anthony + Kukwa + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30632 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + TE + + https://s.yimg.com/iu/api/res/1.2/Tj9i4E6UrZ3erx0wE3ceig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30632.png + small + + https://s.yimg.com/iu/api/res/1.2/Tj9i4E6UrZ3erx0wE3ceig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30632.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27494 + 27494 + + James Winchester + James + Winchester + James + Winchester + + nfl.p.27494 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 41 + TE + + https://s.yimg.com/iu/api/res/1.2/wTzSHUnLrQkv1Q1_zQyhFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27494.png + small + + https://s.yimg.com/iu/api/res/1.2/wTzSHUnLrQkv1Q1_zQyhFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27494.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27214 + 27214 + + Kevin McDermott + Kevin + McDermott + Kevin + McDermott + + nfl.p.27214 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 47 + TE + + https://s.yimg.com/iu/api/res/1.2/tGeCfLpTCEuSsvjJ9YAFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27214.png + small + + https://s.yimg.com/iu/api/res/1.2/tGeCfLpTCEuSsvjJ9YAFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27214.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30314 + 30314 + + Bucky Hodges + Bucky + Hodges + Bucky + Hodges + + nfl.p.30314 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/1wKu2oNYD1Ly7N5SHex42A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062017/30314.png + small + + https://s.yimg.com/iu/api/res/1.2/1wKu2oNYD1Ly7N5SHex42A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062017/30314.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28590 + 28590 + + A.J. Derby + A.J. + Derby + A.J. + Derby + + IR + Injured Reserve + foot, knee + nfl.p.28590 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/4Ii8pEJsxevXfstqPq5hLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28590.png + small + + https://s.yimg.com/iu/api/res/1.2/4Ii8pEJsxevXfstqPq5hLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28590.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 48 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.8497 + 8497 + + Clark Harris + Clark + Harris + Clark + Harris + + nfl.p.8497 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 46 + TE + + https://s.yimg.com/iu/api/res/1.2/037vmO3opGUQrRxFkajAlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8497.png + small + + https://s.yimg.com/iu/api/res/1.2/037vmO3opGUQrRxFkajAlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8497.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26845 + 26845 + + Chris Gragg + Chris + Gragg + Chris + Gragg + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26845 + nfl.t.20 + New York Jets + NYJ + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/dc5rkWYFYlgp0pU1HmECeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26845.1.png + small + + https://s.yimg.com/iu/api/res/1.2/dc5rkWYFYlgp0pU1HmECeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26845.1.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31751 + 31751 + + Garrett Dickerson + Garrett + Dickerson + Garrett + Dickerson + + nfl.p.31751 + nfl.t.19 + New York Giants + NYG + + 9 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24303 + 24303 + + Jeff Cumberland + Jeff + Cumberland + Jeff + Cumberland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24303 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/Vw32C7YyQ1Fc27Dn57AFKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/24303.png + small + + https://s.yimg.com/iu/api/res/1.2/Vw32C7YyQ1Fc27Dn57AFKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/24303.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31441 + 31441 + + Kevin Rader + Kevin + Rader + Kevin + Rader + + nfl.p.31441 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.9444 + 9444 + + Zach Miller + Zach + Miller + Zach + Miller + + IR + Injured Reserve + nfl.p.9444 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/CGStzRb1N.iCo4LvapW38w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/9444.png + small + + https://s.yimg.com/iu/api/res/1.2/CGStzRb1N.iCo4LvapW38w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/9444.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30661 + 30661 + + Jacob Hollister + Jacob + Hollister + Jacob + Hollister + + IR + Injured Reserve + hamstring + nfl.p.30661 + nfl.t.17 + New England Patriots + NE + + 11 + + 47 + TE + + https://s.yimg.com/iu/api/res/1.2/F5ux6qy1hQ1DHw36OBfCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30661.png + small + + https://s.yimg.com/iu/api/res/1.2/F5ux6qy1hQ1DHw36OBfCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30661.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 52 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.28941 + 28941 + + Wes Saxton + Wes + Saxton + Wes + Saxton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28941 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 43 + TE + + https://s.yimg.com/iu/api/res/1.2/tXS3hNVJe5nLpTsAJIDFrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28941.png + small + + https://s.yimg.com/iu/api/res/1.2/tXS3hNVJe5nLpTsAJIDFrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28941.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27213 + 27213 + + MarQueis Gray + MarQueis + Gray + MarQueis + Gray + + IR + Injured Reserve + undisclosed + nfl.p.27213 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/i1KocxH960qwWqHHS0Vz7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27213.png + small + + https://s.yimg.com/iu/api/res/1.2/i1KocxH960qwWqHHS0Vz7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27213.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28221 + 28221 + + Tyler Ott + Tyler + Ott + Tyler + Ott + + illness + nfl.p.28221 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 69 + TE + + https://s.yimg.com/iu/api/res/1.2/Q5hdvW9aPA7i1Xzz_pmgiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28221.png + small + + https://s.yimg.com/iu/api/res/1.2/Q5hdvW9aPA7i1Xzz_pmgiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28221.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31682 + 31682 + + Ben Johnson + Ben + Johnson + Ben + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31682 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31546 + 31546 + + Stephen Baggett + Stephen + Baggett + Stephen + Baggett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31546 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29102 + 29102 + + Daniel Brown + Daniel + Brown + Daniel + Brown + + shoulder + nfl.p.29102 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/i0dyJEWo7JYKqiMULZXsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29102.png + small + + https://s.yimg.com/iu/api/res/1.2/i0dyJEWo7JYKqiMULZXsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29102.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30702 + 30702 + + Emanuel Byrd + Emanuel + Byrd + Emanuel + Byrd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30702 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/cCuVZdzP6rebNSsJphXG2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30702.png + small + + https://s.yimg.com/iu/api/res/1.2/cCuVZdzP6rebNSsJphXG2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30702.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28964 + 28964 + + Gabe Holmes + Gabe + Holmes + Gabe + Holmes + + nfl.p.28964 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/4DUFrCjPhQZld5l_xY2wCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28964.png + small + + https://s.yimg.com/iu/api/res/1.2/4DUFrCjPhQZld5l_xY2wCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28964.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31220 + 31220 + + Ryan Izzo + Ryan + Izzo + Ryan + Izzo + + IR + Injured Reserve + undisclosed + nfl.p.31220 + nfl.t.17 + New England Patriots + NE + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/yjXm0HjkCW_TGE30zSTwKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31220.png + small + + https://s.yimg.com/iu/api/res/1.2/yjXm0HjkCW_TGE30zSTwKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31220.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27103 + 27103 + + Brandon Williams + Brandon + Williams + Brandon + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27103 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/HJ.221ncEUlniHTGrmd2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27103.png + small + + https://s.yimg.com/iu/api/res/1.2/HJ.221ncEUlniHTGrmd2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27103.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28813 + 28813 + + Gannon Sinclair + Gannon + Sinclair + Gannon + Sinclair + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28813 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/2zlSJJVNEQGsphKSlmMiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28813.png + small + + https://s.yimg.com/iu/api/res/1.2/2zlSJJVNEQGsphKSlmMiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28813.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30962 + 30962 + + Chris Bazile + Chris + Bazile + Chris + Bazile + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30962 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30908 + 30908 + + Adam Zaruba + Adam + Zaruba + Adam + Zaruba + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30908 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/He1twwFkfBj..CQ16sutkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30908.png + small + + https://s.yimg.com/iu/api/res/1.2/He1twwFkfBj..CQ16sutkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30908.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27577 + 27577 + + Jace Amaro + Jace + Amaro + Jace + Amaro + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27577 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/wAP2yIEKVrxZBz7boZz2.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27577.png + small + + https://s.yimg.com/iu/api/res/1.2/wAP2yIEKVrxZBz7boZz2.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27577.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29879 + 29879 + + Bryce Williams + Bryce + Williams + Bryce + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29879 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/TvImmkYGCi4VsKF_TDbdNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29879.png + small + + https://s.yimg.com/iu/api/res/1.2/TvImmkYGCi4VsKF_TDbdNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29879.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30763 + 30763 + + Tyrone Swoopes + Tyrone + Swoopes + Tyrone + Swoopes + + nfl.p.30763 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 46 + TE + + https://s.yimg.com/iu/api/res/1.2/nW_ep359I3U1sFqXcExP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30763.png + small + + https://s.yimg.com/iu/api/res/1.2/nW_ep359I3U1sFqXcExP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30763.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 23 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.30559 + 30559 + + Cole Hikutini + Cole + Hikutini + Cole + Hikutini + + nfl.p.30559 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/2yzhs1.LtwmO9yHJU0ig8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30559.png + small + + https://s.yimg.com/iu/api/res/1.2/2yzhs1.LtwmO9yHJU0ig8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30559.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31491 + 31491 + + Blake Mack + Blake + Mack + Blake + Mack + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31491 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31416 + 31416 + + Nate Wozniak + Nate + Wozniak + Nate + Wozniak + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31416 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 79 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31325 + 31325 + + Andrew Vollert + Andrew + Vollert + Andrew + Vollert + + nfl.p.31325 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/mRzOkB1MX8Zyd0jZZomtOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31325.png + small + + https://s.yimg.com/iu/api/res/1.2/mRzOkB1MX8Zyd0jZZomtOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31325.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.9472 + 9472 + + John Phillips + John + Phillips + John + Phillips + + knee + nfl.p.9472 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/VI1lHBWhG7OtwqBS2dzeyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/9472.png + small + + https://s.yimg.com/iu/api/res/1.2/VI1lHBWhG7OtwqBS2dzeyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/9472.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 38 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.7802 + 7802 + + Anthony Fasano + Anthony + Fasano + Anthony + Fasano + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7802 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/KRy9M5mYOiBA7PAm9RmcSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7802.png + small + + https://s.yimg.com/iu/api/res/1.2/KRy9M5mYOiBA7PAm9RmcSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7802.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31427 + 31427 + + Nick Keizer + Nick + Keizer + Nick + Keizer + + nfl.p.31427 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30008 + 30008 + + Austin Traylor + Austin + Traylor + Austin + Traylor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30008 + nfl.t.7 + Denver Broncos + Den + + 10 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/rF2m2PGsEiwjmhxFgQuaHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30008.png + small + + https://s.yimg.com/iu/api/res/1.2/rF2m2PGsEiwjmhxFgQuaHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30008.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30888 + 30888 + + Alex Gray + Alex + Gray + Alex + Gray + + nfl.p.30888 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/i2rhscZahCizjc3VngxE4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30888.png + small + + https://s.yimg.com/iu/api/res/1.2/i2rhscZahCizjc3VngxE4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30888.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29046 + 29046 + + Will Tye + Will + Tye + Will + Tye + + nfl.p.29046 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/xdP5V2TS15v5nnmQ7LkglQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29046.png + small + + https://s.yimg.com/iu/api/res/1.2/xdP5V2TS15v5nnmQ7LkglQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29046.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24100 + 24100 + + Clay Harbor + Clay + Harbor + Clay + Harbor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24100 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/pXyUZHm7uWQdaLjO8xqTWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/24100.png + small + + https://s.yimg.com/iu/api/res/1.2/pXyUZHm7uWQdaLjO8xqTWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/24100.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30795 + 30795 + + Evan Baylis + Evan + Baylis + Evan + Baylis + + nfl.p.30795 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/UkdOMT_Qx15SIUEp39sprQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30795.png + small + + https://s.yimg.com/iu/api/res/1.2/UkdOMT_Qx15SIUEp39sprQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30795.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29504 + 29504 + + Jake McGee + Jake + McGee + Jake + McGee + + IR + Injured Reserve + knee + nfl.p.29504 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/KwkG1OQFJpGNFY4cDI7J5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29504.png + small + + https://s.yimg.com/iu/api/res/1.2/KwkG1OQFJpGNFY4cDI7J5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/29504.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29783 + 29783 + + Cole Wick + Cole + Wick + Cole + Wick + + IR + Injured Reserve + shoulder + nfl.p.29783 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/BseeXLil5w8xkxHn1pt_iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29783.png + small + + https://s.yimg.com/iu/api/res/1.2/BseeXLil5w8xkxHn1pt_iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29783.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29095 + 29095 + + Manasseh Garner + Manasseh + Garner + Manasseh + Garner + + IR + Injured Reserve + torn ACL + nfl.p.29095 + nfl.t.28 + Washington Redskins + Was + + 4 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/rkSfEoaXswQFPyIiNp9oaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29095.png + small + + https://s.yimg.com/iu/api/res/1.2/rkSfEoaXswQFPyIiNp9oaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29095.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26729 + 26729 + + Dion Sims + Dion + Sims + Dion + Sims + + IR + Injured Reserve + concussion + nfl.p.26729 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/cRuLNw..lCelKWKW_kS8qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26729.png + small + + https://s.yimg.com/iu/api/res/1.2/cRuLNw..lCelKWKW_kS8qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26729.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 9 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31276 + 31276 + + Jason Reese + Jason + Reese + Jason + Reese + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31276 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/zZJi.xQyKF49m7mtmV42uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31276.png + small + + https://s.yimg.com/iu/api/res/1.2/zZJi.xQyKF49m7mtmV42uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31276.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29806 + 29806 + + Jason Vander Laan + Jason + Vander Laan + Jason + Vander Laan + + nfl.p.29806 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/3o9fzqPGGb3A7LMyNPD.vQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29806.png + small + + https://s.yimg.com/iu/api/res/1.2/3o9fzqPGGb3A7LMyNPD.vQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29806.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30373 + 30373 + + Johnny Mundt + Johnny + Mundt + Johnny + Mundt + + nfl.p.30373 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/6RW2yvPtQKaRlIB1OGhbrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30373.png + small + + https://s.yimg.com/iu/api/res/1.2/6RW2yvPtQKaRlIB1OGhbrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/30373.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 5 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31528 + 31528 + + Pharoah McKever + Pharoah + McKever + Pharoah + McKever + + nfl.p.31528 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31234 + 31234 + + Tyler Hoppes + Tyler + Hoppes + Tyler + Hoppes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31234 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/8ToPukj3nOVl8ajZPYzHSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31234.png + small + + https://s.yimg.com/iu/api/res/1.2/8ToPukj3nOVl8ajZPYzHSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31234.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24916 + 24916 + + Julius Thomas + Julius + Thomas + Julius + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24916 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/r9dw5zP0Sjlp0co0AP6cpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/24916.png + small + + https://s.yimg.com/iu/api/res/1.2/r9dw5zP0Sjlp0co0AP6cpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/24916.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29486 + 29486 + + Beau Sandland + Beau + Sandland + Beau + Sandland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29486 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/QBIfjJWDwKk7YJ0eb_VYbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29486.png + small + + https://s.yimg.com/iu/api/res/1.2/QBIfjJWDwKk7YJ0eb_VYbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29486.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27580 + 27580 + + Troy Niklas + Troy + Niklas + Troy + Niklas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27580 + nfl.t.17 + New England Patriots + NE + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/4a._P_lS4mzntPMl7V6i6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27580.png + small + + https://s.yimg.com/iu/api/res/1.2/4a._P_lS4mzntPMl7V6i6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27580.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30958 + 30958 + + Jevoni Robinson + Jevoni + Robinson + Jevoni + Robinson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30958 + nfl.t.34 + Houston Texans + Hou + + 10 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/7NoxMnqd1W.U6l0rzS9p4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30958.png + small + + https://s.yimg.com/iu/api/res/1.2/7NoxMnqd1W.U6l0rzS9p4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30958.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30024 + 30024 + + Garrett Griffin + Garrett + Griffin + Garrett + Griffin + + nfl.p.30024 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 45 + TE + + https://s.yimg.com/iu/api/res/1.2/jYhXx8FCzgyzJSg.Iv9OhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30024.png + small + + https://s.yimg.com/iu/api/res/1.2/jYhXx8FCzgyzJSg.Iv9OhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30024.png + 0 + O + + TE + + 1 + 1 + 1548030900 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27593 + 27593 + + C.J. Fiedorowicz + C.J. + Fiedorowicz + C.J. + Fiedorowicz + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27593 + nfl.t.34 + Houston Texans + Hou + + 10 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/60.6bL59dds8DntPHEx2ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27593.png + small + + https://s.yimg.com/iu/api/res/1.2/60.6bL59dds8DntPHEx2ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27593.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25774 + 25774 + + Dwayne Allen + Dwayne + Allen + Dwayne + Allen + + knee + nfl.p.25774 + nfl.t.17 + New England Patriots + NE + + 11 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/DRhA1_wWNzk4.CsXrZqYBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/25774.png + small + + https://s.yimg.com/iu/api/res/1.2/DRhA1_wWNzk4.CsXrZqYBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/25774.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 27 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.29537 + 29537 + + Kyle Carter + Kyle + Carter + Kyle + Carter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29537 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/7eeDvuU7F1HeOTofxy71yA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29537.png + small + + https://s.yimg.com/iu/api/res/1.2/7eeDvuU7F1HeOTofxy71yA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29537.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26497 + 26497 + + Phillip Supernaw + Phillip + Supernaw + Phillip + Supernaw + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26497 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/.WYcHKELyev1jc2W21CEzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26497.png + small + + https://s.yimg.com/iu/api/res/1.2/.WYcHKELyev1jc2W21CEzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26497.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25896 + 25896 + + James Hanna + James + Hanna + James + Hanna + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25896 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/UXH_vX8NPYDTQ5MFMJxdgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25896.png + small + + https://s.yimg.com/iu/api/res/1.2/UXH_vX8NPYDTQ5MFMJxdgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25896.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28893 + 28893 + + Khari Lee + Khari + Lee + Khari + Lee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28893 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/3K1L6eIh3F5Op18Lnq0Ohw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28893.png + small + + https://s.yimg.com/iu/api/res/1.2/3K1L6eIh3F5Op18Lnq0Ohw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28893.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 5 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30364 + 30364 + + Mason Schreck + Mason + Schreck + Mason + Schreck + + IR + Injured Reserve + left leg + nfl.p.30364 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/Q0LXCgimbx4_1FJciPOSNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30364.png + small + + https://s.yimg.com/iu/api/res/1.2/Q0LXCgimbx4_1FJciPOSNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30364.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31635 + 31635 + + DeAndre Goolsby + DeAndre + Goolsby + DeAndre + Goolsby + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31635 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31126 + 31126 + + Troy Fumagalli + Troy + Fumagalli + Troy + Fumagalli + + IR + Injured Reserve + groin + nfl.p.31126 + nfl.t.7 + Denver Broncos + Den + + 10 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/GWGCuownFQ7QhJZhQvmJZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31126.png + small + + https://s.yimg.com/iu/api/res/1.2/GWGCuownFQ7QhJZhQvmJZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31126.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30957 + 30957 + + Kent Taylor + Kent + Taylor + Kent + Taylor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30957 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29587 + 29587 + + Hakeem Valles + Hakeem + Valles + Hakeem + Valles + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29587 + nfl.t.19 + New York Giants + NYG + + 9 + + 49 + TE + + https://s.yimg.com/iu/api/res/1.2/zMnNylF459lXTQJ0K5tkyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29587.png + small + + https://s.yimg.com/iu/api/res/1.2/zMnNylF459lXTQJ0K5tkyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29587.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 11 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28456 + 28456 + + Clive Walford + Clive + Walford + Clive + Walford + + nfl.p.28456 + nfl.t.20 + New York Jets + NYJ + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/psIJ3_hfPqiX12H0A3sq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28456.png + small + + https://s.yimg.com/iu/api/res/1.2/psIJ3_hfPqiX12H0A3sq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28456.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28617 + 28617 + + Ben Koyack + Ben + Koyack + Ben + Koyack + + Q + Questionable + undisclosed + nfl.p.28617 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/uL.tWc9IYDbluE6.6j4BOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28617.png + small + + https://s.yimg.com/iu/api/res/1.2/uL.tWc9IYDbluE6.6j4BOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28617.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28365 + 28365 + + Chris Manhertz + Chris + Manhertz + Chris + Manhertz + + foot + nfl.p.28365 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/Ase_SUQDk0UlacCL_KlW1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28365.png + small + + https://s.yimg.com/iu/api/res/1.2/Ase_SUQDk0UlacCL_KlW1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28365.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 52 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 5 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.26583 + 26583 + + Andrew DePaola + Andrew + DePaola + Andrew + DePaola + + IR + Injured Reserve + undisclosed + nfl.p.26583 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/398bWYzleoM6ZWPuMvlqsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26583.png + small + + https://s.yimg.com/iu/api/res/1.2/398bWYzleoM6ZWPuMvlqsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26583.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31329 + 31329 + + Ross Dwelley + Ross + Dwelley + Ross + Dwelley + + nfl.p.31329 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/R20f0CoWjGUxnXv_ozEaRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31329.png + small + + https://s.yimg.com/iu/api/res/1.2/R20f0CoWjGUxnXv_ozEaRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31329.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 14 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26670 + 26670 + + Gavin Escobar + Gavin + Escobar + Gavin + Escobar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26670 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/taAT4iGBKX77s4H7jvkHYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26670.png + small + + https://s.yimg.com/iu/api/res/1.2/taAT4iGBKX77s4H7jvkHYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262018/26670.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8416 + 8416 + + Brent Celek + Brent + Celek + Brent + Celek + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8416 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/xY0xljBcF9iYIHrkt53tyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8416.png + small + + https://s.yimg.com/iu/api/res/1.2/xY0xljBcF9iYIHrkt53tyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8416.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31400 + 31400 + + Matt Flanagan + Matt + Flanagan + Matt + Flanagan + + nfl.p.31400 + nfl.t.28 + Washington Redskins + Was + + 4 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/1xIFy5YsDcGu_8KmHPLjew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31400.png + small + + https://s.yimg.com/iu/api/res/1.2/1xIFy5YsDcGu_8KmHPLjew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31400.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 14 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29963 + 29963 + + Ryan O'Malley + Ryan + O'Malley + Ryan + O'Malley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29963 + nfl.t.19 + New York Giants + NYG + + 9 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/rn7Nf4kYFpp3SUczxMFcjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29963.png + small + + https://s.yimg.com/iu/api/res/1.2/rn7Nf4kYFpp3SUczxMFcjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29963.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.6405 + 6405 + + Jason Witten + Jason + Witten + Jason + Witten + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.6405 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/YLfUMGClhJoiZBtm8jPpew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/6405.png + small + + https://s.yimg.com/iu/api/res/1.2/YLfUMGClhJoiZBtm8jPpew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/6405.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31346 + 31346 + + Troy Mangen + Troy + Mangen + Troy + Mangen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31346 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/kO_J2y8s.J8r7j2T6lMMWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31346.png + small + + https://s.yimg.com/iu/api/res/1.2/kO_J2y8s.J8r7j2T6lMMWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31346.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27050 + 27050 + + Tim Wright + Tim + Wright + Tim + Wright + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27050 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/bxbVojvgfKhOH5WMNnGKpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27050.png + small + + https://s.yimg.com/iu/api/res/1.2/bxbVojvgfKhOH5WMNnGKpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27050.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31654 + 31654 + + Shane Wimann + Shane + Wimann + Shane + Wimann + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31654 + nfl.t.17 + New England Patriots + NE + + 11 + + + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31255 + 31255 + + Donnie Ernsberger + Donnie + Ernsberger + Donnie + Ernsberger + + nfl.p.31255 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/Fkp.a3EvKO1_I.ZDxwNcZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31255.png + small + + https://s.yimg.com/iu/api/res/1.2/Fkp.a3EvKO1_I.ZDxwNcZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31255.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31627 + 31627 + + Ethan Wolf + Ethan + Wolf + Ethan + Wolf + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31627 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28586 + 28586 + + Randall Telfer + Randall + Telfer + Randall + Telfer + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28586 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/zpb.6C5GQVXpKvUDUgo4Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28586.png + small + + https://s.yimg.com/iu/api/res/1.2/zpb.6C5GQVXpKvUDUgo4Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28586.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31747 + 31747 + + Austin Roberts + Austin + Roberts + Austin + Roberts + + IR + Injured Reserve + knee + nfl.p.31747 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29532 + 29532 + + Matt Weiser + Matt + Weiser + Matt + Weiser + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29532 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/oN00vRV93fVSNootGUkhoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29532.png + small + + https://s.yimg.com/iu/api/res/1.2/oN00vRV93fVSNootGUkhoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29532.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30800 + 30800 + + Zach Conque + Zach + Conque + Zach + Conque + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30800 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/b4QbIxym72aQkgTjjkjC7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30800.png + small + + https://s.yimg.com/iu/api/res/1.2/b4QbIxym72aQkgTjjkjC7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30800.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27626 + 27626 + + Richard Rodgers + Richard + Rodgers + Richard + Rodgers + + knee + nfl.p.27626 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/.C0lEyWlhABmKpSyxl.2Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27626.png + small + + https://s.yimg.com/iu/api/res/1.2/.C0lEyWlhABmKpSyxl.2Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27626.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 7 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29465 + 29465 + + Thomas Duarte + Thomas + Duarte + Thomas + Duarte + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29465 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/17I2nIxOo6rFI03E0WQKAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29465.png + small + + https://s.yimg.com/iu/api/res/1.2/17I2nIxOo6rFI03E0WQKAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29465.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30420 + 30420 + + Sean Culkin + Sean + Culkin + Sean + Culkin + + back + nfl.p.30420 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/gKQovaI6.hVfkI3Yq.O4wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30420.png + small + + https://s.yimg.com/iu/api/res/1.2/gKQovaI6.hVfkI3Yq.O4wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30420.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 24 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.25744 + 25744 + + Coby Fleener + Coby + Fleener + Coby + Fleener + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25744 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/VWsuXKih6gWUaJxR6c3Ohg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/25744.png + small + + https://s.yimg.com/iu/api/res/1.2/VWsuXKih6gWUaJxR6c3Ohg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/25744.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27926 + 27926 + + Je'Ron Hamm + Je'Ron + Hamm + Je'Ron + Hamm + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27926 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/3.i5kVU.LztBCo4VIZOhMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27926.png + small + + https://s.yimg.com/iu/api/res/1.2/3.i5kVU.LztBCo4VIZOhMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27926.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29411 + 29411 + + Temarrick Hemingway + Temarrick + Hemingway + Temarrick + Hemingway + + nfl.p.29411 + nfl.t.7 + Denver Broncos + Den + + 10 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/ZQBUpSpwMqXGvOhbxjIUvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29411.png + small + + https://s.yimg.com/iu/api/res/1.2/ZQBUpSpwMqXGvOhbxjIUvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29411.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31561 + 31561 + + Jordan Franks + Jordan + Franks + Jordan + Franks + + nfl.p.31561 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 88 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 37 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.28192 + 28192 + + Anthony Denham + Anthony + Denham + Anthony + Denham + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28192 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/jtS1pjg.99IzyncKUD44xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28192.png + small + + https://s.yimg.com/iu/api/res/1.2/jtS1pjg.99IzyncKUD44xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28192.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25370 + 25370 + + Patrick Scales + Patrick + Scales + Patrick + Scales + + nfl.p.25370 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/2BwJOmF1ZxCPe5FkfjMSzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25370.png + small + + https://s.yimg.com/iu/api/res/1.2/2BwJOmF1ZxCPe5FkfjMSzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25370.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31770 + 31770 + + Cam Serigne + Cam + Serigne + Cam + Serigne + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31770 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31515 + 31515 + + Paul Butler + Paul + Butler + Paul + Butler + + nfl.p.31515 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30740 + 30740 + + Colin Thompson + Colin + Thompson + Colin + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30740 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/8wsKN3Q7xW_wCiTj_B1vNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30740.png + small + + https://s.yimg.com/iu/api/res/1.2/8wsKN3Q7xW_wCiTj_B1vNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30740.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30388 + 30388 + + Scott Orndoff + Scott + Orndoff + Scott + Orndoff + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30388 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/9eIkzUuhf7HoynuffUT_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30388.png + small + + https://s.yimg.com/iu/api/res/1.2/9eIkzUuhf7HoynuffUT_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30388.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24834 + 24834 + + Lance Kendricks + Lance + Kendricks + Lance + Kendricks + + nfl.p.24834 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/tQVe.fnl3K_TAlGpuVCt.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24834.png + small + + https://s.yimg.com/iu/api/res/1.2/tQVe.fnl3K_TAlGpuVCt.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24834.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 19 + + + 12 + 170 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 9 + + + 81 + 0 + + + + + + 380.p.100027 + 100027 + + Tampa Bay + Tampa Bay + + Tampa Bay + + + nfl.p.100027 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/tam.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/tam.gif + 0 + DT + + DEF + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 438 + + + 32 + 38.0 + + + 33 + 9 + + + 34 + 8 + + + 35 + 1 + + + 36 + 0 + + + 37 + 0 + + + 48 + 794 + + + 49 + 0 + + + 50 + 0 + + + 51 + 0 + + + 52 + 1 + + + 53 + 3 + + + 54 + 4 + + + 55 + 5 + + + 56 + 3 + + + 67 + 7 + + + 68 + 85 + + + 69 + 6134 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 3 + + + 74 + 4 + + + 75 + 9 + + + 76 + 0 + + + 77 + 42 + + + 82 + 0 + + + + + + 380.p.29372 + 29372 + + Seth DeValve + Seth + DeValve + Seth + DeValve + + hamstring + nfl.p.29372 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/b.FfM8c52lP1Qu_WQkJrFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29372.png + small + + https://s.yimg.com/iu/api/res/1.2/b.FfM8c52lP1Qu_WQkJrFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29372.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 74 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.7868 + 7868 + + Brandon Marshall + Brandon + Marshall + Brandon + Marshall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7868 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/KL5.SArCl.edOiPKSQt4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7868.png + small + + https://s.yimg.com/iu/api/res/1.2/KL5.SArCl.edOiPKSQt4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7868.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 11 + + + 12 + 136 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 23 + + + 79 + 0 + + + 80 + 7 + + + 81 + 0 + + + + + + 380.p.31148 + 31148 + + Damion Ratley + Damion + Ratley + Damion + Ratley + + nfl.p.31148 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/HcUd5d0NHnqJASxhLyV0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31148.png + small + + https://s.yimg.com/iu/api/res/1.2/HcUd5d0NHnqJASxhLyV0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31148.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 13 + + + 12 + 144 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 20 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.29374 + 29374 + + Tajae Sharpe + Tajae + Sharpe + Tajae + Sharpe + + Q + Questionable + ankle + nfl.p.29374 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/0LcNKF8ZqqLKCCyFeEiqGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29374.png + small + + https://s.yimg.com/iu/api/res/1.2/0LcNKF8ZqqLKCCyFeEiqGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29374.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 16 + + + 10 + 0 + + + 11 + 26 + + + 12 + 316 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 47 + + + 79 + 0 + + + 80 + 22 + + + 81 + 1 + + + + + + 380.p.31107 + 31107 + + Dalton Schultz + Dalton + Schultz + Dalton + Schultz + + nfl.p.31107 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/5mG6G9mRqbuPpOTuHFnzxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31107.png + small + + https://s.yimg.com/iu/api/res/1.2/5mG6G9mRqbuPpOTuHFnzxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31107.png + 0 + O + + TE + + 1 + 1547356980 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 12 + + + 12 + 116 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 17 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.29638 + 29638 + + Maurice Harris + Maurice + Harris + Maurice + Harris + + IR + Injured Reserve + concussion + nfl.p.29638 + nfl.t.28 + Washington Redskins + Was + + 4 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/nOfsGqIIPZ.yYNs..h125A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29638.png + small + + https://s.yimg.com/iu/api/res/1.2/nOfsGqIIPZ.yYNs..h125A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29638.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 10 + + + 10 + 0 + + + 11 + 28 + + + 12 + 304 + + + 13 + 0 + + + 14 + 11 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 47 + + + 79 + 0 + + + 80 + 12 + + + 81 + 1 + + + + + + 380.p.27670 + 27670 + + Ryan Grant + Ryan + Grant + Ryan + Grant + + Q + Questionable + toe + nfl.p.27670 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/aNQu_HfvC25tJ3dMTLpVtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27670.png + small + + https://s.yimg.com/iu/api/res/1.2/aNQu_HfvC25tJ3dMTLpVtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27670.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 35 + + + 12 + 334 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 52 + + + 79 + 0 + + + 80 + 18 + + + 81 + 0 + + + + + + 380.p.28974 + 28974 + + Jake Kumerow + Jake + Kumerow + Jake + Kumerow + + hand + nfl.p.28974 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/vCSfUOKOotx.v.UePUg3Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28974.png + small + + https://s.yimg.com/iu/api/res/1.2/vCSfUOKOotx.v.UePUg3Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28974.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 8 + + + 12 + 103 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 11 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.30511 + 30511 + + Tim Patrick + Tim + Patrick + Tim + Patrick + + nfl.p.30511 + nfl.t.7 + Denver Broncos + Den + + 10 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/TEwm18Y0aD7ultplswb8Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30511.png + small + + https://s.yimg.com/iu/api/res/1.2/TEwm18Y0aD7ultplswb8Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30511.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 9 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 17 + + + 10 + 0 + + + 11 + 23 + + + 12 + 315 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 41 + + + 79 + 0 + + + 80 + 15 + + + 81 + 2 + + + + + + 380.p.30267 + 30267 + + Jeremy Sprinkle + Jeremy + Sprinkle + Jeremy + Sprinkle + + nfl.p.30267 + nfl.t.28 + Washington Redskins + Was + + 4 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/JbJSXtoZWDiedIeRk621Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30267.png + small + + https://s.yimg.com/iu/api/res/1.2/JbJSXtoZWDiedIeRk621Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30267.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 41 + + + 13 + 1 + + + 14 + 6 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.31177 + 31177 + + Equanimeous St. Brown + Equanimeous + St. Brown + Equanimeous + St. Brown + + Q + Questionable + concussion + nfl.p.31177 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/D3TlYUt_LVfOlVZpkK.xSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31177.png + small + + https://s.yimg.com/iu/api/res/1.2/D3TlYUt_LVfOlVZpkK.xSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31177.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 5 + + + 10 + 0 + + + 11 + 21 + + + 12 + 328 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 36 + + + 79 + 0 + + + 80 + 13 + + + 81 + 0 + + + + + + 380.p.28654 + 28654 + + Raheem Mostert + Raheem + Mostert + Raheem + Mostert + + IR + Injured Reserve + fractured forearm + nfl.p.28654 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/2mc8zfZAk10fu5IYBl1ILg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28654.png + small + + https://s.yimg.com/iu/api/res/1.2/2mc8zfZAk10fu5IYBl1ILg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28654.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 34 + + + 9 + 261 + + + 10 + 1 + + + 11 + 6 + + + 12 + 25 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 1 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 1 + + + 81 + 13 + + + + + + 380.p.31732 + 31732 + + Codey McElroy + Codey + McElroy + Codey + McElroy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31732 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 47 + WR,TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31743 + 31743 + + Kayaune Ross + Kayaune + Ross + Kayaune + Ross + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31743 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 11 + WR,TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31624 + 31624 + + Deontay Burnett + Deontay + Burnett + Deontay + Burnett + + nfl.p.31624 + nfl.t.20 + New York Jets + NYJ + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 10 + + + 12 + 143 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 15 + + + 79 + 0 + + + 80 + 7 + + + 81 + 0 + + + + + + 380.p.28608 + 28608 + + Neal Sterling + Neal + Sterling + Neal + Sterling + + IR + Injured Reserve + concussion + nfl.p.28608 + nfl.t.20 + New York Jets + NYJ + + 11 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/KN6FxbdY3U_xBBPaIpnQcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28608.png + small + + https://s.yimg.com/iu/api/res/1.2/KN6FxbdY3U_xBBPaIpnQcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28608.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 47 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.28215 + 28215 + + Scott Simonson + Scott + Simonson + Scott + Simonson + + nfl.p.28215 + nfl.t.19 + New York Giants + NYG + + 9 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/7cLGVwFnXtap0dC.PH7FYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28215.png + small + + https://s.yimg.com/iu/api/res/1.2/7cLGVwFnXtap0dC.PH7FYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/28215.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 86 + + + 13 + 1 + + + 14 + 12 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 14 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.30263 + 30263 + + Jordan Leggett + Jordan + Leggett + Jordan + Leggett + + knee + nfl.p.30263 + nfl.t.20 + New York Jets + NYJ + + 11 + + 86 + TE + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 14 + + + 12 + 114 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.30502 + 30502 + + Zach Pascal + Zach + Pascal + Zach + Pascal + + knee + nfl.p.30502 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/crTZWSp.LrhSpnCLXgXf2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30502.png + small + + https://s.yimg.com/iu/api/res/1.2/crTZWSp.LrhSpnCLXgXf2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30502.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 10 + + + 10 + 0 + + + 11 + 27 + + + 12 + 268 + + + 13 + 2 + + + 14 + 297 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 46 + + + 79 + 0 + + + 80 + 15 + + + 81 + 0 + + + + + + 380.p.31257 + 31257 + + Tanner Hudson + Tanner + Hudson + Tanner + Hudson + + nfl.p.31257 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 88 + RB,TE + + https://s.yimg.com/iu/api/res/1.2/2L4QTcBzTGV9MjXIbaEPgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31257.png + small + + https://s.yimg.com/iu/api/res/1.2/2L4QTcBzTGV9MjXIbaEPgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31257.png + 0 + O + + RB + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30739 + 30739 + + Shane Smith + Shane + Smith + Shane + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30739 + nfl.t.19 + New York Giants + NYG + + 9 + + 43 + RB,TE + + https://s.yimg.com/iu/api/res/1.2/iBNLCwa6DZC8y_Oar0gZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30739.png + small + + https://s.yimg.com/iu/api/res/1.2/iBNLCwa6DZC8y_Oar0gZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30739.png + 0 + O + + RB + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24932 + 24932 + + Jacquizz Rodgers + Jacquizz + Rodgers + Jacquizz + Rodgers + + nfl.p.24932 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/kMuHelQJJptzCuXd.d57Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24932.png + small + + https://s.yimg.com/iu/api/res/1.2/kMuHelQJJptzCuXd.d57Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/24932.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 33 + + + 9 + 106 + + + 10 + 1 + + + 11 + 38 + + + 12 + 304 + + + 13 + 0 + + + 14 + 52 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 45 + + + 79 + 0 + + + 80 + 13 + + + 81 + 7 + + + + + + 380.p.27648 + 27648 + + Logan Thomas + Logan + Thomas + Logan + Thomas + + hamstring + nfl.p.27648 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/WnZ.DpocPvVZ0d5ijzu1zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27648.png + small + + https://s.yimg.com/iu/api/res/1.2/WnZ.DpocPvVZ0d5ijzu1zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27648.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 15 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 12 + + + 12 + 77 + + + 13 + 0 + + + 14 + 23 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 17 + + + 79 + 1 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.28021 + 28021 + + Ryan Hewitt + Ryan + Hewitt + Ryan + Hewitt + + ribs + nfl.p.28021 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 45 + TE + + https://s.yimg.com/iu/api/res/1.2/rdY0H2wDbZ2S3Nqxjlilfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28021.png + small + + https://s.yimg.com/iu/api/res/1.2/rdY0H2wDbZ2S3Nqxjlilfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28021.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 1 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29257 + 29257 + + Laquon Treadwell + Laquon + Treadwell + Laquon + Treadwell + + nfl.p.29257 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/Wih.zUJAlPp.whMyTnujmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29257.png + small + + https://s.yimg.com/iu/api/res/1.2/Wih.zUJAlPp.whMyTnujmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29257.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 35 + + + 12 + 302 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 53 + + + 79 + 0 + + + 80 + 16 + + + 81 + 0 + + + + + + 380.p.29320 + 29320 + + Leonte Carroo + Leonte + Carroo + Leonte + Carroo + + nfl.p.29320 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/hdhfIT3RTneT5qYjhK71BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29320.png + small + + https://s.yimg.com/iu/api/res/1.2/hdhfIT3RTneT5qYjhK71BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29320.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 14 + + + 10 + 0 + + + 11 + 2 + + + 12 + 94 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 4 + + + 79 + 0 + + + 80 + 2 + + + 81 + 1 + + + + + + 380.p.26416 + 26416 + + Derek Carrier + Derek + Carrier + Derek + Carrier + + Q + Questionable + nfl.p.26416 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/7CY29GqE5aLVwrGH2Te.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26416.png + small + + https://s.yimg.com/iu/api/res/1.2/7CY29GqE5aLVwrGH2Te.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26416.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 7 + + + 12 + 67 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.28975 + 28975 + + Matt Lengel + Matt + Lengel + Matt + Lengel + + Q + Questionable + nfl.p.28975 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/IxV8hyny1JonRcctL7JhHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28975.png + small + + https://s.yimg.com/iu/api/res/1.2/IxV8hyny1JonRcctL7JhHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28975.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 17 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.29654 + 29654 + + Joshua Perkins + Joshua + Perkins + Joshua + Perkins + + IR + Injured Reserve + knee + nfl.p.29654 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/ErLbRnwTMWgqSmIRcXdwSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29654.png + small + + https://s.yimg.com/iu/api/res/1.2/ErLbRnwTMWgqSmIRcXdwSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29654.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 67 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.28562 + 28562 + + Cameron Artis-Payne + Cameron + Artis-Payne + Cameron + Artis-Payne + + nfl.p.28562 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/KAwsgoGAbCphZDp0qJRyCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28562.png + small + + https://s.yimg.com/iu/api/res/1.2/KAwsgoGAbCphZDp0qJRyCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/28562.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 19 + + + 9 + 69 + + + 10 + 1 + + + 11 + 3 + + + 12 + 15 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 1 + + + 81 + 8 + + + + + + 380.p.26781 + 26781 + + Luke Willson + Luke + Willson + Luke + Willson + + Q + Questionable + concussion + nfl.p.26781 + nfl.t.8 + Detroit Lions + Det + + 6 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/vtmNuECGtBjCVwARL_A8Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26781.png + small + + https://s.yimg.com/iu/api/res/1.2/vtmNuECGtBjCVwARL_A8Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26781.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 13 + + + 12 + 87 + + + 13 + 0 + + + 14 + 35 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.29648 + 29648 + + Malachi Jones + Malachi + Jones + Malachi + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29648 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29618 + 29618 + + Mose Frazier + Mose + Frazier + Mose + Frazier + + nfl.p.29618 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/J475iR8GBCngiRtseqzNkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29618.png + small + + https://s.yimg.com/iu/api/res/1.2/J475iR8GBCngiRtseqzNkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29618.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29904 + 29904 + + Marcus Tucker + Marcus + Tucker + Marcus + Tucker + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29904 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/0hnrz9Mu6kM6vNYiElDIpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29904.png + small + + https://s.yimg.com/iu/api/res/1.2/0hnrz9Mu6kM6vNYiElDIpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29904.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29836 + 29836 + + Rashawn Scott + Rashawn + Scott + Rashawn + Scott + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29836 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/f3m92C9dAJvZAsoWmRGacg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29836.png + small + + https://s.yimg.com/iu/api/res/1.2/f3m92C9dAJvZAsoWmRGacg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29836.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24062 + 24062 + + Eric Decker + Eric + Decker + Eric + Decker + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24062 + nfl.t.17 + New England Patriots + NE + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/9tAeSwIB_5UHDxdU4_FnZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24062.1.png + small + + https://s.yimg.com/iu/api/res/1.2/9tAeSwIB_5UHDxdU4_FnZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24062.1.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29319 + 29319 + + Braxton Miller + Braxton + Miller + Braxton + Miller + + nfl.p.29319 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/kBzp6TEQqW4Wa.LDgoR4Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29319.png + small + + https://s.yimg.com/iu/api/res/1.2/kBzp6TEQqW4Wa.LDgoR4Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29319.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31626 + 31626 + + Jordan Veasy + Jordan + Veasy + Jordan + Veasy + + nfl.p.31626 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31404 + 31404 + + De'Mornay Pierson-El + De'Mornay + Pierson-El + De'Mornay + Pierson-El + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31404 + nfl.t.28 + Washington Redskins + Was + + 4 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28740 + 28740 + + Quan Bray + Quan + Bray + Quan + Bray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28740 + nfl.t.34 + Houston Texans + Hou + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/tlcbUd_O_dTE1LJv.0QRSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28740.png + small + + https://s.yimg.com/iu/api/res/1.2/tlcbUd_O_dTE1LJv.0QRSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28740.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30288 + 30288 + + DeAngelo Yancey + DeAngelo + Yancey + DeAngelo + Yancey + + nfl.p.30288 + nfl.t.20 + New York Jets + NYJ + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/NO_MtL3095I8chjbkCBU3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30288.png + small + + https://s.yimg.com/iu/api/res/1.2/NO_MtL3095I8chjbkCBU3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30288.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.25730 + 25730 + + Kendall Wright + Kendall + Wright + Kendall + Wright + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25730 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/1FyDlBLh5aUh9MHO9VXANw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25730.png + small + + https://s.yimg.com/iu/api/res/1.2/1FyDlBLh5aUh9MHO9VXANw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25730.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31328 + 31328 + + Steven Dunbar Jr. + Steven + Dunbar Jr. + Steven + Dunbar Jr. + + nfl.p.31328 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/RYT4XzQy9KKRszrL8Hbu9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31328.png + small + + https://s.yimg.com/iu/api/res/1.2/RYT4XzQy9KKRszrL8Hbu9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31328.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29710 + 29710 + + Alonzo Russell + Alonzo + Russell + Alonzo + Russell + + nfl.p.29710 + nfl.t.19 + New York Giants + NYG + + 9 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/6JMxjY3TYGuGV0vH4aS7dA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29710.png + small + + https://s.yimg.com/iu/api/res/1.2/6JMxjY3TYGuGV0vH4aS7dA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29710.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28800 + 28800 + + DeAndrew White + DeAndrew + White + DeAndrew + White + + nfl.p.28800 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/UAbBZW8MqXWTNKS3UHw0Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28800.png + small + + https://s.yimg.com/iu/api/res/1.2/UAbBZW8MqXWTNKS3UHw0Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28800.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26697 + 26697 + + Terrance Williams + Terrance + Williams + Terrance + Williams + + IR + Injured Reserve + undisclosed + nfl.p.26697 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/rbgVPqH2s3SJiVJGxlUGKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26697.png + small + + https://s.yimg.com/iu/api/res/1.2/rbgVPqH2s3SJiVJGxlUGKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26697.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 18 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29605 + 29605 + + Mekale McKay + Mekale + McKay + Mekale + McKay + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29605 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/t.bbwtdYT_oPIxKp1tgxsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29605.png + small + + https://s.yimg.com/iu/api/res/1.2/t.bbwtdYT_oPIxKp1tgxsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29605.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29958 + 29958 + + Johnny Holton + Johnny + Holton + Johnny + Holton + + nfl.p.29958 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/2Qk2ChoJkogrzJOVRu2nsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29958.png + small + + https://s.yimg.com/iu/api/res/1.2/2Qk2ChoJkogrzJOVRu2nsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29958.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29861 + 29861 + + K.J. Maye + K.J. + Maye + K.J. + Maye + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29861 + nfl.t.17 + New England Patriots + NE + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/LJfixlfw59ZrxKyY4a69dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29861.png + small + + https://s.yimg.com/iu/api/res/1.2/LJfixlfw59ZrxKyY4a69dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29861.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31226 + 31226 + + Trey Quinn + Trey + Quinn + Trey + Quinn + + IR + Injured Reserve + ankle + nfl.p.31226 + nfl.t.28 + Washington Redskins + Was + + 4 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/RgF5apMYr66nnHTLLMEZ1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31226.png + small + + https://s.yimg.com/iu/api/res/1.2/RgF5apMYr66nnHTLLMEZ1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31226.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 75 + + + 13 + 1 + + + 14 + 52 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.31244 + 31244 + + Andre Levrone + Andre + Levrone + Andre + Levrone + + nfl.p.31244 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/lZQi7UUTdv3SNRtx2S23jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31244.png + small + + https://s.yimg.com/iu/api/res/1.2/lZQi7UUTdv3SNRtx2S23jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31244.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26218 + 26218 + + Griff Whalen + Griff + Whalen + Griff + Whalen + + NA + Inactive: Coach's Decision or Not on Roster + turf toe + nfl.p.26218 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/93p5LIZkSKu5ais8tV3DKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26218.png + small + + https://s.yimg.com/iu/api/res/1.2/93p5LIZkSKu5ais8tV3DKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26218.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31574 + 31574 + + Anthony Mahoungou + Anthony + Mahoungou + Anthony + Mahoungou + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31574 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31180 + 31180 + + Braxton Berrios + Braxton + Berrios + Braxton + Berrios + + IR + Injured Reserve + undisclosed + nfl.p.31180 + nfl.t.17 + New England Patriots + NE + + 11 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/pRGlZZ9r6QeO9ZvIty1MdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31180.png + small + + https://s.yimg.com/iu/api/res/1.2/pRGlZZ9r6QeO9ZvIty1MdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31180.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30380 + 30380 + + Austin Duke + Austin + Duke + Austin + Duke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30380 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/HZlXlBLqDOioT0in6srMjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30380.png + small + + https://s.yimg.com/iu/api/res/1.2/HZlXlBLqDOioT0in6srMjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30380.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.9347 + 9347 + + Brandon Tate + Brandon + Tate + Brandon + Tate + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9347 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/q9ImKnfWIrOECEvF0B5AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9347.png + small + + https://s.yimg.com/iu/api/res/1.2/q9ImKnfWIrOECEvF0B5AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9347.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 15 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31322 + 31322 + + Jalen Tolliver + Jalen + Tolliver + Jalen + Tolliver + + nfl.p.31322 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/Cq0LpyyG01ShFS2BNbnbiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31322.png + small + + https://s.yimg.com/iu/api/res/1.2/Cq0LpyyG01ShFS2BNbnbiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31322.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 37 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.30643 + 30643 + + Malcolm Lewis + Malcolm + Lewis + Malcolm + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30643 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/1BytA_aqF27FYenZiuH.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30643.png + small + + https://s.yimg.com/iu/api/res/1.2/1BytA_aqF27FYenZiuH.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30643.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27718 + 27718 + + Matt Hazel + Matt + Hazel + Matt + Hazel + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27718 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/mZ7p4xgtAWmJsrxW1ip7DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27718.png + small + + https://s.yimg.com/iu/api/res/1.2/mZ7p4xgtAWmJsrxW1ip7DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27718.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29152 + 29152 + + Kasen Williams + Kasen + Williams + Kasen + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29152 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/0KTie6XUQZO882oR.m5VlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29152.png + small + + https://s.yimg.com/iu/api/res/1.2/0KTie6XUQZO882oR.m5VlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29152.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31758 + 31758 + + Josh Crockett + Josh + Crockett + Josh + Crockett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31758 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30254 + 30254 + + Chad Hansen + Chad + Hansen + Chad + Hansen + + nfl.p.30254 + nfl.t.7 + Denver Broncos + Den + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/qWjg4JKG.SVQLpyOxDuLzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30254.png + small + + https://s.yimg.com/iu/api/res/1.2/qWjg4JKG.SVQLpyOxDuLzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30254.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29825 + 29825 + + Tanner McEvoy + Tanner + McEvoy + Tanner + McEvoy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29825 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/O1JiPEfMDyyAMDETcukg_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29825.png + small + + https://s.yimg.com/iu/api/res/1.2/O1JiPEfMDyyAMDETcukg_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29825.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28645 + 28645 + + Rasheed Bailey + Rasheed + Bailey + Rasheed + Bailey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28645 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/O6T779yZKpT5IvGOGXtO3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28645.png + small + + https://s.yimg.com/iu/api/res/1.2/O6T779yZKpT5IvGOGXtO3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28645.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30886 + 30886 + + Colby Pearson + Colby + Pearson + Colby + Pearson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30886 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/_XHUJMYcrVFJ_idUOIl4TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30886.png + small + + https://s.yimg.com/iu/api/res/1.2/_XHUJMYcrVFJ_idUOIl4TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30886.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31161 + 31161 + + Dylan Cantrell + Dylan + Cantrell + Dylan + Cantrell + + nfl.p.31161 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/plOJbSQ4Ikjztub2OTXwQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31161.png + small + + https://s.yimg.com/iu/api/res/1.2/plOJbSQ4Ikjztub2OTXwQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31161.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31771 + 31771 + + Adonis Jennings + Adonis + Jennings + Adonis + Jennings + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31771 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29440 + 29440 + + Michael Thomas + Michael + Thomas + Michael + Thomas + + IR + Injured Reserve + hip + nfl.p.29440 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/veXnMKGj8p6kRtwoLAitSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29440.png + small + + https://s.yimg.com/iu/api/res/1.2/veXnMKGj8p6kRtwoLAitSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29440.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30653 + 30653 + + Damore'ea Stringfellow + Damore'ea + Stringfellow + Damore'ea + Stringfellow + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30653 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/gQMSH_nh6SautUS8Jc_ugA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30653.png + small + + https://s.yimg.com/iu/api/res/1.2/gQMSH_nh6SautUS8Jc_ugA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30653.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30869 + 30869 + + Justin Thomas + Justin + Thomas + Justin + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30869 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/aKq4hItYEn_5OcTBbW0MOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30869.png + small + + https://s.yimg.com/iu/api/res/1.2/aKq4hItYEn_5OcTBbW0MOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30869.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30899 + 30899 + + Lance Lenoir + Lance + Lenoir + Lance + Lenoir + + illness + nfl.p.30899 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/3oQCid8AhG80qbJADX6LwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30899.png + small + + https://s.yimg.com/iu/api/res/1.2/3oQCid8AhG80qbJADX6LwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30899.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31348 + 31348 + + Detrich Clark + Detrich + Clark + Detrich + Clark + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31348 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30512 + 30512 + + Quincy Adeboyejo + Quincy + Adeboyejo + Quincy + Adeboyejo + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.30512 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/U2GFvBctdztLGZWIEdgDMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30512.png + small + + https://s.yimg.com/iu/api/res/1.2/U2GFvBctdztLGZWIEdgDMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30512.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26096 + 26096 + + Brenton Bersin + Brenton + Bersin + Brenton + Bersin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26096 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/ipEb1t0xH4XqeS0m3kkqkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26096.png + small + + https://s.yimg.com/iu/api/res/1.2/ipEb1t0xH4XqeS0m3kkqkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26096.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28669 + 28669 + + Eli Rogers + Eli + Rogers + Eli + Rogers + + nfl.p.28669 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/RP2mB67WxhPNRijfLKGyYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28669.png + small + + https://s.yimg.com/iu/api/res/1.2/RP2mB67WxhPNRijfLKGyYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28669.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -4 + + + 10 + 0 + + + 11 + 12 + + + 12 + 79 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 14 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.30219 + 30219 + + Amara Darboh + Amara + Darboh + Amara + Darboh + + IR + Injured Reserve + undisclosed + nfl.p.30219 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/G2pEqvLL1qbiTT3FTAg9lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30219.png + small + + https://s.yimg.com/iu/api/res/1.2/G2pEqvLL1qbiTT3FTAg9lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30219.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31592 + 31592 + + Jester Weah + Jester + Weah + Jester + Weah + + nfl.p.31592 + nfl.t.34 + Houston Texans + Hou + + 10 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29346 + 29346 + + Malcolm Mitchell + Malcolm + Mitchell + Malcolm + Mitchell + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29346 + nfl.t.17 + New England Patriots + NE + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/XgQ08TvAsw8TmL3U5QbBIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29346.png + small + + https://s.yimg.com/iu/api/res/1.2/XgQ08TvAsw8TmL3U5QbBIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29346.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28834 + 28834 + + Shane Wynn + Shane + Wynn + Shane + Wynn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28834 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/tFnRFPvLqGdlQSJlmR3akg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28834.png + small + + https://s.yimg.com/iu/api/res/1.2/tFnRFPvLqGdlQSJlmR3akg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28834.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30647 + 30647 + + Drew Morgan + Drew + Morgan + Drew + Morgan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30647 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/zZZvakjrmZRzJm5MTXCbNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30647.png + small + + https://s.yimg.com/iu/api/res/1.2/zZZvakjrmZRzJm5MTXCbNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30647.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26428 + 26428 + + Rod Streater + Rod + Streater + Rod + Streater + + IR + Injured Reserve + neck + nfl.p.26428 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/394mkg2tfnPUBh6fEih52A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26428.png + small + + https://s.yimg.com/iu/api/res/1.2/394mkg2tfnPUBh6fEih52A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26428.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -11 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31768 + 31768 + + Aaron Lacombe + Aaron + Lacombe + Aaron + Lacombe + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31768 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30930 + 30930 + + Marvin Bracy + Marvin + Bracy + Marvin + Bracy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30930 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31506 + 31506 + + Janarion Grant + Janarion + Grant + Janarion + Grant + + NA + Inactive: Coach's Decision or Not on Roster + hand + nfl.p.31506 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 108 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30450 + 30450 + + Deante Burton + Deante + Burton + Deante + Burton + + nfl.p.30450 + nfl.t.34 + Houston Texans + Hou + + 10 + + 39 + WR + + https://s.yimg.com/iu/api/res/1.2/27f9oJx.LFE4To0HrkxFSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30450.png + small + + https://s.yimg.com/iu/api/res/1.2/27f9oJx.LFE4To0HrkxFSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30450.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31350 + 31350 + + Dontez Byrd + Dontez + Byrd + Dontez + Byrd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31350 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/88M576cN5K75TmAMlXA_hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31350.png + small + + https://s.yimg.com/iu/api/res/1.2/88M576cN5K75TmAMlXA_hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31350.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26702 + 26702 + + Markus Wheaton + Markus + Wheaton + Markus + Wheaton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26702 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/nUmOy9Cn4Gv29YY4.XzSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26702.png + small + + https://s.yimg.com/iu/api/res/1.2/nUmOy9Cn4Gv29YY4.XzSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26702.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31102 + 31102 + + Jaleel Scott + Jaleel + Scott + Jaleel + Scott + + IR + Injured Reserve + hamstring + nfl.p.31102 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/INpa15jzFjStkHjmLuUpmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31102.png + small + + https://s.yimg.com/iu/api/res/1.2/INpa15jzFjStkHjmLuUpmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31102.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28060 + 28060 + + Freddie Martino + Freddie + Martino + Freddie + Martino + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28060 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/nP.kPdkA22RN3Ow5cHPmBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28060.png + small + + https://s.yimg.com/iu/api/res/1.2/nP.kPdkA22RN3Ow5cHPmBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28060.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26839 + 26839 + + Charles Johnson + Charles + Johnson + Charles + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26839 + nfl.t.20 + New York Jets + NYJ + + 11 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/_LdmNAlBNb7WEaDqXtT9CA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26839.png + small + + https://s.yimg.com/iu/api/res/1.2/_LdmNAlBNb7WEaDqXtT9CA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26839.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24014 + 24014 + + Arrelious Benn + Arrelious + Benn + Arrelious + Benn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24014 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/39ksBKwiEdN7Q5vdC.ypxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/24014.png + small + + https://s.yimg.com/iu/api/res/1.2/39ksBKwiEdN7Q5vdC.ypxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/24014.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27928 + 27928 + + Seantavius Jones + Seantavius + Jones + Seantavius + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27928 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/J2iuUmJ2N1V_8pg2YRE67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27928.png + small + + https://s.yimg.com/iu/api/res/1.2/J2iuUmJ2N1V_8pg2YRE67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27928.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29631 + 29631 + + Kalif Raymond + Kalif + Raymond + Kalif + Raymond + + nfl.p.29631 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/ook5_.PmNY3nmg8sEq1APw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29631.png + small + + https://s.yimg.com/iu/api/res/1.2/ook5_.PmNY3nmg8sEq1APw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29631.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29679 + 29679 + + Cayleb Jones + Cayleb + Jones + Cayleb + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29679 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/af527smQgGUXyzQr7ZDXiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29679.png + small + + https://s.yimg.com/iu/api/res/1.2/af527smQgGUXyzQr7ZDXiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29679.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28458 + 28458 + + Jaelen Strong + Jaelen + Strong + Jaelen + Strong + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28458 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/YHFBZbEg4RlftjmBxRb4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28458.png + small + + https://s.yimg.com/iu/api/res/1.2/YHFBZbEg4RlftjmBxRb4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28458.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29612 + 29612 + + Tevaun Smith + Tevaun + Smith + Tevaun + Smith + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29612 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/VTSA0muYD9Mq6WBG3TNg0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29612.png + small + + https://s.yimg.com/iu/api/res/1.2/VTSA0muYD9Mq6WBG3TNg0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29612.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31625 + 31625 + + Devin Ross + Devin + Ross + Devin + Ross + + undisclosed + nfl.p.31625 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31543 + 31543 + + Quincy Redmon + Quincy + Redmon + Quincy + Redmon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31543 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29837 + 29837 + + Brandon Shippen + Brandon + Shippen + Brandon + Shippen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29837 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/hwsvXYTDaa8Nt54vyeqm1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29837.png + small + + https://s.yimg.com/iu/api/res/1.2/hwsvXYTDaa8Nt54vyeqm1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29837.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30432 + 30432 + + Artavis Scott + Artavis + Scott + Artavis + Scott + + IR + Injured Reserve + leg + nfl.p.30432 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/xtjlFdK51g8puvyXByKF4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30432.png + small + + https://s.yimg.com/iu/api/res/1.2/xtjlFdK51g8puvyXByKF4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30432.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30322 + 30322 + + Robert Davis + Robert + Davis + Robert + Davis + + IR + Injured Reserve + right knee + nfl.p.30322 + nfl.t.28 + Washington Redskins + Was + + 4 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/g70Poy719AToEUZppIzdqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30322.png + small + + https://s.yimg.com/iu/api/res/1.2/g70Poy719AToEUZppIzdqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30322.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31598 + 31598 + + Cam Phillips + Cam + Phillips + Cam + Phillips + + nfl.p.31598 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 9 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.9283 + 9283 + + Jeremy Maclin + Jeremy + Maclin + Jeremy + Maclin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9283 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/zlzIl1wUnTOUWEqHGYxmKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9283.png + small + + https://s.yimg.com/iu/api/res/1.2/zlzIl1wUnTOUWEqHGYxmKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9283.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28633 + 28633 + + Tre McBride + Tre + McBride + Tre + McBride + + nfl.p.28633 + nfl.t.28 + Washington Redskins + Was + + 4 + + 7 + WR + + https://s.yimg.com/iu/api/res/1.2/9KPEGnWEd4mDMnnRLQYcPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28633.png + small + + https://s.yimg.com/iu/api/res/1.2/9KPEGnWEd4mDMnnRLQYcPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28633.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31231 + 31231 + + Armanti Foreman + Armanti + Foreman + Armanti + Foreman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31231 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25743 + 25743 + + Brian Quick + Brian + Quick + Brian + Quick + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25743 + nfl.t.28 + Washington Redskins + Was + + 4 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/ieAOh8FVjNJ2N6z2kGOKnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/25743.png + small + + https://s.yimg.com/iu/api/res/1.2/ieAOh8FVjNJ2N6z2kGOKnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/25743.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 18 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.30729 + 30729 + + Kermit Whitfield + Kermit + Whitfield + Kermit + Whitfield + + nfl.p.30729 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/Q9Vi_9KbYS02fV4YSRlziQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30729.png + small + + https://s.yimg.com/iu/api/res/1.2/Q9Vi_9KbYS02fV4YSRlziQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30729.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30524 + 30524 + + Trey Griffey + Trey + Griffey + Trey + Griffey + + nfl.p.30524 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/wqwJrhQtDOJtxM6LS9Jw9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30524.png + small + + https://s.yimg.com/iu/api/res/1.2/wqwJrhQtDOJtxM6LS9Jw9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30524.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31777 + 31777 + + Malik Turner + Malik + Turner + Malik + Turner + + nfl.p.31777 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 20 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.31399 + 31399 + + Shay Fields + Shay + Fields + Shay + Fields + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31399 + nfl.t.7 + Denver Broncos + Den + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/GUVbfW9vvkpHOKTF.PbsuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31399.png + small + + https://s.yimg.com/iu/api/res/1.2/GUVbfW9vvkpHOKTF.PbsuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31399.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31253 + 31253 + + Sergio Bailey II + Sergio + Bailey II + Sergio + Bailey II + + ankle + nfl.p.31253 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/2vvPGdUwG9LjWww2fuRsdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31253.png + small + + https://s.yimg.com/iu/api/res/1.2/2vvPGdUwG9LjWww2fuRsdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31253.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29463 + 29463 + + Demarcus Ayers + Demarcus + Ayers + Demarcus + Ayers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29463 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/.lnUntBqU1ELZKB5Ik0hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29463.png + small + + https://s.yimg.com/iu/api/res/1.2/.lnUntBqU1ELZKB5Ik0hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29463.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.23999 + 23999 + + Dez Bryant + Dez + Bryant + Dez + Bryant + + IR + Injured Reserve + torn Achilles + nfl.p.23999 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/p5xjvUVWrPnKoGQgNHy34A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/23999.png + small + + https://s.yimg.com/iu/api/res/1.2/p5xjvUVWrPnKoGQgNHy34A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/23999.png + 0 + O + + WR + + + 121.2 + 13.1 + 5.3 + 0.20 + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29447 + 29447 + + Aaron Burbridge + Aaron + Burbridge + Aaron + Burbridge + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29447 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/i62EZNbk2IDyNUNUTyG8zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29447.png + small + + https://s.yimg.com/iu/api/res/1.2/i62EZNbk2IDyNUNUTyG8zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29447.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30861 + 30861 + + Chris Thompson + Chris + Thompson + Chris + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30861 + nfl.t.34 + Houston Texans + Hou + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/trsKTQsvmzFb4R7VoOKP7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30861.png + small + + https://s.yimg.com/iu/api/res/1.2/trsKTQsvmzFb4R7VoOKP7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30861.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25379 + 25379 + + Kamar Aiken + Kamar + Aiken + Kamar + Aiken + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25379 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/G31bB44eKfTXMsyPHGF_Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25379.png + small + + https://s.yimg.com/iu/api/res/1.2/G31bB44eKfTXMsyPHGF_Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25379.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 53 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31479 + 31479 + + Saeed Blacknall + Saeed + Blacknall + Saeed + Blacknall + + nfl.p.31479 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31772 + 31772 + + Jared Murphy + Jared + Murphy + Jared + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31772 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30610 + 30610 + + Montay Crockett + Montay + Crockett + Montay + Crockett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30610 + nfl.t.28 + Washington Redskins + Was + + 4 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/y6AojMpN22ulalRjSSLwbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30610.png + small + + https://s.yimg.com/iu/api/res/1.2/y6AojMpN22ulalRjSSLwbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30610.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30350 + 30350 + + Isaiah Ford + Isaiah + Ford + Isaiah + Ford + + nfl.p.30350 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/N31glEZev7khHhsCFzkBfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30350.png + small + + https://s.yimg.com/iu/api/res/1.2/N31glEZev7khHhsCFzkBfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30350.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31783 + 31783 + + Bryce Bobo + Bryce + Bobo + Bryce + Bobo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31783 + nfl.t.7 + Denver Broncos + Den + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31460 + 31460 + + Da'Mari Scott + Da'Mari + Scott + Da'Mari + Scott + + shoulder + nfl.p.31460 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31740 + 31740 + + Eldridge Massington + Eldridge + Massington + Eldridge + Massington + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31740 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31376 + 31376 + + John Diarse + John + Diarse + John + Diarse + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31376 + nfl.t.7 + Denver Broncos + Den + + 10 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/_JoABTdJntcKs86kz.7ftg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31376.png + small + + https://s.yimg.com/iu/api/res/1.2/_JoABTdJntcKs86kz.7ftg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31376.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30938 + 30938 + + Dan Williams III + Dan + Williams III + Dan + Williams III + + nfl.p.30938 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28793 + 28793 + + Dres Anderson + Dres + Anderson + Dres + Anderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28793 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/MOwuZmGhFRX3kPjuW9K7AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28793.png + small + + https://s.yimg.com/iu/api/res/1.2/MOwuZmGhFRX3kPjuW9K7AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/28793.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31659 + 31659 + + Garrett Johnson + Garrett + Johnson + Garrett + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31659 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30901 + 30901 + + Fred Brown + Fred + Brown + Fred + Brown + + nfl.p.30901 + nfl.t.7 + Denver Broncos + Den + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/m8dhaov6s8RuXAzKEFeJJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30901.png + small + + https://s.yimg.com/iu/api/res/1.2/m8dhaov6s8RuXAzKEFeJJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30901.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30394 + 30394 + + Amba Etta-Tawo + Amba + Etta-Tawo + Amba + Etta-Tawo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30394 + nfl.t.34 + Houston Texans + Hou + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/hbCi7wGD7Mtg8U3tyOGbPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30394.png + small + + https://s.yimg.com/iu/api/res/1.2/hbCi7wGD7Mtg8U3tyOGbPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30394.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29686 + 29686 + + Paul Turner + Paul + Turner + Paul + Turner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29686 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/IMg_J96MePU0h1S3Bl7uTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29686.png + small + + https://s.yimg.com/iu/api/res/1.2/IMg_J96MePU0h1S3Bl7uTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29686.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31225 + 31225 + + Austin Proehl + Austin + Proehl + Austin + Proehl + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31225 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/kOJXkOh3KO7mNI8InsGftA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31225.png + small + + https://s.yimg.com/iu/api/res/1.2/kOJXkOh3KO7mNI8InsGftA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31225.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31722 + 31722 + + Darvin Kidsy + Darvin + Kidsy + Darvin + Kidsy + + nfl.p.31722 + nfl.t.28 + Washington Redskins + Was + + 4 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 8 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29953 + 29953 + + K.J. Brent + K.J. + Brent + K.J. + Brent + + undisclosed + nfl.p.29953 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lnkqCa0Im9cD6LzFSrW07Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29953.png + small + + https://s.yimg.com/iu/api/res/1.2/lnkqCa0Im9cD6LzFSrW07Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29953.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29855 + 29855 + + Roger Lewis Jr. + Roger + Lewis Jr. + Roger + Lewis Jr. + + nfl.p.29855 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/rT3mx_SkWfeQSIiWjvnXAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29855.png + small + + https://s.yimg.com/iu/api/res/1.2/rT3mx_SkWfeQSIiWjvnXAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29855.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31718 + 31718 + + Tim Wilson + Tim + Wilson + Tim + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31718 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31773 + 31773 + + Mark Chapman + Mark + Chapman + Mark + Chapman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31773 + nfl.t.7 + Denver Broncos + Den + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28572 + 28572 + + Kaelin Clay + Kaelin + Clay + Kaelin + Clay + + undisclosed + nfl.p.28572 + nfl.t.19 + New York Giants + NYG + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/6zyuYAnRm.NRBMTEApBrxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28572.png + small + + https://s.yimg.com/iu/api/res/1.2/6zyuYAnRm.NRBMTEApBrxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28572.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 15 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28840 + 28840 + + Jordan Leslie + Jordan + Leslie + Jordan + Leslie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28840 + nfl.t.7 + Denver Broncos + Den + + 10 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/x0nn1YplI8q.8xyzqrXsDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28840.png + small + + https://s.yimg.com/iu/api/res/1.2/x0nn1YplI8q.8xyzqrXsDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28840.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31268 + 31268 + + Allen Lazard + Allen + Lazard + Allen + Lazard + + nfl.p.31268 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/DV1XK5ACFGHPzXPrhezYUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31268.png + small + + https://s.yimg.com/iu/api/res/1.2/DV1XK5ACFGHPzXPrhezYUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31268.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 7 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30715 + 30715 + + Greg Ward Jr. + Greg + Ward Jr. + Greg + Ward Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30715 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/u_5SH_ofKiIJZCu_xIf1xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30715.png + small + + https://s.yimg.com/iu/api/res/1.2/u_5SH_ofKiIJZCu_xIf1xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30715.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31227 + 31227 + + Jeff Badet + Jeff + Badet + Jeff + Badet + + nfl.p.31227 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/9ENbIa_JKmXL_Rt.wLiPOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31227.png + small + + https://s.yimg.com/iu/api/res/1.2/9ENbIa_JKmXL_Rt.wLiPOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31227.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30195 + 30195 + + Carlos Henderson + Carlos + Henderson + Carlos + Henderson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30195 + nfl.t.28 + Washington Redskins + Was + + 4 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/4cjVtV8YlyB3Gv5AJcL48Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/30195.png + small + + https://s.yimg.com/iu/api/res/1.2/4cjVtV8YlyB3Gv5AJcL48Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/30195.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31383 + 31383 + + Jimmy Williams III + Jimmy + Williams III + Jimmy + Williams III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31383 + nfl.t.7 + Denver Broncos + Den + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/PJrB5TNExDsuftZjxgXBnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31383.png + small + + https://s.yimg.com/iu/api/res/1.2/PJrB5TNExDsuftZjxgXBnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31383.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29521 + 29521 + + Jamaal Jones + Jamaal + Jones + Jamaal + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29521 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/Zw6bO1RanyH6retmuBAZNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29521.png + small + + https://s.yimg.com/iu/api/res/1.2/Zw6bO1RanyH6retmuBAZNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29521.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31369 + 31369 + + Steve Ishmael + Steve + Ishmael + Steve + Ishmael + + nfl.p.31369 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/4Td_N_OtgLMXDFzrSb_mHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31369.png + small + + https://s.yimg.com/iu/api/res/1.2/4Td_N_OtgLMXDFzrSb_mHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31369.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30480 + 30480 + + Thomas Sperbeck + Thomas + Sperbeck + Thomas + Sperbeck + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30480 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/vtVHQ1J6esqbCejUK4Q_OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30480.png + small + + https://s.yimg.com/iu/api/res/1.2/vtVHQ1J6esqbCejUK4Q_OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30480.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27614 + 27614 + + Josh Huff + Josh + Huff + Josh + Huff + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27614 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/VUt5bXAdO.E9JYekUgKCWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27614.png + small + + https://s.yimg.com/iu/api/res/1.2/VUt5bXAdO.E9JYekUgKCWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27614.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28071 + 28071 + + Bernard Reedy + Bernard + Reedy + Bernard + Reedy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28071 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/GBOYFKBE3s9zuwTsC92z3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28071.png + small + + https://s.yimg.com/iu/api/res/1.2/GBOYFKBE3s9zuwTsC92z3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28071.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30045 + 30045 + + Kendal Thompson + Kendal + Thompson + Kendal + Thompson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30045 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/sFdDh2IqByoQntGoug0JEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30045.png + small + + https://s.yimg.com/iu/api/res/1.2/sFdDh2IqByoQntGoug0JEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30045.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30487 + 30487 + + Krishawn Hogan + Krishawn + Hogan + Krishawn + Hogan + + undisclosed + nfl.p.30487 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/pWGered4fNQYFnMwxzTccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30487.png + small + + https://s.yimg.com/iu/api/res/1.2/pWGered4fNQYFnMwxzTccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30487.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29459 + 29459 + + Devin Lucien + Devin + Lucien + Devin + Lucien + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29459 + nfl.t.17 + New England Patriots + NE + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/j.LPYvo8rS_2VSN0xjDOqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29459.png + small + + https://s.yimg.com/iu/api/res/1.2/j.LPYvo8rS_2VSN0xjDOqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29459.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30781 + 30781 + + Brian Brown + Brian + Brown + Brian + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30781 + nfl.t.8 + Detroit Lions + Det + + 6 + + 3 + WR + + https://s.yimg.com/iu/api/res/1.2/BY2XVlZ8VPYgUumz61duiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30781.png + small + + https://s.yimg.com/iu/api/res/1.2/BY2XVlZ8VPYgUumz61duiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30781.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30410 + 30410 + + Travin Dural + Travin + Dural + Travin + Dural + + IR + Injured Reserve + broken arm + nfl.p.30410 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/Qy9bbqKNC9yawRfFf.caEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30410.png + small + + https://s.yimg.com/iu/api/res/1.2/Qy9bbqKNC9yawRfFf.caEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30410.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31760 + 31760 + + Josh Smith + Josh + Smith + Josh + Smith + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31760 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29775 + 29775 + + Bryce Treggs + Bryce + Treggs + Bryce + Treggs + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29775 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/A3360y6IDkM43ULIIZT6tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29775.png + small + + https://s.yimg.com/iu/api/res/1.2/A3360y6IDkM43ULIIZT6tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29775.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31701 + 31701 + + Damoun Patterson + Damoun + Patterson + Damoun + Patterson + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31701 + nfl.t.17 + New England Patriots + NE + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30550 + 30550 + + Victor Bolden Jr. + Victor + Bolden Jr. + Victor + Bolden Jr. + + nfl.p.30550 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/VwwC8JWDbBAwrZqPwu_Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30550.png + small + + https://s.yimg.com/iu/api/res/1.2/VwwC8JWDbBAwrZqPwu_Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30550.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 10 + + + 13 + 0 + + + 14 + 116 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.31389 + 31389 + + LaQuvionte Gonzalez + LaQuvionte + Gonzalez + LaQuvionte + Gonzalez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31389 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/oYChIwmImTIA0HXYw1D64w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31389.png + small + + https://s.yimg.com/iu/api/res/1.2/oYChIwmImTIA0HXYw1D64w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31389.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31739 + 31739 + + Davon Grayson + Davon + Grayson + Davon + Grayson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31739 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28395 + 28395 + + Kevin White + Kevin + White + Kevin + White + + nfl.p.28395 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/KozhNN08fdPij3tKU5BtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28395.png + small + + https://s.yimg.com/iu/api/res/1.2/KozhNN08fdPij3tKU5BtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28395.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 92 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.30940 + 30940 + + Rashard Davis + Rashard + Davis + Rashard + Davis + + nfl.p.30940 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/N.wRne8u6okck8I6gXjhOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30940.png + small + + https://s.yimg.com/iu/api/res/1.2/N.wRne8u6okck8I6gXjhOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30940.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31665 + 31665 + + Shaq Roland + Shaq + Roland + Shaq + Roland + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31665 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31646 + 31646 + + Darren Andrews + Darren + Andrews + Darren + Andrews + + O + Out + nfl.p.31646 + nfl.t.17 + New England Patriots + NE + + 11 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31716 + 31716 + + C.J. Duncan + C.J. + Duncan + C.J. + Duncan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31716 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28550 + 28550 + + Kenny Bell + Kenny + Bell + Kenny + Bell + + NA + Inactive: Coach's Decision or Not on Roster + hamstring + nfl.p.28550 + nfl.t.7 + Denver Broncos + Den + + 10 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/2bKm2Fj_kYI18fNgBU2kTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28550.png + small + + https://s.yimg.com/iu/api/res/1.2/2bKm2Fj_kYI18fNgBU2kTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28550.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30637 + 30637 + + Isaac Whitney + Isaac + Whitney + Isaac + Whitney + + nfl.p.30637 + nfl.t.34 + Houston Texans + Hou + + 10 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/D7v8OrhpCX6zlqjJTzpqsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30637.png + small + + https://s.yimg.com/iu/api/res/1.2/D7v8OrhpCX6zlqjJTzpqsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30637.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30513 + 30513 + + C.J. Board + C.J. + Board + C.J. + Board + + undisclosed + nfl.p.30513 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/qsScuoEsT0j3y6v4IWdbyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30513.png + small + + https://s.yimg.com/iu/api/res/1.2/qsScuoEsT0j3y6v4IWdbyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30513.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29682 + 29682 + + Hunter Sharp + Hunter + Sharp + Hunter + Sharp + + nfl.p.29682 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/dkR8HjjuPyB6WeuWwaLfag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29682.png + small + + https://s.yimg.com/iu/api/res/1.2/dkR8HjjuPyB6WeuWwaLfag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29682.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31240 + 31240 + + Korey Robertson + Korey + Robertson + Korey + Robertson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31240 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/gEvcVnNEefbom9nzTRWS.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31240.png + small + + https://s.yimg.com/iu/api/res/1.2/gEvcVnNEefbom9nzTRWS.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31240.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30482 + 30482 + + Carlton Agudosi + Carlton + Agudosi + Carlton + Agudosi + + nfl.p.30482 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/6Fyj3_ZxqiiAMlBPyigLFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30482.png + small + + https://s.yimg.com/iu/api/res/1.2/6Fyj3_ZxqiiAMlBPyigLFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30482.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30382 + 30382 + + Fred Ross Jr. + Fred + Ross Jr. + Fred + Ross Jr. + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30382 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/V2FvG5E2luyv5Y6ut1QcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30382.png + small + + https://s.yimg.com/iu/api/res/1.2/V2FvG5E2luyv5Y6ut1QcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30382.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30629 + 30629 + + Keon Hatcher + Keon + Hatcher + Keon + Hatcher + + nfl.p.30629 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/fRQD65PuqvNE.qomc_ydJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30629.png + small + + https://s.yimg.com/iu/api/res/1.2/fRQD65PuqvNE.qomc_ydJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30629.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 8 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30332 + 30332 + + Stacy Coley + Stacy + Coley + Stacy + Coley + + right hamstring + nfl.p.30332 + nfl.t.20 + New York Jets + NYJ + + 11 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/FDNZK2JMvm7fgWWwnezRyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30332.png + small + + https://s.yimg.com/iu/api/res/1.2/FDNZK2JMvm7fgWWwnezRyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30332.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 33 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31132 + 31132 + + Jordan Lasley + Jordan + Lasley + Jordan + Lasley + + nfl.p.31132 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/tA9FKyxIsMJQoD0d1VJf9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31132.png + small + + https://s.yimg.com/iu/api/res/1.2/tA9FKyxIsMJQoD0d1VJf9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31132.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30241 + 30241 + + Josh Malone + Josh + Malone + Josh + Malone + + hamstring + nfl.p.30241 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/r3xtacaRYLMQ6rMGcC7Mxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30241.png + small + + https://s.yimg.com/iu/api/res/1.2/r3xtacaRYLMQ6rMGcC7Mxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30241.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 12 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.31465 + 31465 + + Taj Williams + Taj + Williams + Taj + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31465 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30679 + 30679 + + Gehrig Dieter + Gehrig + Dieter + Gehrig + Dieter + + nfl.p.30679 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/L2_RzFBRJRlSGDK4wc5QyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30679.png + small + + https://s.yimg.com/iu/api/res/1.2/L2_RzFBRJRlSGDK4wc5QyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30679.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 22 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.9388 + 9388 + + Louis Murphy + Louis + Murphy + Louis + Murphy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9388 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/.LBb1lfR6SkN3KLjhptMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9388.png + small + + https://s.yimg.com/iu/api/res/1.2/.LBb1lfR6SkN3KLjhptMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9388.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31463 + 31463 + + Ka'Raun White + Ka'Raun + White + Ka'Raun + White + + nfl.p.31463 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28727 + 28727 + + Jordan Taylor + Jordan + Taylor + Jordan + Taylor + + IR + Injured Reserve + nfl.p.28727 + nfl.t.7 + Denver Broncos + Den + + 10 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/uA2qvt74bWuoRqTz3k5I1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28727.png + small + + https://s.yimg.com/iu/api/res/1.2/uA2qvt74bWuoRqTz3k5I1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/28727.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30360 + 30360 + + Malachi Dupre + Malachi + Dupre + Malachi + Dupre + + nfl.p.30360 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/cS28ndGjLjAkyXHkSFI9IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30360.png + small + + https://s.yimg.com/iu/api/res/1.2/cS28ndGjLjAkyXHkSFI9IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30360.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30660 + 30660 + + Cody Hollister + Cody + Hollister + Cody + Hollister + + O + Out + nfl.p.30660 + nfl.t.17 + New England Patriots + NE + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/iTWFS46piZH43bN_vA1j0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30660.png + small + + https://s.yimg.com/iu/api/res/1.2/iTWFS46piZH43bN_vA1j0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30660.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30734 + 30734 + + Keeon Johnson + Keeon + Johnson + Keeon + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30734 + nfl.t.19 + New York Giants + NYG + + 9 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/lFLhXR77qicyEUQhHgvhyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30734.png + small + + https://s.yimg.com/iu/api/res/1.2/lFLhXR77qicyEUQhHgvhyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30734.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31247 + 31247 + + Jaelon Acklin + Jaelon + Acklin + Jaelon + Acklin + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31247 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/0d39wr9yL1QHo7R6E5RIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31247.png + small + + https://s.yimg.com/iu/api/res/1.2/0d39wr9yL1QHo7R6E5RIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31247.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29743 + 29743 + + Nelson Spruce + Nelson + Spruce + Nelson + Spruce + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29743 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 5 + WR + + https://s.yimg.com/iu/api/res/1.2/yyMRB8HsT9o5PKTrQFTakg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29743.png + small + + https://s.yimg.com/iu/api/res/1.2/yyMRB8HsT9o5PKTrQFTakg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29743.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8861 + 8861 + + Harry Douglas + Harry + Douglas + Harry + Douglas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8861 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/6HA.eMUsbj7ImGMu1eBmQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8861.png + small + + https://s.yimg.com/iu/api/res/1.2/6HA.eMUsbj7ImGMu1eBmQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8861.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31796 + 31796 + + Darius Prince + Darius + Prince + Darius + Prince + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31796 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31496 + 31496 + + Byron Pringle + Byron + Pringle + Byron + Pringle + + IR + Injured Reserve + undisclosed + nfl.p.31496 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30609 + 30609 + + Michael Clark + Michael + Clark + Michael + Clark + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30609 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/wnJ0_aeBaZFydCb43Iqj3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30609.png + small + + https://s.yimg.com/iu/api/res/1.2/wnJ0_aeBaZFydCb43Iqj3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30609.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28520 + 28520 + + DeAndre Smelter + DeAndre + Smelter + DeAndre + Smelter + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28520 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/9H1nEKoQrtDeQPaJngtXcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28520.png + small + + https://s.yimg.com/iu/api/res/1.2/9H1nEKoQrtDeQPaJngtXcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28520.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25778 + 25778 + + DeVier Posey + DeVier + Posey + DeVier + Posey + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25778 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/DR3QXFfxa4o5iPhZpEwYxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25778.png + small + + https://s.yimg.com/iu/api/res/1.2/DR3QXFfxa4o5iPhZpEwYxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25778.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29416 + 29416 + + Keenan Reynolds + Keenan + Reynolds + Keenan + Reynolds + + nfl.p.29416 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/.qw7m1MEJXD6DfTyncJj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29416.png + small + + https://s.yimg.com/iu/api/res/1.2/.qw7m1MEJXD6DfTyncJj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29416.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31347 + 31347 + + Christian Blake + Christian + Blake + Christian + Blake + + nfl.p.31347 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/Qa44q9ECd_FjTKsTw78JaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31347.png + small + + https://s.yimg.com/iu/api/res/1.2/Qa44q9ECd_FjTKsTw78JaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31347.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30827 + 30827 + + Reggie Davis + Reggie + Davis + Reggie + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30827 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/Mvdd66yOLyaVHbxkQ5j1sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30827.png + small + + https://s.yimg.com/iu/api/res/1.2/Mvdd66yOLyaVHbxkQ5j1sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30827.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26784 + 26784 + + Tavarres King + Tavarres + King + Tavarres + King + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26784 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/gaaffHoXKUoikawyD0M9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26784.png + small + + https://s.yimg.com/iu/api/res/1.2/gaaffHoXKUoikawyD0M9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26784.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26859 + 26859 + + Marquess Wilson + Marquess + Wilson + Marquess + Wilson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26859 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/xJNVrP1KLEv18c7VXA0rtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26859.png + small + + https://s.yimg.com/iu/api/res/1.2/xJNVrP1KLEv18c7VXA0rtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26859.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30767 + 30767 + + Dontez Ford + Dontez + Ford + Dontez + Ford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30767 + nfl.t.8 + Detroit Lions + Det + + 6 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/tIg_jqDTghK04MPcFRKkow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30767.png + small + + https://s.yimg.com/iu/api/res/1.2/tIg_jqDTghK04MPcFRKkow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30767.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25970 + 25970 + + Brittan Golden + Brittan + Golden + Brittan + Golden + + nfl.p.25970 + nfl.t.19 + New York Giants + NYG + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/EP6iaSoztJBPj7NupqybTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25970.png + small + + https://s.yimg.com/iu/api/res/1.2/EP6iaSoztJBPj7NupqybTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25970.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29961 + 29961 + + Max McCaffrey + Max + McCaffrey + Max + McCaffrey + + nfl.p.29961 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/.Qbp4GFjShk85Y4V7HdlTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29961.png + small + + https://s.yimg.com/iu/api/res/1.2/.Qbp4GFjShk85Y4V7HdlTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29961.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29472 + 29472 + + Devin Fuller + Devin + Fuller + Devin + Fuller + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29472 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/eE3VJvVBEvlUaptNOx9tFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/29472.png + small + + https://s.yimg.com/iu/api/res/1.2/eE3VJvVBEvlUaptNOx9tFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/29472.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27305 + 27305 + + Rashad Ross + Rashad + Ross + Rashad + Ross + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27305 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/tdIB3mqwqOTt8qKYAD9HxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27305.png + small + + https://s.yimg.com/iu/api/res/1.2/tdIB3mqwqOTt8qKYAD9HxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27305.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29464 + 29464 + + Daniel Braverman + Daniel + Braverman + Daniel + Braverman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29464 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/jbEw5_yO.c0PrJZThFqcRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29464.png + small + + https://s.yimg.com/iu/api/res/1.2/jbEw5_yO.c0PrJZThFqcRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29464.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28425 + 28425 + + Devin Smith + Devin + Smith + Devin + Smith + + nfl.p.28425 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/XL16na120FCtv1rnrMvFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28425.1.png + small + + https://s.yimg.com/iu/api/res/1.2/XL16na120FCtv1rnrMvFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28425.1.png + 0 + O + + WR + + 1 + 1547844840 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31391 + 31391 + + Steven Mitchell Jr. + Steven + Mitchell Jr. + Steven + Mitchell Jr. + + nfl.p.31391 + nfl.t.34 + Houston Texans + Hou + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/ggq.9JS8QWMbZpmkormaHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31391.png + small + + https://s.yimg.com/iu/api/res/1.2/ggq.9JS8QWMbZpmkormaHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31391.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31462 + 31462 + + Derrick Willies + Derrick + Willies + Derrick + Willies + + IR + Injured Reserve + fractured collarbone + nfl.p.31462 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 61 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.30192 + 30192 + + ArDarius Stewart + ArDarius + Stewart + ArDarius + Stewart + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30192 + nfl.t.28 + Washington Redskins + Was + + 4 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/UU2gwtrHIGr.7IPjqZLuLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30192.png + small + + https://s.yimg.com/iu/api/res/1.2/UU2gwtrHIGr.7IPjqZLuLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30192.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30737 + 30737 + + Travis Rudolph + Travis + Rudolph + Travis + Rudolph + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30737 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/FzqfUgywisCYbqs1UXM00g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30737.png + small + + https://s.yimg.com/iu/api/res/1.2/FzqfUgywisCYbqs1UXM00g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30737.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30019 + 30019 + + Marquis Bundy + Marquis + Bundy + Marquis + Bundy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30019 + nfl.t.19 + New York Giants + NYG + + 9 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/Jm4W0PueYPWbXns1OCTWrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30019.png + small + + https://s.yimg.com/iu/api/res/1.2/Jm4W0PueYPWbXns1OCTWrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30019.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31782 + 31782 + + Marcus Peterson + Marcus + Peterson + Marcus + Peterson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31782 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31194 + 31194 + + Javon Wims + Javon + Wims + Javon + Wims + + knee + nfl.p.31194 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/5UdMtYH12ebQMYTM8mNXDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31194.png + small + + https://s.yimg.com/iu/api/res/1.2/5UdMtYH12ebQMYTM8mNXDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31194.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 32 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.27976 + 27976 + + Jeremy Butler + Jeremy + Butler + Jeremy + Butler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27976 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/RmNvhY_6R7em59XDYg4P9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27976.png + small + + https://s.yimg.com/iu/api/res/1.2/RmNvhY_6R7em59XDYg4P9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27976.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31557 + 31557 + + Devonte Boyd + Devonte + Boyd + Devonte + Boyd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31557 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30598 + 30598 + + Brandon Reilly + Brandon + Reilly + Brandon + Reilly + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30598 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/NF6in_li0yUpz4uy4bmjDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30598.png + small + + https://s.yimg.com/iu/api/res/1.2/NF6in_li0yUpz4uy4bmjDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30598.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31281 + 31281 + + Malik Earl + Malik + Earl + Malik + Earl + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31281 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29791 + 29791 + + Jalin Marshall + Jalin + Marshall + Jalin + Marshall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29791 + nfl.t.20 + New York Jets + NYJ + + 11 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/W6bkXGkal3aHsEINtW5JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29791.png + small + + https://s.yimg.com/iu/api/res/1.2/W6bkXGkal3aHsEINtW5JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29791.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30111 + 30111 + + Cyril Grayson Jr. + Cyril + Grayson Jr. + Cyril + Grayson Jr. + + nfl.p.30111 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/4M8W_HrAsL0OxxwI4b.Zhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30111.png + small + + https://s.yimg.com/iu/api/res/1.2/4M8W_HrAsL0OxxwI4b.Zhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30111.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31492 + 31492 + + Elijah Marks + Elijah + Marks + Elijah + Marks + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31492 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31793 + 31793 + + Austin Wolf + Austin + Wolf + Austin + Wolf + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31793 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30570 + 30570 + + Brisly Estime + Brisly + Estime + Brisly + Estime + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30570 + nfl.t.20 + New York Jets + NYJ + + 11 + + 3 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24846 + 24846 + + Greg Little + Greg + Little + Greg + Little + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24846 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/jjdG6UQeg0wgHJpyfOPJwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24846.png + small + + https://s.yimg.com/iu/api/res/1.2/jjdG6UQeg0wgHJpyfOPJwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/24846.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31275 + 31275 + + Erv Philips + Erv + Philips + Erv + Philips + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31275 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/FSWvU1Nhe5cYwfTKTbYsmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31275.png + small + + https://s.yimg.com/iu/api/res/1.2/FSWvU1Nhe5cYwfTKTbYsmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31275.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31129 + 31129 + + Reece Fountain + Reece + Fountain + Reece + Fountain + + ankle + nfl.p.31129 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/DBGioAxxno3tcsx04jiYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31129.png + small + + https://s.yimg.com/iu/api/res/1.2/DBGioAxxno3tcsx04jiYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31129.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31508 + 31508 + + Chad Beebe + Chad + Beebe + Chad + Beebe + + Q + Questionable + hamstring + nfl.p.31508 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 39 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.29496 + 29496 + + Canaan Severin + Canaan + Severin + Canaan + Severin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29496 + nfl.t.19 + New York Giants + NYG + + 9 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/qhQap30cS.CEzvj8FLfASw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29496.png + small + + https://s.yimg.com/iu/api/res/1.2/qhQap30cS.CEzvj8FLfASw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29496.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29348 + 29348 + + Ricardo Louis + Ricardo + Louis + Ricardo + Louis + + IR + Injured Reserve + neck + nfl.p.29348 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/IculRSK1oG8uwVNQRaHaWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29348.png + small + + https://s.yimg.com/iu/api/res/1.2/IculRSK1oG8uwVNQRaHaWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29348.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31401 + 31401 + + Mikah Holder + Mikah + Holder + Mikah + Holder + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31401 + nfl.t.28 + Washington Redskins + Was + + 4 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29533 + 29533 + + Dom Williams + Dom + Williams + Dom + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29533 + nfl.t.8 + Detroit Lions + Det + + 6 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/0BKTslKRhyX_1hKqiU_CAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29533.png + small + + https://s.yimg.com/iu/api/res/1.2/0BKTslKRhyX_1hKqiU_CAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29533.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30720 + 30720 + + Tanner Gentry + Tanner + Gentry + Tanner + Gentry + + nfl.p.30720 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/o9ZlJ5cpu.cN62KYqf0zIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30720.png + small + + https://s.yimg.com/iu/api/res/1.2/o9ZlJ5cpu.cN62KYqf0zIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30720.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29795 + 29795 + + Tevin Jones + Tevin + Jones + Tevin + Jones + + nfl.p.29795 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/wp50yh8pVosH_nkN4_bpkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29795.png + small + + https://s.yimg.com/iu/api/res/1.2/wp50yh8pVosH_nkN4_bpkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29795.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31450 + 31450 + + Evan Berry + Evan + Berry + Evan + Berry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31450 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31464 + 31464 + + Caleb Scott + Caleb + Scott + Caleb + Scott + + nfl.p.31464 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31651 + 31651 + + Chris Lacy + Chris + Lacy + Chris + Lacy + + nfl.p.31651 + nfl.t.8 + Detroit Lions + Det + + 6 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31351 + 31351 + + Lamar Jordan + Lamar + Jordan + Lamar + Jordan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31351 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 86 + WR + + https://s.yimg.com/iu/api/res/1.2/uQr4xm1CCmDl.oWdELz0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31351.png + small + + https://s.yimg.com/iu/api/res/1.2/uQr4xm1CCmDl.oWdELz0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31351.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31397 + 31397 + + Simmie Cobbs Jr. + Simmie + Cobbs Jr. + Simmie + Cobbs Jr. + + knee + nfl.p.31397 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/aJJuf_uslE1CVceUvUe2kA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31397.png + small + + https://s.yimg.com/iu/api/res/1.2/aJJuf_uslE1CVceUvUe2kA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31397.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31608 + 31608 + + Elijaah Goins + Elijaah + Goins + Elijaah + Goins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31608 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30553 + 30553 + + K.D. Cannon + K.D. + Cannon + K.D. + Cannon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30553 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/OO.goCkrARI0KO9Su68JoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30553.png + small + + https://s.yimg.com/iu/api/res/1.2/OO.goCkrARI0KO9Su68JoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30553.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26820 + 26820 + + Cobi Hamilton + Cobi + Hamilton + Cobi + Hamilton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26820 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 1 + WR + + https://s.yimg.com/iu/api/res/1.2/uVxOSJ8I60crHxX.C4mlXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26820.png + small + + https://s.yimg.com/iu/api/res/1.2/uVxOSJ8I60crHxX.C4mlXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26820.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27921 + 27921 + + Brandon Coleman + Brandon + Coleman + Brandon + Coleman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27921 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/CfZuEmeplbQ7F1RiSj5B3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27921.png + small + + https://s.yimg.com/iu/api/res/1.2/CfZuEmeplbQ7F1RiSj5B3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27921.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31705 + 31705 + + Deontez Alexander + Deontez + Alexander + Deontez + Alexander + + undisclosed + nfl.p.31705 + nfl.t.8 + Detroit Lions + Det + + 6 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31525 + 31525 + + Jordan Smallwood + Jordan + Smallwood + Jordan + Smallwood + + nfl.p.31525 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30942 + 30942 + + Justice Liggins + Justice + Liggins + Justice + Liggins + + nfl.p.30942 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/M3DaYKWC9DcWoghOG1Ls4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30942.png + small + + https://s.yimg.com/iu/api/res/1.2/M3DaYKWC9DcWoghOG1Ls4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30942.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.9294 + 9294 + + Kenny Britt + Kenny + Britt + Kenny + Britt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9294 + nfl.t.17 + New England Patriots + NE + + 11 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/vU7425EMyuNNEGq8iF4VqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9294.png + small + + https://s.yimg.com/iu/api/res/1.2/vU7425EMyuNNEGq8iF4VqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9294.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29069 + 29069 + + Donteea Dye + Donteea + Dye + Donteea + Dye + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29069 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/2gcZ14UzrIIrU6r4y9rTYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29069.png + small + + https://s.yimg.com/iu/api/res/1.2/2gcZ14UzrIIrU6r4y9rTYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29069.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31178 + 31178 + + Cedrick Wilson + Cedrick + Wilson + Cedrick + Wilson + + IR + Injured Reserve + shoulder + nfl.p.31178 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/MOcons1etk8zaf3msS1Qeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31178.png + small + + https://s.yimg.com/iu/api/res/1.2/MOcons1etk8zaf3msS1Qeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31178.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29868 + 29868 + + Darius Powe + Darius + Powe + Darius + Powe + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29868 + nfl.t.19 + New York Giants + NYG + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/0eCbKa0ti7yV.DYMHMOcZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29868.png + small + + https://s.yimg.com/iu/api/res/1.2/0eCbKa0ti7yV.DYMHMOcZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29868.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31327 + 31327 + + Corey Willis + Corey + Willis + Corey + Willis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31327 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/Wt_TJGaQS4lQQ6m3ZE9MLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31327.png + small + + https://s.yimg.com/iu/api/res/1.2/Wt_TJGaQS4lQQ6m3ZE9MLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31327.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30510 + 30510 + + Tim White + Tim + White + Tim + White + + nfl.p.30510 + nfl.t.20 + New York Jets + NYJ + + 11 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/hvsHz8aQgNpQrTrvGYQv6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30510.png + small + + https://s.yimg.com/iu/api/res/1.2/hvsHz8aQgNpQrTrvGYQv6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30510.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 14 + + + 13 + 0 + + + 14 + 210 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.30002 + 30002 + + Jake Lampman + Jake + Lampman + Jake + Lampman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30002 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/lCskKlTAkeQ3oCjmPAkFug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30002.png + small + + https://s.yimg.com/iu/api/res/1.2/lCskKlTAkeQ3oCjmPAkFug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30002.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31797 + 31797 + + Allenzae Staggers + Allenzae + Staggers + Allenzae + Staggers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31797 + nfl.t.28 + Washington Redskins + Was + + 4 + + 6 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29426 + 29426 + + Kolby Listenbee + Kolby + Listenbee + Kolby + Listenbee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29426 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/sYD_xIcoqgbq3heqqtZDaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29426.1.png + small + + https://s.yimg.com/iu/api/res/1.2/sYD_xIcoqgbq3heqqtZDaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29426.1.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31799 + 31799 + + Julian Williams + Julian + Williams + Julian + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31799 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24940 + 24940 + + Jeremy Kerley + Jeremy + Kerley + Jeremy + Kerley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24940 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/rwRzVJ8oySBpU9CFWfBB9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24940.png + small + + https://s.yimg.com/iu/api/res/1.2/rwRzVJ8oySBpU9CFWfBB9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24940.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 7 + + + 13 + 0 + + + 14 + 10 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30430 + 30430 + + Andre Patton + Andre + Patton + Andre + Patton + + nfl.p.30430 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/4BQz1a99ijLrimlqdIOhiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30430.png + small + + https://s.yimg.com/iu/api/res/1.2/4BQz1a99ijLrimlqdIOhiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30430.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29024 + 29024 + + Lucky Whitehead + Lucky + Whitehead + Lucky + Whitehead + + foot + nfl.p.29024 + nfl.t.20 + New York Jets + NYJ + + 11 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/km7ooyqyXbM2oZRE_z1hBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29024.png + small + + https://s.yimg.com/iu/api/res/1.2/km7ooyqyXbM2oZRE_z1hBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29024.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31775 + 31775 + + Blake Jackson + Blake + Jackson + Blake + Jackson + + nfl.p.31775 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31405 + 31405 + + Cam Sims + Cam + Sims + Cam + Sims + + IR + Injured Reserve + undisclosed + nfl.p.31405 + nfl.t.28 + Washington Redskins + Was + + 4 + + 89 + WR + + https://s.yimg.com/iu/api/res/1.2/.xwGqCcBjsW.VCyA8ns7Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31405.png + small + + https://s.yimg.com/iu/api/res/1.2/.xwGqCcBjsW.VCyA8ns7Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31405.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29397 + 29397 + + Trevor Davis + Trevor + Davis + Trevor + Davis + + IR + Injured Reserve + hamstring + nfl.p.29397 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/YSRkm9H3ItDUflxBTxS1yQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29397.png + small + + https://s.yimg.com/iu/api/res/1.2/YSRkm9H3ItDUflxBTxS1yQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/29397.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 64 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30808 + 30808 + + Riley McCarron + Riley + McCarron + Riley + McCarron + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30808 + nfl.t.17 + New England Patriots + NE + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/4VFunyTRSB7Zoe6ovWA4pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30808.png + small + + https://s.yimg.com/iu/api/res/1.2/4VFunyTRSB7Zoe6ovWA4pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30808.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31794 + 31794 + + Darren Carrington II + Darren + Carrington II + Darren + Carrington II + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31794 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31271 + 31271 + + Dorren Miller + Dorren + Miller + Dorren + Miller + + nfl.p.31271 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/N80BmltGVRaBrMwhOUrDWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31271.png + small + + https://s.yimg.com/iu/api/res/1.2/N80BmltGVRaBrMwhOUrDWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31271.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30964 + 30964 + + Lamar Atkins + Lamar + Atkins + Lamar + Atkins + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30964 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 45 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31155 + 31155 + + Deon Cain + Deon + Cain + Deon + Cain + + IR + Injured Reserve + torn ACL + nfl.p.31155 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 8 + WR + + https://s.yimg.com/iu/api/res/1.2/D99kY0arNW2G99PbF77z4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31155.png + small + + https://s.yimg.com/iu/api/res/1.2/D99kY0arNW2G99PbF77z4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31155.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31711 + 31711 + + Matt Fleming + Matt + Fleming + Matt + Fleming + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31711 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31349 + 31349 + + Devin Gray + Devin + Gray + Devin + Gray + + nfl.p.31349 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/1k5xhe3q3UGpbDK3FCLD.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31349.png + small + + https://s.yimg.com/iu/api/res/1.2/1k5xhe3q3UGpbDK3FCLD.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31349.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30648 + 30648 + + Francis Owusu + Francis + Owusu + Francis + Owusu + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30648 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/neg72B5sUMdKHxO.XHQTRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30648.png + small + + https://s.yimg.com/iu/api/res/1.2/neg72B5sUMdKHxO.XHQTRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30648.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27767 + 27767 + + James Wright + James + Wright + James + Wright + + IR + Injured Reserve + undisclosed + nfl.p.27767 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/kI33KVoZU5JufHEhRS3KfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27767.png + small + + https://s.yimg.com/iu/api/res/1.2/kI33KVoZU5JufHEhRS3KfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/27767.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31323 + 31323 + + Jonah Trinnaman + Jonah + Trinnaman + Jonah + Trinnaman + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31323 + nfl.t.20 + New York Jets + NYJ + + 11 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/rcDI9OxhdJJVPkQgAdjp9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31323.png + small + + https://s.yimg.com/iu/api/res/1.2/rcDI9OxhdJJVPkQgAdjp9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31323.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27746 + 27746 + + Michael Campanaro + Michael + Campanaro + Michael + Campanaro + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27746 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/xZwvY5XdJ8HKKaOTTiMrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27746.png + small + + https://s.yimg.com/iu/api/res/1.2/xZwvY5XdJ8HKKaOTTiMrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27746.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29772 + 29772 + + Jace Billingsley + Jace + Billingsley + Jace + Billingsley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29772 + nfl.t.17 + New England Patriots + NE + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/3f2Igm1h_8S7IBWGUxc_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29772.png + small + + https://s.yimg.com/iu/api/res/1.2/3f2Igm1h_8S7IBWGUxc_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29772.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27764 + 27764 + + Jeff Janis + Jeff + Janis + Jeff + Janis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27764 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/1UvRAsUA8D4fKFTdL7dlgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27764.png + small + + https://s.yimg.com/iu/api/res/1.2/1UvRAsUA8D4fKFTdL7dlgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27764.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31282 + 31282 + + Marchie Murdock + Marchie + Murdock + Marchie + Murdock + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31282 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/JNfxh9Wh8vNdBFSNnp16NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31282.png + small + + https://s.yimg.com/iu/api/res/1.2/JNfxh9Wh8vNdBFSNnp16NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31282.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29001 + 29001 + + Bradley Marquez + Bradley + Marquez + Bradley + Marquez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29001 + nfl.t.8 + Detroit Lions + Det + + 6 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/sx7jiVQdMTXu4qOiV08sNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29001.png + small + + https://s.yimg.com/iu/api/res/1.2/sx7jiVQdMTXu4qOiV08sNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29001.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8609 + 8609 + + Eric Weems + Eric + Weems + Eric + Weems + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8609 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/v9m2bp8t9GiTWhHBVTxzmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8609.png + small + + https://s.yimg.com/iu/api/res/1.2/v9m2bp8t9GiTWhHBVTxzmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8609.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31388 + 31388 + + Ricky Jeune + Ricky + Jeune + Ricky + Jeune + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31388 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 2 + WR + + https://s.yimg.com/iu/api/res/1.2/GE9Mb7I0.i_V84Ptb4wA9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31388.png + small + + https://s.yimg.com/iu/api/res/1.2/GE9Mb7I0.i_V84Ptb4wA9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/31388.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31242 + 31242 + + Jake Wieneke + Jake + Wieneke + Jake + Wieneke + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31242 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 9 + WR + + https://s.yimg.com/iu/api/res/1.2/R93_Idn2ecNFDvT9prZTTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31242.png + small + + https://s.yimg.com/iu/api/res/1.2/R93_Idn2ecNFDvT9prZTTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31242.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27422 + 27422 + + Marlon Brown + Marlon + Brown + Marlon + Brown + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.27422 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/ESjNGTXsQJirKpwBnmU5PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27422.png + small + + https://s.yimg.com/iu/api/res/1.2/ESjNGTXsQJirKpwBnmU5PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27422.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30526 + 30526 + + Bug Howard + Bug + Howard + Bug + Howard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30526 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 87 + WR + + https://s.yimg.com/iu/api/res/1.2/4FY3sbq8k0LgTksJ2zUc8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30526.png + small + + https://s.yimg.com/iu/api/res/1.2/4FY3sbq8k0LgTksJ2zUc8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30526.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31642 + 31642 + + Teo Redding + Teo + Redding + Teo + Redding + + nfl.p.31642 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27938 + 27938 + + Philly Brown + Philly + Brown + Philly + Brown + + NA + Inactive: Coach's Decision or Not on Roster + head + nfl.p.27938 + nfl.t.7 + Denver Broncos + Den + + 10 + + 5 + WR + + https://s.yimg.com/iu/api/res/1.2/iJFtVhlIcqHy.mCtqqTq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27938.png + small + + https://s.yimg.com/iu/api/res/1.2/iJFtVhlIcqHy.mCtqqTq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27938.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30231 + 30231 + + Mack Hollins + Mack + Hollins + Mack + Hollins + + IR + Injured Reserve + groin + nfl.p.30231 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/YcQbWzgvYI1p3rkfGGajtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30231.png + small + + https://s.yimg.com/iu/api/res/1.2/YcQbWzgvYI1p3rkfGGajtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30231.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.23996 + 23996 + + Jermaine Gresham + Jermaine + Gresham + Jermaine + Gresham + + back + nfl.p.23996 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/RH8.y0cfvj7DwwAJ9JQw2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/23996.png + small + + https://s.yimg.com/iu/api/res/1.2/RH8.y0cfvj7DwwAJ9JQw2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/23996.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 94 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 12 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.27826 + 27826 + + Bennie Fowler + Bennie + Fowler + Bennie + Fowler + + nfl.p.27826 + nfl.t.19 + New York Giants + NYG + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/7CC_TFcY3jUSiSJLDCk6Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27826.png + small + + https://s.yimg.com/iu/api/res/1.2/7CC_TFcY3jUSiSJLDCk6Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27826.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 16 + + + 12 + 199 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 27 + + + 79 + 0 + + + 80 + 12 + + + 81 + 0 + + + + + + 380.p.27717 + 27717 + + TJ Jones + TJ + Jones + TJ + Jones + + nfl.p.27717 + nfl.t.8 + Detroit Lions + Det + + 6 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/Rzek78L4Sxs4dk3V6KViCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27717.png + small + + https://s.yimg.com/iu/api/res/1.2/Rzek78L4Sxs4dk3V6KViCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27717.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 19 + + + 12 + 190 + + + 13 + 2 + + + 14 + 168 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 26 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.28184 + 28184 + + Xavier Grimble + Xavier + Grimble + Xavier + Grimble + + nfl.p.28184 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/ZVrQbZHjrubDicQo7ouPCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28184.png + small + + https://s.yimg.com/iu/api/res/1.2/ZVrQbZHjrubDicQo7ouPCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28184.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 86 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.7777 + 7777 + + Marcedes Lewis + Marcedes + Lewis + Marcedes + Lewis + + nfl.p.7777 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/W0JS.Hufxa09Vs_MWZhp8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7777.png + small + + https://s.yimg.com/iu/api/res/1.2/W0JS.Hufxa09Vs_MWZhp8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7777.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 39 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.28505 + 28505 + + Blake Bell + Blake + Bell + Blake + Bell + + nfl.p.28505 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 87 + TE + + https://s.yimg.com/iu/api/res/1.2/wZuzcyHyhZuYuWBXcN7b1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28505.png + small + + https://s.yimg.com/iu/api/res/1.2/wZuzcyHyhZuYuWBXcN7b1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28505.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 8 + + + 12 + 67 + + + 13 + 0 + + + 14 + 9 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.30290 + 30290 + + Trent Taylor + Trent + Taylor + Trent + Taylor + + back + nfl.p.30290 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 81 + WR + + https://s.yimg.com/iu/api/res/1.2/3iKAaVOSzRww4bnGyTTUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30290.png + small + + https://s.yimg.com/iu/api/res/1.2/3iKAaVOSzRww4bnGyTTUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30290.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 26 + + + 12 + 215 + + + 13 + 1 + + + 14 + 93 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 41 + + + 79 + 0 + + + 80 + 11 + + + 81 + 0 + + + + + + 380.p.29893 + 29893 + + Andy Jones + Andy + Jones + Andy + Jones + + nfl.p.29893 + nfl.t.8 + Detroit Lions + Det + + 6 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/D._S9ew50m91GeCh9AN31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29893.png + small + + https://s.yimg.com/iu/api/res/1.2/D._S9ew50m91GeCh9AN31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29893.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 11 + + + 12 + 80 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.30211 + 30211 + + Chad Williams + Chad + Williams + Chad + Williams + + hamstring + nfl.p.30211 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/9sdSrSOFAScHqP1.dEyZwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30211.png + small + + https://s.yimg.com/iu/api/res/1.2/9sdSrSOFAScHqP1.dEyZwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30211.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 9 + + + 10 + 0 + + + 11 + 17 + + + 12 + 171 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 46 + + + 79 + 0 + + + 80 + 9 + + + 81 + 0 + + + + + + 380.p.26753 + 26753 + + Kyle Juszczyk + Kyle + Juszczyk + Kyle + Juszczyk + + nfl.p.26753 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/41ClwzwwAZl2PG2qYEcryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26753.png + small + + https://s.yimg.com/iu/api/res/1.2/41ClwzwwAZl2PG2qYEcryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26753.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 8 + + + 9 + 30 + + + 10 + 0 + + + 11 + 30 + + + 12 + 324 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 41 + + + 79 + 0 + + + 80 + 15 + + + 81 + 2 + + + + + + 380.p.31238 + 31238 + + Kamryn Pettway + Kamryn + Pettway + Kamryn + Pettway + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31238 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30355 + 30355 + + Khalfani Muhammad + Khalfani + Muhammad + Khalfani + Muhammad + + nfl.p.30355 + nfl.t.7 + Denver Broncos + Den + + 10 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/nYd14o4LvZMRuIWmRCNUkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30355.png + small + + https://s.yimg.com/iu/api/res/1.2/nYd14o4LvZMRuIWmRCNUkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30355.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31622 + 31622 + + Akrum Wadley + Akrum + Wadley + Akrum + Wadley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31622 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8850 + 8850 + + Jamaal Charles + Jamaal + Charles + Jamaal + Charles + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8850 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/S4SjLNfACzpTOES85YFeCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/8850.png + small + + https://s.yimg.com/iu/api/res/1.2/S4SjLNfACzpTOES85YFeCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/8850.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 7 + + + 10 + 0 + + + 11 + 2 + + + 12 + 7 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28496 + 28496 + + Jalston Fowler + Jalston + Fowler + Jalston + Fowler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28496 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/imhttFm77PLVowOQFO_j_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28496.png + small + + https://s.yimg.com/iu/api/res/1.2/imhttFm77PLVowOQFO_j_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28496.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31510 + 31510 + + Johnny Stanton + Johnny + Stanton + Johnny + Stanton + + IR + Injured Reserve + left knee + nfl.p.31510 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 48 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31335 + 31335 + + Christopher Ezeala + Christopher + Ezeala + Christopher + Ezeala + + nfl.p.31335 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/8qYbpbX5KXFqDB2OiBILWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31335.png + small + + https://s.yimg.com/iu/api/res/1.2/8qYbpbX5KXFqDB2OiBILWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31335.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29476 + 29476 + + Keith Marshall + Keith + Marshall + Keith + Marshall + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29476 + nfl.t.28 + Washington Redskins + Was + + 4 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/UQBdZzAMBmvnd4PAS1Se_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29476.png + small + + https://s.yimg.com/iu/api/res/1.2/UQBdZzAMBmvnd4PAS1Se_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29476.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31396 + 31396 + + Martez Carter + Martez + Carter + Martez + Carter + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31396 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/iQuXHWf8.xBk3qzV3.UfBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31396.png + small + + https://s.yimg.com/iu/api/res/1.2/iQuXHWf8.xBk3qzV3.UfBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31396.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30398 + 30398 + + Tim Cook + Tim + Cook + Tim + Cook + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30398 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/KKCT0LWwBkyqTFwnewQ3xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30398.png + small + + https://s.yimg.com/iu/api/res/1.2/KKCT0LWwBkyqTFwnewQ3xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30398.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29184 + 29184 + + Bronson Hill + Bronson + Hill + Bronson + Hill + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29184 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/qr11wjeuqVI3InrMeXvwxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29184.1.png + small + + https://s.yimg.com/iu/api/res/1.2/qr11wjeuqVI3InrMeXvwxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29184.1.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27312 + 27312 + + George Winn + George + Winn + George + Winn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27312 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/jq5y2i_gpDp3PltbTBrQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27312.png + small + + https://s.yimg.com/iu/api/res/1.2/jq5y2i_gpDp3PltbTBrQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27312.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30319 + 30319 + + De'Angelo Henderson + De'Angelo + Henderson + De'Angelo + Henderson + + nfl.p.30319 + nfl.t.20 + New York Jets + NYJ + + 11 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/xm_kVWxx5u1Cbt90LDXJag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30319.png + small + + https://s.yimg.com/iu/api/res/1.2/xm_kVWxx5u1Cbt90LDXJag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30319.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 19 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30234 + 30234 + + Joe Williams + Joe + Williams + Joe + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30234 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/oaZFsrOUCBLqSIp0cFkE6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30234.png + small + + https://s.yimg.com/iu/api/res/1.2/oaZFsrOUCBLqSIp0cFkE6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30234.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31467 + 31467 + + Khalid Hill + Khalid + Hill + Khalid + Hill + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.31467 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26601 + 26601 + + Austin Johnson + Austin + Johnson + Austin + Johnson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26601 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/mGdwh1Q1BAuDmhva8eIssQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26601.png + small + + https://s.yimg.com/iu/api/res/1.2/mGdwh1Q1BAuDmhva8eIssQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26601.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29694 + 29694 + + Rob Kelley + Rob + Kelley + Rob + Kelley + + IR + Injured Reserve + toe + nfl.p.29694 + nfl.t.28 + Washington Redskins + Was + + 4 + + 20 + RB + + https://s.yimg.com/iu/api/res/1.2/o1wjkS_HjNbQagNA.JlNeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29694.png + small + + https://s.yimg.com/iu/api/res/1.2/o1wjkS_HjNbQagNA.JlNeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29694.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 8 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.24843 + 24843 + + Shane Vereen + Shane + Vereen + Shane + Vereen + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.24843 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/D5OxZ8pz_Qmc4cH2W5aU_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/24843.png + small + + https://s.yimg.com/iu/api/res/1.2/D5OxZ8pz_Qmc4cH2W5aU_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/24843.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28922 + 28922 + + John Crockett + John + Crockett + John + Crockett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28922 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/lcuRVHnex2FGLLOh1w7CYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28922.png + small + + https://s.yimg.com/iu/api/res/1.2/lcuRVHnex2FGLLOh1w7CYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28922.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31795 + 31795 + + Justin Stockton + Justin + Stockton + Justin + Stockton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31795 + nfl.t.8 + Detroit Lions + Det + + 6 + + 49 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28483 + 28483 + + Matt Jones + Matt + Jones + Matt + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28483 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/ahaqxNNxp.3C.ryp3E2aqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28483.png + small + + https://s.yimg.com/iu/api/res/1.2/ahaqxNNxp.3C.ryp3E2aqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28483.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31514 + 31514 + + Chris Warren III + Chris + Warren III + Chris + Warren III + + IR + Injured Reserve + undisclosed + nfl.p.31514 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30061 + 30061 + + Troymaine Pope + Troymaine + Pope + Troymaine + Pope + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30061 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/sERvsK4r1pFRnVlYy77yCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30061.png + small + + https://s.yimg.com/iu/api/res/1.2/sERvsK4r1pFRnVlYy77yCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30061.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28953 + 28953 + + Terrence Magee + Terrence + Magee + Terrence + Magee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28953 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/nJyGVTmsQe_qfAPEI9yybg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28953.png + small + + https://s.yimg.com/iu/api/res/1.2/nJyGVTmsQe_qfAPEI9yybg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28953.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30873 + 30873 + + Lenard Tillery + Lenard + Tillery + Lenard + Tillery + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30873 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/FPf5H1N.8jDKCK2b.Ch25A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30873.png + small + + https://s.yimg.com/iu/api/res/1.2/FPf5H1N.8jDKCK2b.Ch25A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30873.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30650 + 30650 + + De'Veon Smith + De'Veon + Smith + De'Veon + Smith + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30650 + nfl.t.28 + Washington Redskins + Was + + 4 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/I7KXzQGV9abi9ayZGZuDAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30650.png + small + + https://s.yimg.com/iu/api/res/1.2/I7KXzQGV9abi9ayZGZuDAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30650.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31319 + 31319 + + Austin Ramesh + Austin + Ramesh + Austin + Ramesh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31319 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31423 + 31423 + + Mark Thompson + Mark + Thompson + Mark + Thompson + + nfl.p.31423 + nfl.t.8 + Detroit Lions + Det + + 6 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28283 + 28283 + + Fitzgerald Toussaint + Fitzgerald + Toussaint + Fitzgerald + Toussaint + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28283 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/royuaH61EGWrhvAIXO1pVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28283.png + small + + https://s.yimg.com/iu/api/res/1.2/royuaH61EGWrhvAIXO1pVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/28283.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30275 + 30275 + + Jeremy McNichols + Jeremy + McNichols + Jeremy + McNichols + + nfl.p.30275 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/JU_G.7gln2V6JnF_MXt_5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30275.png + small + + https://s.yimg.com/iu/api/res/1.2/JU_G.7gln2V6JnF_MXt_5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30275.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 4 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.31787 + 31787 + + Gerald Holmes + Gerald + Holmes + Gerald + Holmes + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31787 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28714 + 28714 + + Thomas Rawls + Thomas + Rawls + Thomas + Rawls + + nfl.p.28714 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/3dXS8mM.RksF8BzQ.tUypQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28714.png + small + + https://s.yimg.com/iu/api/res/1.2/3dXS8mM.RksF8BzQ.tUypQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28714.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30850 + 30850 + + Trey Edmunds + Trey + Edmunds + Trey + Edmunds + + nfl.p.30850 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/8ImP0oah4KyHOFzljslpCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30850.png + small + + https://s.yimg.com/iu/api/res/1.2/8ImP0oah4KyHOFzljslpCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30850.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30202 + 30202 + + D'Onta Foreman + D'Onta + Foreman + D'Onta + Foreman + + nfl.p.30202 + nfl.t.34 + Houston Texans + Hou + + 10 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/Lr2uijdlhN59IJuaKKSzdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30202.png + small + + https://s.yimg.com/iu/api/res/1.2/Lr2uijdlhN59IJuaKKSzdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30202.png + 0 + O + + RB + + + 128.2 + 14.2 + 1.7 + 0.05 + + + week + 17 + 7 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 7 + + + 9 + -1 + + + 10 + 0 + + + 11 + 2 + + + 12 + 28 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.26596 + 26596 + + Fozzy Whittaker + Fozzy + Whittaker + Fozzy + Whittaker + + IR + Injured Reserve + torn right ACL + nfl.p.26596 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/fu_ifFJoR.vPPaaj0_aROQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26596.png + small + + https://s.yimg.com/iu/api/res/1.2/fu_ifFJoR.vPPaaj0_aROQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26596.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31662 + 31662 + + Ryan Nall + Ryan + Nall + Ryan + Nall + + nfl.p.31662 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29085 + 29085 + + Mack Brown + Mack + Brown + Mack + Brown + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.29085 + nfl.t.28 + Washington Redskins + Was + + 4 + + 47 + RB + + https://s.yimg.com/iu/api/res/1.2/xwJ.zcoH4SJESFUmen51zA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29085.png + small + + https://s.yimg.com/iu/api/res/1.2/xwJ.zcoH4SJESFUmen51zA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29085.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29324 + 29324 + + C.J. Prosise + C.J. + Prosise + C.J. + Prosise + + IR + Injured Reserve + abdomen + nfl.p.29324 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/waEsgxPKhUJYMKnkLpX2cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29324.png + small + + https://s.yimg.com/iu/api/res/1.2/waEsgxPKhUJYMKnkLpX2cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29324.png + 0 + O + + RB + + 1 + 1547853360 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -3 + + + 10 + 0 + + + 11 + 3 + + + 12 + 22 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31621 + 31621 + + Larry Rose III + Larry + Rose III + Larry + Rose III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31621 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29661 + 29661 + + Brandon Wilds + Brandon + Wilds + Brandon + Wilds + + nfl.p.29661 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/VeC.CygXZjtcpRK6gGTTmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29661.png + small + + https://s.yimg.com/iu/api/res/1.2/VeC.CygXZjtcpRK6gGTTmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29661.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 15 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31637 + 31637 + + Kyle Lewis + Kyle + Lewis + Kyle + Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31637 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 1 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28874 + 28874 + + Akeem Hunt + Akeem + Hunt + Akeem + Hunt + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28874 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/QsMzEXwiD25mhorFmcvHLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28874.png + small + + https://s.yimg.com/iu/api/res/1.2/QsMzEXwiD25mhorFmcvHLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28874.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31280 + 31280 + + Jordan Chunn + Jordan + Chunn + Jordan + Chunn + + nfl.p.31280 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/D.KUqqRSzSncibNQxLS71Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31280.png + small + + https://s.yimg.com/iu/api/res/1.2/D.KUqqRSzSncibNQxLS71Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31280.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30587 + 30587 + + Jarveon Williams + Jarveon + Williams + Jarveon + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30587 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/68SAl1cd2PCspIbulpWBLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30587.png + small + + https://s.yimg.com/iu/api/res/1.2/68SAl1cd2PCspIbulpWBLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30587.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26719 + 26719 + + Knile Davis + Knile + Davis + Knile + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26719 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/zi24f_3ujvYlUhUtLTBY2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26719.png + small + + https://s.yimg.com/iu/api/res/1.2/zi24f_3ujvYlUhUtLTBY2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26719.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31171 + 31171 + + Boston Scott + Boston + Scott + Boston + Scott + + nfl.p.31171 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 49 + RB + + https://s.yimg.com/iu/api/res/1.2/VX3Uywd58H0ulHTqKgtByA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31171.png + small + + https://s.yimg.com/iu/api/res/1.2/VX3Uywd58H0ulHTqKgtByA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31171.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 96 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30533 + 30533 + + Brandon Radcliff + Brandon + Radcliff + Brandon + Radcliff + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30533 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/98ORuxRiy0.7mWT.f8qGrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30533.png + small + + https://s.yimg.com/iu/api/res/1.2/98ORuxRiy0.7mWT.f8qGrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30533.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30318 + 30318 + + Sam Rogers + Sam + Rogers + Sam + Rogers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30318 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/k9.jOqKQ0iITSereXh_eYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30318.png + small + + https://s.yimg.com/iu/api/res/1.2/k9.jOqKQ0iITSereXh_eYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30318.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.9043 + 9043 + + Mike Tolbert + Mike + Tolbert + Mike + Tolbert + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9043 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/k0zWH4wGCK9AaNc0lCy7eA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9043.png + small + + https://s.yimg.com/iu/api/res/1.2/k0zWH4wGCK9AaNc0lCy7eA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9043.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25816 + 25816 + + Robert Turbin + Robert + Turbin + Robert + Turbin + + NA + Inactive: Coach's Decision or Not on Roster + shoulder + nfl.p.25816 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/ymaz76CWK6HvcuxhupIccg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25816.png + small + + https://s.yimg.com/iu/api/res/1.2/ymaz76CWK6HvcuxhupIccg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/25816.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 10 + + + 10 + 0 + + + 11 + 1 + + + 12 + 3 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28044 + 28044 + + Charcandrick West + Charcandrick + West + Charcandrick + West + + nfl.p.28044 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/tpJkcmUFdE792soGIjQstg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28044.png + small + + https://s.yimg.com/iu/api/res/1.2/tpJkcmUFdE792soGIjQstg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28044.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + -1 + + + 10 + 0 + + + 11 + 2 + + + 12 + 37 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 2 + + + 81 + 1 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27597 + 27597 + + Charles Sims + Charles + Sims + Charles + Sims + + NA + Inactive: Coach's Decision or Not on Roster + knee + nfl.p.27597 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/vNb.ic_UmRZnqSpHEQdKVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27597.png + small + + https://s.yimg.com/iu/api/res/1.2/vNb.ic_UmRZnqSpHEQdKVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/27597.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30365 + 30365 + + Matt Dayes + Matt + Dayes + Matt + Dayes + + nfl.p.30365 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/0_zseACsfB.nsgxyn8Goow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30365.png + small + + https://s.yimg.com/iu/api/res/1.2/0_zseACsfB.nsgxyn8Goow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30365.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 17 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29715 + 29715 + + Aaron Green + Aaron + Green + Aaron + Green + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29715 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/cKNxBgUsqKn7nzy_t2Rj5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29715.png + small + + https://s.yimg.com/iu/api/res/1.2/cKNxBgUsqKn7nzy_t2Rj5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29715.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31595 + 31595 + + Keith Ford + Keith + Ford + Keith + Ford + + nfl.p.31595 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 21 + + + 9 + 79 + + + 10 + 0 + + + 11 + 3 + + + 12 + 21 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 1 + + + 81 + 4 + + + + + + 380.p.29178 + 29178 + + Terrell Watson + Terrell + Watson + Terrell + Watson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29178 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/30PDQCN2QsgAY8q6EN70JA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29178.png + small + + https://s.yimg.com/iu/api/res/1.2/30PDQCN2QsgAY8q6EN70JA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29178.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29872 + 29872 + + D.J. Foster + D.J. + Foster + D.J. + Foster + + IR + Injured Reserve + knee + nfl.p.29872 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/4c1A6QI0_rBQVce2TVE8Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29872.png + small + + https://s.yimg.com/iu/api/res/1.2/4c1A6QI0_rBQVce2TVE8Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29872.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26812 + 26812 + + Mike James + Mike + James + Mike + James + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26812 + nfl.t.8 + Detroit Lions + Det + + 6 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/oLjBaVn8FABkDRnNWFxV_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/26812.png + small + + https://s.yimg.com/iu/api/res/1.2/oLjBaVn8FABkDRnNWFxV_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/26812.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31620 + 31620 + + Dalyn Dawkins + Dalyn + Dawkins + Dalyn + Dawkins + + nfl.p.31620 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31339 + 31339 + + Malik Williams + Malik + Williams + Malik + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31339 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/c4oMoRUGfPnNnW9gIYgLmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31339.png + small + + https://s.yimg.com/iu/api/res/1.2/c4oMoRUGfPnNnW9gIYgLmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31339.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30245 + 30245 + + Donnel Pumphrey + Donnel + Pumphrey + Donnel + Pumphrey + + nfl.p.30245 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/u9M9g8C9DW_c9BHvChSSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30245.png + small + + https://s.yimg.com/iu/api/res/1.2/u9M9g8C9DW_c9BHvChSSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30245.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28185 + 28185 + + George Atkinson III + George + Atkinson III + George + Atkinson III + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28185 + nfl.t.20 + New York Jets + NYJ + + 11 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/5lORoA94vb0tR79yuLNZ5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28185.png + small + + https://s.yimg.com/iu/api/res/1.2/5lORoA94vb0tR79yuLNZ5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28185.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26685 + 26685 + + Christine Michael + Christine + Michael + Christine + Michael + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26685 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/Hb7mLpiSGZL5RizVH.gMRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26685.png + small + + https://s.yimg.com/iu/api/res/1.2/Hb7mLpiSGZL5RizVH.gMRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26685.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 9 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30860 + 30860 + + Dare Ogunbowale + Dare + Ogunbowale + Dare + Ogunbowale + + nfl.p.30860 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/2rpPhktZDOxXjCPXlp4V5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30860.png + small + + https://s.yimg.com/iu/api/res/1.2/2rpPhktZDOxXjCPXlp4V5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30860.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 137 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26024 + 26024 + + Travaris Cadet + Travaris + Cadet + Travaris + Cadet + + nfl.p.26024 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/dwRabwkN5XfiXygIMsx5pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26024.png + small + + https://s.yimg.com/iu/api/res/1.2/dwRabwkN5XfiXygIMsx5pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26024.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 11 + + + 9 + 17 + + + 10 + 0 + + + 11 + 1 + + + 12 + 5 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.9449 + 9449 + + Cedric Peerman + Cedric + Peerman + Cedric + Peerman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.9449 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/nGKKC3PExFpnXHmv.b7rjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/9449.png + small + + https://s.yimg.com/iu/api/res/1.2/nGKKC3PExFpnXHmv.b7rjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/9449.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31407 + 31407 + + Elijah Wellman + Elijah + Wellman + Elijah + Wellman + + undisclosed + nfl.p.31407 + nfl.t.28 + Washington Redskins + Was + + 4 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/FS6Pv19s3JEZKhVA6IQPPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31407.png + small + + https://s.yimg.com/iu/api/res/1.2/FS6Pv19s3JEZKhVA6IQPPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31407.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26064 + 26064 + + Lance Dunbar + Lance + Dunbar + Lance + Dunbar + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26064 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/z_Sb07depTgUPjEjrqr9aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26064.png + small + + https://s.yimg.com/iu/api/res/1.2/z_Sb07depTgUPjEjrqr9aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26064.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29575 + 29575 + + Russell Hansbrough + Russell + Hansbrough + Russell + Hansbrough + + nfl.p.29575 + nfl.t.28 + Washington Redskins + Was + + 4 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/fUFNxsnxmPZLbP_dONSMdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29575.png + small + + https://s.yimg.com/iu/api/res/1.2/fUFNxsnxmPZLbP_dONSMdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29575.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30496 + 30496 + + James Summers + James + Summers + James + Summers + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30496 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/XAmpG1jHYXHsAe94VApwmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30496.png + small + + https://s.yimg.com/iu/api/res/1.2/XAmpG1jHYXHsAe94VApwmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/30496.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29431 + 29431 + + Danny Vitale + Danny + Vitale + Danny + Vitale + + undisclosed + nfl.p.29431 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/_iFd2BZkHJz42cTIVxgvzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29431.png + small + + https://s.yimg.com/iu/api/res/1.2/_iFd2BZkHJz42cTIVxgvzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29431.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 2 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29383 + 29383 + + Paul Perkins + Paul + Perkins + Paul + Perkins + + O + Out + nfl.p.29383 + nfl.t.19 + New York Giants + NYG + + 9 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/CdfQyzFWkY3nmSZ4mt1UAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29383.png + small + + https://s.yimg.com/iu/api/res/1.2/CdfQyzFWkY3nmSZ4mt1UAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29383.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27739 + 27739 + + Jay Prosch + Jay + Prosch + Jay + Prosch + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27739 + nfl.t.34 + Houston Texans + Hou + + 10 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/.4MqtLGYM.1m9ERkt90mFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27739.png + small + + https://s.yimg.com/iu/api/res/1.2/.4MqtLGYM.1m9ERkt90mFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27739.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31704 + 31704 + + Robert Martin + Robert + Martin + Robert + Martin + + nfl.p.31704 + nfl.t.19 + New York Giants + NYG + + 9 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31590 + 31590 + + Terry Swanson + Terry + Swanson + Terry + Swanson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31590 + nfl.t.34 + Houston Texans + Hou + + 10 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29450 + 29450 + + Darius Jackson + Darius + Jackson + Darius + Jackson + + nfl.p.29450 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/m9C3bqfjoUz.Qz4g_u7KAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29450.png + small + + https://s.yimg.com/iu/api/res/1.2/m9C3bqfjoUz.Qz4g_u7KAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29450.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 16 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 90 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30751 + 30751 + + Akeem Judd + Akeem + Judd + Akeem + Judd + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30751 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/ugSnObrsK_3VkJOOBNCVBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30751.png + small + + https://s.yimg.com/iu/api/res/1.2/ugSnObrsK_3VkJOOBNCVBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30751.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31513 + 31513 + + Henry Poggi + Henry + Poggi + Henry + Poggi + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31513 + nfl.t.17 + New England Patriots + NE + + 11 + + 48 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30757 + 30757 + + Algernon Brown + Algernon + Brown + Algernon + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30757 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/wLHdzHy5GL4X0M.cPdDVfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30757.png + small + + https://s.yimg.com/iu/api/res/1.2/wLHdzHy5GL4X0M.cPdDVfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30757.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30353 + 30353 + + Marquez Williams + Marquez + Williams + Marquez + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30353 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/kDDSQ1soihwcjahaaWvV1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30353.png + small + + https://s.yimg.com/iu/api/res/1.2/kDDSQ1soihwcjahaaWvV1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/30353.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31798 + 31798 + + Kobe McCrary + Kobe + McCrary + Kobe + McCrary + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31798 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 48 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31485 + 31485 + + Jarvion Franklin + Jarvion + Franklin + Jarvion + Franklin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31485 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30351 + 30351 + + Devante Mays + Devante + Mays + Devante + Mays + + hamstring + nfl.p.30351 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/6rEuoiptH42zvctx79yYog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30351.png + small + + https://s.yimg.com/iu/api/res/1.2/6rEuoiptH42zvctx79yYog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30351.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29471 + 29471 + + Daniel Lasco II + Daniel + Lasco II + Daniel + Lasco II + + PUP-R + Physically Unable to Perform (Regular-season) + nfl.p.29471 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/0_VxwC._6FoPzRcs7xc_oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/29471.png + small + + https://s.yimg.com/iu/api/res/1.2/0_VxwC._6FoPzRcs7xc_oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/29471.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31748 + 31748 + + Sherman Badie + Sherman + Badie + Sherman + Badie + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31748 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31560 + 31560 + + Quinton Flowers + Quinton + Flowers + Quinton + Flowers + + nfl.p.31560 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31805 + 31805 + + Ja'Quan Gardner + Ja'Quan + Gardner + Ja'Quan + Gardner + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31805 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31341 + 31341 + + Luke McNitt + Luke + McNitt + Luke + McNitt + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31341 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/SsQTVK1U1Pe3mbcv6DENkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31341.png + small + + https://s.yimg.com/iu/api/res/1.2/SsQTVK1U1Pe3mbcv6DENkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31341.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26853 + 26853 + + Kerwynn Williams + Kerwynn + Williams + Kerwynn + Williams + + nfl.p.26853 + nfl.t.8 + Detroit Lions + Det + + 6 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/eDIKcRSCCAOS5JRL3d.iiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26853.png + small + + https://s.yimg.com/iu/api/res/1.2/eDIKcRSCCAOS5JRL3d.iiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26853.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26684 + 26684 + + Eddie Lacy + Eddie + Lacy + Eddie + Lacy + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26684 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/YgNF47y72V0qZSBk78Mpsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26684.png + small + + https://s.yimg.com/iu/api/res/1.2/YgNF47y72V0qZSBk78Mpsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26684.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28556 + 28556 + + Michael Burton + Michael + Burton + Michael + Burton + + nfl.p.28556 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/yCtWOrxfJamFTkcPppvCvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28556.png + small + + https://s.yimg.com/iu/api/res/1.2/yCtWOrxfJamFTkcPppvCvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28556.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 6 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.31653 + 31653 + + Ralph Webb + Ralph + Webb + Ralph + Webb + + nfl.p.31653 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31781 + 31781 + + James Butler + James + Butler + James + Butler + + nfl.p.31781 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31302 + 31302 + + Reggie Bonnafon + Reggie + Bonnafon + Reggie + Bonnafon + + nfl.p.31302 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/SRtfMw7eLIJI8rFsCCwayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31302.png + small + + https://s.yimg.com/iu/api/res/1.2/SRtfMw7eLIJI8rFsCCwayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31302.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29650 + 29650 + + J.D. McKissic + J.D. + McKissic + J.D. + McKissic + + foot + nfl.p.29650 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/hEpB5_.vOMYK9EP_cDr5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29650.png + small + + https://s.yimg.com/iu/api/res/1.2/hEpB5_.vOMYK9EP_cDr5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29650.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 8 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 18 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28494 + 28494 + + Jeremy Langford + Jeremy + Langford + Jeremy + Langford + + nfl.p.28494 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/.MOyOlOyQbh7_47OHM8Cew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28494.png + small + + https://s.yimg.com/iu/api/res/1.2/.MOyOlOyQbh7_47OHM8Cew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28494.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 9 + + + 9 + 25 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.28169 + 28169 + + Orleans Darkwa + Orleans + Darkwa + Orleans + Darkwa + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28169 + nfl.t.19 + New York Giants + NYG + + 9 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/2z50BTVd5yLPrpbDNpqxJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28169.png + small + + https://s.yimg.com/iu/api/res/1.2/2z50BTVd5yLPrpbDNpqxJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28169.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31564 + 31564 + + Ray Lawry + Ray + Lawry + Ray + Lawry + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31564 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31338 + 31338 + + Justin Crawford + Justin + Crawford + Justin + Crawford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31338 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/L._LeNk9X2ynaIoDCfnhzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31338.png + small + + https://s.yimg.com/iu/api/res/1.2/L._LeNk9X2ynaIoDCfnhzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31338.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31206 + 31206 + + Bo Scarbrough + Bo + Scarbrough + Bo + Scarbrough + + nfl.p.31206 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/0Co4L0E9xpwVmaSvsGDSGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31206.png + small + + https://s.yimg.com/iu/api/res/1.2/0Co4L0E9xpwVmaSvsGDSGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31206.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30703 + 30703 + + Devine Redding + Devine + Redding + Devine + Redding + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30703 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/BGsr_pWVh.Ck_vRY17BFaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30703.png + small + + https://s.yimg.com/iu/api/res/1.2/BGsr_pWVh.Ck_vRY17BFaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30703.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.27622 + 27622 + + Terrance West + Terrance + West + Terrance + West + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27622 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/AUYGNZMnGwHSGqzttX5e3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27622.png + small + + https://s.yimg.com/iu/api/res/1.2/AUYGNZMnGwHSGqzttX5e3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27622.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29599 + 29599 + + Josh Ferguson + Josh + Ferguson + Josh + Ferguson + + undisclosed + nfl.p.29599 + nfl.t.34 + Houston Texans + Hou + + 10 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/ABZFJV0b0BRyRz94K4ApZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29599.png + small + + https://s.yimg.com/iu/api/res/1.2/ABZFJV0b0BRyRz94K4ApZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29599.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31466 + 31466 + + Marcus Martin + Marcus + Martin + Marcus + Martin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31466 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 56 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29700 + 29700 + + Tra Carson + Tra + Carson + Tra + Carson + + IR + Injured Reserve + ribs + nfl.p.29700 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/PKRLsEr6QrKAqM6Lc0k9Zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29700.png + small + + https://s.yimg.com/iu/api/res/1.2/PKRLsEr6QrKAqM6Lc0k9Zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29700.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31700 + 31700 + + Zach Olstad + Zach + Olstad + Zach + Olstad + + NA + Inactive: Coach's Decision or Not on Roster + ankle + nfl.p.31700 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 36 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31715 + 31715 + + Ryan Yurachek + Ryan + Yurachek + Ryan + Yurachek + + nfl.p.31715 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29542 + 29542 + + Jhurell Pressley + Jhurell + Pressley + Jhurell + Pressley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29542 + nfl.t.19 + New York Giants + NYG + + 9 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/ARMU_s9bJ1Xi8yTEkoWP_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29542.png + small + + https://s.yimg.com/iu/api/res/1.2/ARMU_s9bJ1Xi8yTEkoWP_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29542.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29805 + 29805 + + Lawrence Thomas + Lawrence + Thomas + Lawrence + Thomas + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29805 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/ev8VxDLaQSLkmf1cqqYRjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29805.png + small + + https://s.yimg.com/iu/api/res/1.2/ev8VxDLaQSLkmf1cqqYRjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29805.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30354 + 30354 + + Elijah Hood + Elijah + Hood + Elijah + Hood + + IR + Injured Reserve + undisclosed + nfl.p.30354 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/dBNAzTRrA9DPJ7KL2dKi0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30354.png + small + + https://s.yimg.com/iu/api/res/1.2/dBNAzTRrA9DPJ7KL2dKi0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30354.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28865 + 28865 + + Trey Williams + Trey + Williams + Trey + Williams + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28865 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/es09BdT4DmK62jGac8.wzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28865.png + small + + https://s.yimg.com/iu/api/res/1.2/es09BdT4DmK62jGac8.wzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28865.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30522 + 30522 + + Dalton Crossan + Dalton + Crossan + Dalton + Crossan + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.30522 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/QhU5qJJH6AXmxtIELsEtww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30522.png + small + + https://s.yimg.com/iu/api/res/1.2/QhU5qJJH6AXmxtIELsEtww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30522.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30370 + 30370 + + Justin Davis + Justin + Davis + Justin + Davis + + NA + Inactive: Coach's Decision or Not on Roster + shoulder + nfl.p.30370 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/YP12BN3HIHC6bi0eZQ4LdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30370.png + small + + https://s.yimg.com/iu/api/res/1.2/YP12BN3HIHC6bi0eZQ4LdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30370.png + 0 + O + + RB + + 1 + 1548009720 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 19 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.24970 + 24970 + + Jordan Todman + Jordan + Todman + Jordan + Todman + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24970 + nfl.t.34 + Houston Texans + Hou + + 10 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/h8Sw5mRfYe05MsAPX9Iiqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24970.png + small + + https://s.yimg.com/iu/api/res/1.2/h8Sw5mRfYe05MsAPX9Iiqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24970.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28583 + 28583 + + Malcolm Johnson + Malcolm + Johnson + Malcolm + Johnson + + undisclosed + nfl.p.28583 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/dLLyHkUMYx3nFZaa.Wj8kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28583.png + small + + https://s.yimg.com/iu/api/res/1.2/dLLyHkUMYx3nFZaa.Wj8kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28583.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30717 + 30717 + + Joel Bouagnon + Joel + Bouagnon + Joel + Bouagnon + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30717 + nfl.t.20 + New York Jets + NYJ + + 11 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/aaXmzqkW4oON74k6PVPYtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30717.png + small + + https://s.yimg.com/iu/api/res/1.2/aaXmzqkW4oON74k6PVPYtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30717.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30915 + 30915 + + Darius Victor + Darius + Victor + Darius + Victor + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30915 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31196 + 31196 + + David Williams + David + Williams + David + Williams + + nfl.p.31196 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/yJPZMGHPBZWTpnul8_u_tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31196.png + small + + https://s.yimg.com/iu/api/res/1.2/yJPZMGHPBZWTpnul8_u_tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31196.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 8 + + + 9 + 36 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 3 + + + + + + 380.p.29993 + 29993 + + Jalen Simmons + Jalen + Simmons + Jalen + Simmons + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29993 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/TkDbCCiNW2aC6F5ofhJhdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29993.png + small + + https://s.yimg.com/iu/api/res/1.2/TkDbCCiNW2aC6F5ofhJhdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29993.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28272 + 28272 + + Branden Oliver + Branden + Oliver + Branden + Oliver + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28272 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/aCJGDiaP4M9UClELe3Gxpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/28272.png + small + + https://s.yimg.com/iu/api/res/1.2/aCJGDiaP4M9UClELe3Gxpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/28272.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28594 + 28594 + + Aaron Ripkowski + Aaron + Ripkowski + Aaron + Ripkowski + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.28594 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/_zaNmGXfEKZcb4mx7.aj_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28594.png + small + + https://s.yimg.com/iu/api/res/1.2/_zaNmGXfEKZcb4mx7.aj_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28594.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31340 + 31340 + + Daniel Marx + Daniel + Marx + Daniel + Marx + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31340 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/BbIQAqIJyIg6agL.ftj7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31340.png + small + + https://s.yimg.com/iu/api/res/1.2/BbIQAqIJyIg6agL.ftj7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31340.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31425 + 31425 + + De'Lance Turner + De'Lance + Turner + De'Lance + Turner + + IR + Injured Reserve + hamstring + nfl.p.31425 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 47 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 4 + + + 10 + 0 + + + 11 + 2 + + + 12 + 17 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31493 + 31493 + + J.D. Moore + J.D. + Moore + J.D. + Moore + + IR + Injured Reserve + undisclosed + nfl.p.31493 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 43 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30768 + 30768 + + Tion Green + Tion + Green + Tion + Green + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30768 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 37 + RB + + https://s.yimg.com/iu/api/res/1.2/wfSJRwuH8EK.canqK9LuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30768.png + small + + https://s.yimg.com/iu/api/res/1.2/wfSJRwuH8EK.canqK9LuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30768.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31443 + 31443 + + Dimitri Flowers + Dimitri + Flowers + Dimitri + Flowers + + nfl.p.31443 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 35 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31483 + 31483 + + Nick Sharga + Nick + Sharga + Nick + Sharga + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31483 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29518 + 29518 + + Kenneth Farrow + Kenneth + Farrow + Kenneth + Farrow + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29518 + nfl.t.17 + New England Patriots + NE + + 11 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/L_MlxVOche10psCoOs1a.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/29518.png + small + + https://s.yimg.com/iu/api/res/1.2/L_MlxVOche10psCoOs1a.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/29518.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31575 + 31575 + + Lavon Coleman + Lavon + Coleman + Lavon + Coleman + + nfl.p.31575 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 24 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31207 + 31207 + + Nick Bawden + Nick + Bawden + Nick + Bawden + + IR + Injured Reserve + torn right ACL + nfl.p.31207 + nfl.t.8 + Detroit Lions + Det + + 6 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/wMg4Vvx_gyucz4EPPsYYqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31207.png + small + + https://s.yimg.com/iu/api/res/1.2/wMg4Vvx_gyucz4EPPsYYqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31207.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26810 + 26810 + + Andre Ellington + Andre + Ellington + Andre + Ellington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26810 + nfl.t.34 + Houston Texans + Hou + + 10 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/NkGAgsA4bEbDALSzSgSAcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26810.png + small + + https://s.yimg.com/iu/api/res/1.2/NkGAgsA4bEbDALSzSgSAcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26810.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31337 + 31337 + + Demario Richard + Demario + Richard + Demario + Richard + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31337 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/irFQ6QJ80M9n23NS9C2sCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31337.png + small + + https://s.yimg.com/iu/api/res/1.2/irFQ6QJ80M9n23NS9C2sCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31337.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29695 + 29695 + + Joe Kerridge + Joe + Kerridge + Joe + Kerridge + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29695 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/blnW0o4SnaHYjKTmUr6c6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29695.png + small + + https://s.yimg.com/iu/api/res/1.2/blnW0o4SnaHYjKTmUr6c6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29695.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30658 + 30658 + + LeShun Daniels Jr. + LeShun + Daniels Jr. + LeShun + Daniels Jr. + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30658 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/.l3wdlEvmGvIwhpWD6AtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/30658.png + small + + https://s.yimg.com/iu/api/res/1.2/.l3wdlEvmGvIwhpWD6AtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/30658.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31684 + 31684 + + Anthony Manzo-Lewis + Anthony + Manzo-Lewis + Anthony + Manzo-Lewis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31684 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31730 + 31730 + + Nick Holley + Nick + Holley + Nick + Holley + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31730 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8790 + 8790 + + Jonathan Stewart + Jonathan + Stewart + Jonathan + Stewart + + IR + Injured Reserve + foot + nfl.p.8790 + nfl.t.19 + New York Giants + NYG + + 9 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/WLVGknRk9CizFwwhe0FLhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8790.png + small + + https://s.yimg.com/iu/api/res/1.2/WLVGknRk9CizFwwhe0FLhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/8790.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 17 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30246 + 30246 + + Ryan Switzer + Ryan + Switzer + Ryan + Switzer + + Q + Questionable + ankle + nfl.p.30246 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/04eME3VfVmSCWM0vQyX6hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30246.png + small + + https://s.yimg.com/iu/api/res/1.2/04eME3VfVmSCWM0vQyX6hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30246.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 21 + + + 10 + 0 + + + 11 + 36 + + + 12 + 253 + + + 13 + 1 + + + 14 + 859 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 44 + + + 79 + 0 + + + 80 + 15 + + + 81 + 0 + + + + + + 380.p.28658 + 28658 + + Eric Tomlinson + Eric + Tomlinson + Eric + Tomlinson + + IR + Injured Reserve + undisclosed + nfl.p.28658 + nfl.t.20 + New York Jets + NYJ + + 11 + + 83 + TE + + https://s.yimg.com/iu/api/res/1.2/oNNjsp8Al2KAGsOqwdO0yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28658.png + small + + https://s.yimg.com/iu/api/res/1.2/oNNjsp8Al2KAGsOqwdO0yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28658.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 8 + + + 12 + 72 + + + 13 + 0 + + + 14 + 10 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 14 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.29422 + 29422 + + David Morgan + David + Morgan + David + Morgan + + knee + nfl.p.29422 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/a7bbiXM7yGGtzQ06bxSKfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29422.png + small + + https://s.yimg.com/iu/api/res/1.2/a7bbiXM7yGGtzQ06bxSKfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29422.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 36 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.31500 + 31500 + + Darrel Williams + Darrel + Williams + Darrel + Williams + + hamstring + nfl.p.31500 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + 1 + 1 + 1548045240 + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 13 + + + 9 + 44 + + + 10 + 0 + + + 11 + 3 + + + 12 + 27 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 3 + + + + + + 380.p.31641 + 31641 + + Brandon Powell + Brandon + Powell + Brandon + Powell + + calf + nfl.p.31641 + nfl.t.8 + Detroit Lions + Det + + 6 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 4 + + + 10 + 0 + + + 11 + 11 + + + 12 + 129 + + + 13 + 0 + + + 14 + 51 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 17 + + + 79 + 0 + + + 80 + 6 + + + 81 + 0 + + + + + + 380.p.30468 + 30468 + + Antony Auclair + Antony + Auclair + Antony + Auclair + + nfl.p.30468 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/ua0_dJwfXE.puZ3oGw4dmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30468.png + small + + https://s.yimg.com/iu/api/res/1.2/ua0_dJwfXE.puZ3oGw4dmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30468.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 7 + + + 12 + 48 + + + 13 + 0 + + + 14 + 19 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29293 + 29293 + + Roberto Aguayo + Roberto + Aguayo + Roberto + Aguayo + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29293 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/knW_qTXoQLOpjph3nthQ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29293.png + small + + https://s.yimg.com/iu/api/res/1.2/knW_qTXoQLOpjph3nthQ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29293.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.31482 + 31482 + + Eddy Pineiro + Eddy + Pineiro + Eddy + Pineiro + + IR + Injured Reserve + undisclosed + nfl.p.31482 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.31606 + 31606 + + Tyler Davis + Tyler + Davis + Tyler + Davis + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31606 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.31361 + 31361 + + David Marvin + David + Marvin + David + Marvin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31361 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 1 + K + + https://s.yimg.com/iu/api/res/1.2/ro9s7msPRY5kRiEKGDy4aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31361.png + small + + https://s.yimg.com/iu/api/res/1.2/ro9s7msPRY5kRiEKGDy4aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31361.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.31265 + 31265 + + Trevor Moore + Trevor + Moore + Trevor + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31265 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/zLgiPKiLKi0HL3vg5eGH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31265.png + small + + https://s.yimg.com/iu/api/res/1.2/zLgiPKiLKi0HL3vg5eGH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31265.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.25885 + 25885 + + Blair Walsh + Blair + Walsh + Blair + Walsh + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25885 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/8F63IEVK3XWhk.G7kliWjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25885.png + small + + https://s.yimg.com/iu/api/res/1.2/8F63IEVK3XWhk.G7kliWjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25885.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.7223 + 7223 + + Mike Nugent + Mike + Nugent + Mike + Nugent + + IR + Injured Reserve + hip + nfl.p.7223 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/cawO_RZYBS3Tlmi8r9LtVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7223.1.png + small + + https://s.yimg.com/iu/api/res/1.2/cawO_RZYBS3Tlmi8r9LtVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7223.1.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 19 + 0 + + + 20 + 3 + + + 21 + 0 + + + 22 + 2 + + + 23 + 1 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 4 + + + 30 + 1 + + + + + + 380.p.29834 + 29834 + + Marshall Koehn + Marshall + Koehn + Marshall + Koehn + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29834 + nfl.t.19 + New York Giants + NYG + + 9 + + 8 + K + + https://s.yimg.com/iu/api/res/1.2/M6SCnCZ0Xi8dyJuAuficPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29834.png + small + + https://s.yimg.com/iu/api/res/1.2/M6SCnCZ0Xi8dyJuAuficPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/29834.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29659 + 29659 + + Nick Rose + Nick + Rose + Nick + Rose + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29659 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/bwfWbKhbtPdbfp0rznF8Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29659.png + small + + https://s.yimg.com/iu/api/res/1.2/bwfWbKhbtPdbfp0rznF8Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29659.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.29915 + 29915 + + Jonathan Brown + Jonathan + Brown + Jonathan + Brown + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29915 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 3 + K + + https://s.yimg.com/iu/api/res/1.2/gq6Vt7sNHHdvB3DyGkw7ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29915.png + small + + https://s.yimg.com/iu/api/res/1.2/gq6Vt7sNHHdvB3DyGkw7ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29915.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.29712 + 29712 + + Taylor Bertolet + Taylor + Bertolet + Taylor + Bertolet + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29712 + nfl.t.20 + New York Jets + NYJ + + 11 + + 6 + K + + https://s.yimg.com/iu/api/res/1.2/nmmEoYnWflevlM_qV2ky5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29712.png + small + + https://s.yimg.com/iu/api/res/1.2/nmmEoYnWflevlM_qV2ky5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29712.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.29793 + 29793 + + Ross Martin + Ross + Martin + Ross + Martin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29793 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 7 + K + + https://s.yimg.com/iu/api/res/1.2/u1.VraSKk64TbQLpGkKN5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29793.png + small + + https://s.yimg.com/iu/api/res/1.2/u1.VraSKk64TbQLpGkKN5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29793.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.26264 + 26264 + + Giorgio Tavecchio + Giorgio + Tavecchio + Giorgio + Tavecchio + + nfl.p.26264 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/TueGEitRqUBx._cV1XGl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26264.png + small + + https://s.yimg.com/iu/api/res/1.2/TueGEitRqUBx._cV1XGl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26264.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 3 + 0 + + + season + 2018 + + + 0 + 3 + + + 19 + 0 + + + 20 + 1 + + + 21 + 0 + + + 22 + 2 + + + 23 + 2 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 8 + + + 30 + 0 + + + + + + 380.p.8432 + 8432 + + Nick Folk + Nick + Folk + Nick + Folk + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8432 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/9PL1M8m8mTcvQT4HJHYaEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8432.png + small + + https://s.yimg.com/iu/api/res/1.2/9PL1M8m8mTcvQT4HJHYaEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8432.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.30038 + 30038 + + Sam Ficken + Sam + Ficken + Sam + Ficken + + nfl.p.30038 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/A8Qiab7o88uKcy2Qaee98w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30038.png + small + + https://s.yimg.com/iu/api/res/1.2/A8Qiab7o88uKcy2Qaee98w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30038.png + 0 + K + + K + + 1 + 1547242140 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 19 + 0 + + + 20 + 0 + + + 21 + 1 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 1 + + + 26 + 0 + + + 27 + 1 + + + 28 + 0 + + + 29 + 10 + + + 30 + 0 + + + + + + 380.p.7505 + 7505 + + Nick Novak + Nick + Novak + Nick + Novak + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7505 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 9 + K + + https://s.yimg.com/iu/api/res/1.2/WivLV5QmdlxoTptfT2Ip1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/7505.png + small + + https://s.yimg.com/iu/api/res/1.2/WivLV5QmdlxoTptfT2Ip1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/7505.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 19 + 0 + + + 20 + 0 + + + 21 + 0 + + + 22 + 0 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 0 + + + 29 + 0 + + + 30 + 0 + + + + + + 380.p.28473 + 28473 + + Tyler Kroft + Tyler + Kroft + Tyler + Kroft + + IR + Injured Reserve + foot + nfl.p.28473 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/972IfJ4auFsVubPe7hCIsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28473.png + small + + https://s.yimg.com/iu/api/res/1.2/972IfJ4auFsVubPe7hCIsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28473.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 36 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.29433 + 29433 + + Cody Core + Cody + Core + Cody + Core + + Q + Questionable + back + nfl.p.29433 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/WVM6rWAT_oG6T59yC4jllQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29433.png + small + + https://s.yimg.com/iu/api/res/1.2/WVM6rWAT_oG6T59yC4jllQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29433.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 13 + + + 12 + 160 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 28 + + + 79 + 0 + + + 80 + 7 + + + 81 + 0 + + + + + + 380.p.29441 + 29441 + + Jeff Driskel + Jeff + Driskel + Jeff + Driskel + + nfl.p.29441 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/VxnqeQjOK9r0nW0GyxMKew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29441.png + small + + https://s.yimg.com/iu/api/res/1.2/VxnqeQjOK9r0nW0GyxMKew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29441.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 176 + + + 2 + 105 + + + 3 + 71 + + + 4 + 1003 + + + 5 + 6 + + + 6 + 2 + + + 7 + 16 + + + 8 + 25 + + + 9 + 130 + + + 10 + 2 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 4 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 50 + + + 80 + 0 + + + 81 + 7 + + + + + + 380.p.26832 + 26832 + + Brice Butler + Brice + Butler + Brice + Butler + + nfl.p.26832 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/Pz8BwpHVsm1Tf5VmmtUrtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26832.png + small + + https://s.yimg.com/iu/api/res/1.2/Pz8BwpHVsm1Tf5VmmtUrtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26832.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 60 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.30287 + 30287 + + Eric Saubert + Eric + Saubert + Eric + Saubert + + nfl.p.30287 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 85 + TE + + https://s.yimg.com/iu/api/res/1.2/letaogC8OBm1dKCNCLvgYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30287.png + small + + https://s.yimg.com/iu/api/res/1.2/letaogC8OBm1dKCNCLvgYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30287.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 48 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.31030 + 31030 + + James Washington + James + Washington + James + Washington + + nfl.p.31030 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/mn3VAVK51lUKZEkwRXFlPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31030.png + small + + https://s.yimg.com/iu/api/res/1.2/mn3VAVK51lUKZEkwRXFlPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/31030.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 16 + + + 12 + 217 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 38 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.100013 + 100013 + + Oakland + Oakland + + Oakland + + + nfl.p.100013 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + + DEF + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/oak.gif + small + + https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/oak.gif + 0 + DT + + DEF + + + 121.5 + 12.6 + 1.1 + 0.02 + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 31 + 449 + + + 32 + 13.0 + + + 33 + 14 + + + 34 + 3 + + + 35 + 1 + + + 36 + 0 + + + 37 + 1 + + + 48 + 954 + + + 49 + 1 + + + 50 + 0 + + + 51 + 0 + + + 52 + 0 + + + 53 + 3 + + + 54 + 5 + + + 55 + 5 + + + 56 + 3 + + + 67 + 4 + + + 68 + 53 + + + 69 + 6102 + + + 70 + 0 + + + 71 + 0 + + + 72 + 0 + + + 73 + 2 + + + 74 + 7 + + + 75 + 7 + + + 76 + 0 + + + 77 + 33 + + + 82 + 0 + + + + + + 380.p.29451 + 29451 + + Rico Gathers + Rico + Gathers + Rico + Gathers + + nfl.p.29451 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 80 + TE + + https://s.yimg.com/iu/api/res/1.2/uzdNYCwpJUofoLEQhwd18A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29451.png + small + + https://s.yimg.com/iu/api/res/1.2/uzdNYCwpJUofoLEQhwd18A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29451.png + 0 + O + + TE + + 1 + 1547356500 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 45 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.31093 + 31093 + + Durham Smythe + Durham + Smythe + Durham + Smythe + + nfl.p.31093 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/4m9KtVggDdWBOfQFqw.jFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31093.png + small + + https://s.yimg.com/iu/api/res/1.2/4m9KtVggDdWBOfQFqw.jFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31093.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 50 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.30656 + 30656 + + Austin Carr + Austin + Carr + Austin + Carr + + nfl.p.30656 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/pQ1SSp1UopymViCzwlB9zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/30656.png + small + + https://s.yimg.com/iu/api/res/1.2/pQ1SSp1UopymViCzwlB9zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/30656.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 97 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 14 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.25810 + 25810 + + Travis Benjamin + Travis + Benjamin + Travis + Benjamin + + foot + nfl.p.25810 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/Z7R8xbPfeYRm2TZPnDr2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25810.png + small + + https://s.yimg.com/iu/api/res/1.2/Z7R8xbPfeYRm2TZPnDr2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25810.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 7 + + + 9 + 41 + + + 10 + 0 + + + 11 + 12 + + + 12 + 186 + + + 13 + 1 + + + 14 + 33 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 24 + + + 79 + 0 + + + 80 + 9 + + + 81 + 2 + + + + + + 380.p.28990 + 28990 + + Malcolm Brown + Malcolm + Brown + Malcolm + Brown + + IR + Injured Reserve + clavical + nfl.p.28990 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/Z49DKz9ZFlc4YSIURejBtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28990.png + small + + https://s.yimg.com/iu/api/res/1.2/Z49DKz9ZFlc4YSIURejBtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28990.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 43 + + + 9 + 212 + + + 10 + 0 + + + 11 + 5 + + + 12 + 52 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 2 + + + 81 + 10 + + + + + + 380.p.31174 + 31174 + + Trenton Cannon + Trenton + Cannon + Trenton + Cannon + + nfl.p.31174 + nfl.t.20 + New York Jets + NYJ + + 11 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/l2tAi_CfJCUspOMch3URfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31174.png + small + + https://s.yimg.com/iu/api/res/1.2/l2tAi_CfJCUspOMch3URfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31174.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 38 + + + 9 + 113 + + + 10 + 1 + + + 11 + 17 + + + 12 + 144 + + + 13 + 0 + + + 14 + 20 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 4 + + + 81 + 7 + + + + + + 380.p.31104 + 31104 + + Chase Edmonds + Chase + Edmonds + Chase + Edmonds + + back + nfl.p.31104 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/j89mtlZcW8D.KmQJZCnamA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31104.png + small + + https://s.yimg.com/iu/api/res/1.2/j89mtlZcW8D.KmQJZCnamA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/31104.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 60 + + + 9 + 208 + + + 10 + 2 + + + 11 + 20 + + + 12 + 103 + + + 13 + 0 + + + 14 + 48 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 23 + + + 79 + 0 + + + 80 + 5 + + + 81 + 14 + + + + + + 380.p.28618 + 28618 + + Marcus Murphy + Marcus + Murphy + Marcus + Murphy + + IR + Injured Reserve + dislocated elbow + nfl.p.28618 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/SaquxHWTg5lK4d2DXKOmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28618.png + small + + https://s.yimg.com/iu/api/res/1.2/SaquxHWTg5lK4d2DXKOmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28618.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 52 + + + 9 + 250 + + + 10 + 0 + + + 11 + 11 + + + 12 + 26 + + + 13 + 0 + + + 14 + 339 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 2 + + + 81 + 7 + + + + + + 380.p.28688 + 28688 + + Brian Parker + Brian + Parker + Brian + Parker + + nfl.p.28688 + nfl.t.7 + Denver Broncos + Den + + 10 + + 89 + TE + + https://s.yimg.com/iu/api/res/1.2/1cp6LPUNsSp.Iwlmn1dLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28688.png + small + + https://s.yimg.com/iu/api/res/1.2/1cp6LPUNsSp.Iwlmn1dLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28688.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 33 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.29913 + 29913 + + Ben Braunecker + Ben + Braunecker + Ben + Braunecker + + concussion + nfl.p.29913 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 84 + TE + + https://s.yimg.com/iu/api/res/1.2/_9c4v0Q27mT_07e.1gvbLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29913.png + small + + https://s.yimg.com/iu/api/res/1.2/_9c4v0Q27mT_07e.1gvbLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29913.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 42 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.26389 + 26389 + + Brandon Bolden + Brandon + Bolden + Brandon + Bolden + + hamstring + nfl.p.26389 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/JHOSfFYoObpgW3_fuVSsQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26389.png + small + + https://s.yimg.com/iu/api/res/1.2/JHOSfFYoObpgW3_fuVSsQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26389.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 8 + + + 9 + 91 + + + 10 + 2 + + + 11 + 3 + + + 12 + 13 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 1 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 4 + + + + + + 380.p.30269 + 30269 + + Brian Hill + Brian + Hill + Brian + Hill + + nfl.p.30269 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/CvUtZqHYwBSQDNC0CEWBiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30269.png + small + + https://s.yimg.com/iu/api/res/1.2/CvUtZqHYwBSQDNC0CEWBiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30269.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 1 + 1 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 20 + + + 9 + 157 + + + 10 + 0 + + + 11 + 1 + + + 12 + 9 + + + 13 + 0 + + + 14 + 16 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 5 + + + + + + 380.p.29341 + 29341 + + Chris Moore + Chris + Moore + Chris + Moore + + shoulder + nfl.p.29341 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/6DxJpq016ZwZmqu6TNRxaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29341.png + small + + https://s.yimg.com/iu/api/res/1.2/6DxJpq016ZwZmqu6TNRxaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29341.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 5 + + + 9 + 17 + + + 10 + 0 + + + 11 + 19 + + + 12 + 196 + + + 13 + 1 + + + 14 + 491 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 8 + + + 81 + 1 + + + + + + 380.p.28947 + 28947 + + DeAndre Carter + DeAndre + Carter + DeAndre + Carter + + nfl.p.28947 + nfl.t.34 + Houston Texans + Hou + + 10 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/jc81pIyxzlmYTd4qiRGWnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28947.png + small + + https://s.yimg.com/iu/api/res/1.2/jc81pIyxzlmYTd4qiRGWnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28947.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 7 + + + 10 + 0 + + + 11 + 22 + + + 12 + 216 + + + 13 + 0 + + + 14 + 674 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.25767 + 25767 + + Brock Osweiler + Brock + Osweiler + Brock + Osweiler + + nfl.p.25767 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/3VOaJBeJUzmqA9KiyJlpMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25767.png + small + + https://s.yimg.com/iu/api/res/1.2/3VOaJBeJUzmqA9KiyJlpMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/25767.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 178 + + + 2 + 113 + + + 3 + 65 + + + 4 + 1247 + + + 5 + 6 + + + 6 + 4 + + + 7 + 17 + + + 8 + 8 + + + 9 + 21 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 3 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 58 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.30253 + 30253 + + Wayne Gallman Jr. + Wayne + Gallman Jr. + Wayne + Gallman Jr. + + nfl.p.30253 + nfl.t.19 + New York Giants + NYG + + 9 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/6.5erSlP0DCvi2Amr0B0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30253.png + small + + https://s.yimg.com/iu/api/res/1.2/6.5erSlP0DCvi2Amr0B0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30253.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 51 + + + 9 + 176 + + + 10 + 1 + + + 11 + 14 + + + 12 + 89 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 22 + + + 79 + 0 + + + 80 + 5 + + + 81 + 7 + + + + + + 380.p.25826 + 25826 + + Orson Charles + Orson + Charles + Orson + Charles + + IR + Injured Reserve + ankle + nfl.p.25826 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 82 + TE + + https://s.yimg.com/iu/api/res/1.2/T2KquvgJS09Ev2aoMJkBkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25826.png + small + + https://s.yimg.com/iu/api/res/1.2/T2KquvgJS09Ev2aoMJkBkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25826.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 23 + + + 13 + 0 + + + 14 + 12 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25723 + 25723 + + Michael Floyd + Michael + Floyd + Michael + Floyd + + nfl.p.25723 + nfl.t.28 + Washington Redskins + Was + + 4 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/qGJGOZdn_Jim35IIEthl7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25723.png + small + + https://s.yimg.com/iu/api/res/1.2/qGJGOZdn_Jim35IIEthl7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25723.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 10 + + + 12 + 100 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.31210 + 31210 + + Richie James Jr. + Richie + James Jr. + Richie + James Jr. + + nfl.p.31210 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/sw9GZKHDUCgB1sZVXiUcEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31210.png + small + + https://s.yimg.com/iu/api/res/1.2/sw9GZKHDUCgB1sZVXiUcEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31210.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 130 + + + 13 + 1 + + + 14 + 655 + + + 15 + 1 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 14 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.4269 + 4269 + + Phil Dawson + Phil + Dawson + Phil + Dawson + + IR + Injured Reserve + right hip + nfl.p.4269 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 4 + K + + https://s.yimg.com/iu/api/res/1.2/FoYcF4PD5kwdeCKyM.WAaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/4269.png + small + + https://s.yimg.com/iu/api/res/1.2/FoYcF4PD5kwdeCKyM.WAaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/4269.png + 0 + K + + K + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 19 + 0 + + + 20 + 2 + + + 21 + 2 + + + 22 + 1 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 2 + + + 28 + 1 + + + 29 + 15 + + + 30 + 0 + + + + + + 380.p.31100 + 31100 + + Kalen Ballage + Kalen + Ballage + Kalen + Ballage + + nfl.p.31100 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/1IGrkKWgH9W_MlNjPUM00g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31100.png + small + + https://s.yimg.com/iu/api/res/1.2/1IGrkKWgH9W_MlNjPUM00g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31100.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 38 + -1 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 36 + + + 9 + 191 + + + 10 + 1 + + + 11 + 9 + + + 12 + 56 + + + 13 + 0 + + + 14 + 26 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 1 + + + 62 + 1 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 2 + + + 81 + 10 + + + + + + 380.p.29571 + 29571 + + Alan Cross + Alan + Cross + Alan + Cross + + IR + Injured Reserve + shoulder + nfl.p.29571 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 45 + TE + + https://s.yimg.com/iu/api/res/1.2/NreJApNp3H1g0M15FSHJqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29571.png + small + + https://s.yimg.com/iu/api/res/1.2/NreJApNp3H1g0M15FSHJqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29571.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 9 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.27652 + 27652 + + De'Anthony Thomas + De'Anthony + Thomas + De'Anthony + Thomas + + IR + Injured Reserve + broken leg + nfl.p.27652 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/mZcriI9n07yaaCrZaunLqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27652.png + small + + https://s.yimg.com/iu/api/res/1.2/mZcriI9n07yaaCrZaunLqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27652.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 6 + + + 10 + 0 + + + 11 + 3 + + + 12 + 29 + + + 13 + 1 + + + 14 + 106 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.31002 + 31002 + + Lamar Jackson + Lamar + Jackson + Lamar + Jackson + + nfl.p.31002 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/l7PCl_Ysr80dEXRLAAmc9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31002.png + small + + https://s.yimg.com/iu/api/res/1.2/l7PCl_Ysr80dEXRLAAmc9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31002.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 45 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 170 + + + 2 + 99 + + + 3 + 71 + + + 4 + 1201 + + + 5 + 6 + + + 6 + 3 + + + 7 + 16 + + + 8 + 147 + + + 9 + 695 + + + 10 + 5 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 12 + + + 18 + 4 + + + 57 + 0 + + + 58 + 0 + + + 59 + 2 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 60 + + + 80 + 0 + + + 81 + 45 + + + + + + 380.p.26108 + 26108 + + Josh Bellamy + Josh + Bellamy + Josh + Bellamy + + nfl.p.26108 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/ZeLe98BIQuDqzdE7gvzXNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26108.png + small + + https://s.yimg.com/iu/api/res/1.2/ZeLe98BIQuDqzdE7gvzXNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26108.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 14 + + + 12 + 117 + + + 13 + 1 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 25 + + + 79 + 0 + + + 80 + 8 + + + 81 + 0 + + + + + + 380.p.29470 + 29470 + + Dwayne Washington + Dwayne + Washington + Dwayne + Washington + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29470 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 27 + RB + + https://s.yimg.com/iu/api/res/1.2/hbFHWf83IYAn9OrDSxGR8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29470.png + small + + https://s.yimg.com/iu/api/res/1.2/hbFHWf83IYAn9OrDSxGR8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29470.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 1 + 1 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 27 + + + 9 + 154 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 7 + + + + + + 380.p.31031 + 31031 + + D.J. Chark Jr. + D.J. + Chark Jr. + D.J. + Chark Jr. + + quadriceps + nfl.p.31031 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/cTW8_qFgDHjVNKDrcVMjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31031.png + small + + https://s.yimg.com/iu/api/res/1.2/cTW8_qFgDHjVNKDrcVMjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31031.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 14 + + + 12 + 174 + + + 13 + 0 + + + 14 + 178 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 32 + + + 79 + 0 + + + 80 + 7 + + + 81 + 0 + + + + + + 380.p.28495 + 28495 + + Justin Hardy + Justin + Hardy + Justin + Hardy + + nfl.p.28495 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/9QQenM9TFYeEpSf5IiqfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28495.png + small + + https://s.yimg.com/iu/api/res/1.2/9QQenM9TFYeEpSf5IiqfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28495.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 14 + + + 12 + 133 + + + 13 + 2 + + + 14 + 154 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 22 + + + 79 + 0 + + + 80 + 8 + + + 81 + 0 + + + + + + 380.p.24760 + 24760 + + James Develin + James + Develin + James + Develin + + nfl.p.24760 + nfl.t.17 + New England Patriots + NE + + 11 + + 46 + RB + + https://s.yimg.com/iu/api/res/1.2/tTik_ebenQv3YukYeVH6vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/24760.png + small + + https://s.yimg.com/iu/api/res/1.2/tTik_ebenQv3YukYeVH6vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/24760.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 8 + + + 10 + 4 + + + 11 + 12 + + + 12 + 61 + + + 13 + 0 + + + 14 + 15 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 17 + + + 79 + 0 + + + 80 + 3 + + + 81 + 5 + + + + + + 380.p.30523 + 30523 + + Darrell Daniels + Darrell + Daniels + Darrell + Daniels + + nfl.p.30523 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 81 + TE + + https://s.yimg.com/iu/api/res/1.2/oNTm9dQkVKSdGsfauPdmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30523.png + small + + https://s.yimg.com/iu/api/res/1.2/oNTm9dQkVKSdGsfauPdmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30523.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26016 + 26016 + + Beau Brinkley + Beau + Brinkley + Beau + Brinkley + + nfl.p.26016 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 48 + TE + + https://s.yimg.com/iu/api/res/1.2/GS_f8ZCq6N8DV9Pdh3fUJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26016.png + small + + https://s.yimg.com/iu/api/res/1.2/GS_f8ZCq6N8DV9Pdh3fUJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26016.png + 0 + O + + TE + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24063 + 24063 + + Andre Roberts + Andre + Roberts + Andre + Roberts + + back + nfl.p.24063 + nfl.t.20 + New York Jets + NYJ + + 11 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/SvAx3XpVZNjLTOJslW.n5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24063.png + small + + https://s.yimg.com/iu/api/res/1.2/SvAx3XpVZNjLTOJslW.n5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24063.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 20 + + + 10 + 0 + + + 11 + 10 + + + 12 + 79 + + + 13 + 1 + + + 14 + 1498 + + + 15 + 2 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 18 + + + 79 + 0 + + + 80 + 4 + + + 81 + 1 + + + + + + 380.p.30516 + 30516 + + Taquan Mizzell + Taquan + Mizzell + Taquan + Mizzell + + nfl.p.30516 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/hboi6qJMcNgD2z80Ql5ezQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30516.png + small + + https://s.yimg.com/iu/api/res/1.2/hboi6qJMcNgD2z80Ql5ezQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30516.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 9 + + + 9 + 16 + + + 10 + 0 + + + 11 + 8 + + + 12 + 78 + + + 13 + 1 + + + 14 + 106 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.26456 + 26456 + + Deonte Thompson + Deonte + Thompson + Deonte + Thompson + + Q + Questionable + toe + nfl.p.26456 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 10 + WR + + https://s.yimg.com/iu/api/res/1.2/hZRFcbUnedB57ojm86DbwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26456.png + small + + https://s.yimg.com/iu/api/res/1.2/hZRFcbUnedB57ojm86DbwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26456.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 17 + + + 12 + 161 + + + 13 + 0 + + + 14 + 147 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 30 + + + 79 + 0 + + + 80 + 10 + + + 81 + 0 + + + + + + 380.p.25234 + 25234 + + Andre Holmes + Andre + Holmes + Andre + Holmes + + IR + Injured Reserve + ankle + nfl.p.25234 + nfl.t.7 + Denver Broncos + Den + + 10 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/HS0V8c1Sfe8ZfxPIQ9WJiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25234.png + small + + https://s.yimg.com/iu/api/res/1.2/HS0V8c1Sfe8ZfxPIQ9WJiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25234.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 13 + + + 12 + 162 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 24 + + + 79 + 0 + + + 80 + 8 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.30023 + 30023 + + Marvin Hall + Marvin + Hall + Marvin + Hall + + nfl.p.30023 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/aWVK70GBJCxGk2ZvkEpeNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30023.png + small + + https://s.yimg.com/iu/api/res/1.2/aWVK70GBJCxGk2ZvkEpeNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30023.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 0 + + + 10 + 0 + + + 11 + 10 + + + 12 + 149 + + + 13 + 1 + + + 14 + 616 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 19 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.29854 + 29854 + + Tommylee Lewis + Tommylee + Lewis + Tommylee + Lewis + + knee + nfl.p.29854 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/gGZ9uk2wFAHgyO2NEHEfzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29854.png + small + + https://s.yimg.com/iu/api/res/1.2/gGZ9uk2wFAHgyO2NEHEfzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29854.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 10 + + + 10 + 0 + + + 11 + 3 + + + 12 + 60 + + + 13 + 1 + + + 14 + 129 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.24923 + 24923 + + Anthony Sherman + Anthony + Sherman + Anthony + Sherman + + nfl.p.24923 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/qmIuIr17M_y9HdXGN2A0ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24923.png + small + + https://s.yimg.com/iu/api/res/1.2/qmIuIr17M_y9HdXGN2A0ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24923.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 2 + + + 10 + 0 + + + 11 + 8 + + + 12 + 96 + + + 13 + 1 + + + 14 + 5 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 5 + + + 81 + 1 + + + + + + 380.p.29703 + 29703 + + Alex Erickson + Alex + Erickson + Alex + Erickson + + nfl.p.29703 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/Ycy3QM9HWRYJxT_20Q8HAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29703.png + small + + https://s.yimg.com/iu/api/res/1.2/Ycy3QM9HWRYJxT_20Q8HAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29703.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 22 + + + 10 + 0 + + + 11 + 20 + + + 12 + 167 + + + 13 + 0 + + + 14 + 1261 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 29 + + + 79 + 0 + + + 80 + 7 + + + 81 + 1 + + + + + + 380.p.29038 + 29038 + + Darius Jennings + Darius + Jennings + Darius + Jennings + + knee + nfl.p.29038 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/migdBS9e_lOzgNWa.WUE7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29038.png + small + + https://s.yimg.com/iu/api/res/1.2/migdBS9e_lOzgNWa.WUE7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29038.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 1 + + + 2 + 1 + + + 3 + 0 + + + 4 + 21 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 2 + + + 10 + 0 + + + 11 + 11 + + + 12 + 101 + + + 13 + 0 + + + 14 + 698 + + + 15 + 1 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 15 + + + 79 + 1 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.28718 + 28718 + + Rod Smith + Rod + Smith + Rod + Smith + + nfl.p.28718 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/M0IDuFyNvGamCnAp4vURNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28718.png + small + + https://s.yimg.com/iu/api/res/1.2/M0IDuFyNvGamCnAp4vURNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/28718.png + 0 + O + + RB + + 1 + 1547357100 + + - + - + - + - + + + week + 17 + 3 + 2 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 44 + + + 9 + 127 + + + 10 + 1 + + + 11 + 9 + + + 12 + 60 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 12 + + + 79 + 0 + + + 80 + 1 + + + 81 + 10 + + + + + + 380.p.31623 + 31623 + + Cameron Batson + Cameron + Batson + Cameron + Batson + + nfl.p.31623 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 1 + + + 10 + 0 + + + 11 + 8 + + + 12 + 82 + + + 13 + 0 + + + 14 + 4 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 11 + + + 79 + 0 + + + 80 + 5 + + + 81 + 1 + + + + + + 380.p.30481 + 30481 + + Bobo Wilson + Bobo + Wilson + Bobo + Wilson + + nfl.p.30481 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/qkgoELTSxPU4Au9EkouHaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30481.png + small + + https://s.yimg.com/iu/api/res/1.2/qkgoELTSxPU4Au9EkouHaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30481.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 52 + + + 13 + 0 + + + 14 + 284 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.31223 + 31223 + + Auden Tate + Auden + Tate + Auden + Tate + + nfl.p.31223 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/zGSdDwHV2N13lwUIXBQfcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31223.png + small + + https://s.yimg.com/iu/api/res/1.2/zGSdDwHV2N13lwUIXBQfcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31223.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 35 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 12 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.29249 + 29249 + + Corey Coleman + Corey + Coleman + Corey + Coleman + + Q + Questionable + nfl.p.29249 + nfl.t.19 + New York Giants + NYG + + 9 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/6Rvlp.V2Q8GLbNG19JZ7Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29249.png + small + + https://s.yimg.com/iu/api/res/1.2/6Rvlp.V2Q8GLbNG19JZ7Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192018/29249.png + 0 + O + + WR + + + 130.4 + 13.7 + 1.1 + 0.03 + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 5 + + + 10 + 0 + + + 11 + 5 + + + 12 + 71 + + + 13 + 0 + + + 14 + 617 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 5 + + + 81 + 0 + + + + + + 380.p.30980 + 30980 + + Josh Rosen + Josh + Rosen + Josh + Rosen + + nfl.p.30980 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/rdNROScDktvnHR9qwksQnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30980.png + small + + https://s.yimg.com/iu/api/res/1.2/rdNROScDktvnHR9qwksQnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30980.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 4 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 393 + + + 2 + 217 + + + 3 + 176 + + + 4 + 2278 + + + 5 + 11 + + + 6 + 14 + + + 7 + 45 + + + 8 + 23 + + + 9 + 138 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 1 + + + 17 + 10 + + + 18 + 5 + + + 57 + 0 + + + 58 + 4 + + + 59 + 4 + + + 60 + 2 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 112 + + + 80 + 0 + + + 81 + 8 + + + + + + 380.p.31164 + 31164 + + Russell Gage + Russell + Gage + Russell + Gage + + knee + nfl.p.31164 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 83 + WR + + https://s.yimg.com/iu/api/res/1.2/B61ci21KXb9l2gTjSO_29A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31164.png + small + + https://s.yimg.com/iu/api/res/1.2/B61ci21KXb9l2gTjSO_29A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31164.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 63 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.29410 + 29410 + + Andy Janovich + Andy + Janovich + Andy + Janovich + + nfl.p.29410 + nfl.t.7 + Denver Broncos + Den + + 10 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/q8gKWHCoM8icqIb8gX9Drw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29410.png + small + + https://s.yimg.com/iu/api/res/1.2/q8gKWHCoM8icqIb8gX9Drw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29410.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 5 + + + 10 + 0 + + + 11 + 8 + + + 12 + 112 + + + 13 + 1 + + + 14 + 8 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 5 + + + 81 + 2 + + + + + + 380.p.27135 + 27135 + + Zach Line + Zach + Line + Zach + Line + + nfl.p.27135 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/mRGyQl8bSBtv6dkHQIHajA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27135.png + small + + https://s.yimg.com/iu/api/res/1.2/mRGyQl8bSBtv6dkHQIHajA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27135.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 9 + + + 9 + 41 + + + 10 + 0 + + + 11 + 5 + + + 12 + 14 + + + 13 + 2 + + + 14 + 16 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 2 + + + 81 + 6 + + + + + + 380.p.30352 + 30352 + + Noah Brown + Noah + Brown + Noah + Brown + + hamstring + nfl.p.30352 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/UCMnke_apswwtFg7q38rAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30352.png + small + + https://s.yimg.com/iu/api/res/1.2/UCMnke_apswwtFg7q38rAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30352.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 54 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.28547 + 28547 + + J.J. Nelson + J.J. + Nelson + J.J. + Nelson + + illness, not injury related + nfl.p.28547 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/ArfrherYRx0cVN5U35NqqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28547.png + small + + https://s.yimg.com/iu/api/res/1.2/ArfrherYRx0cVN5U35NqqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28547.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 0 + + + 10 + 0 + + + 11 + 7 + + + 12 + 64 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 19 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.30305 + 30305 + + Alex Armah + Alex + Armah + Alex + Armah + + nfl.p.30305 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/WYEO7l4ElC1ra24zJ.H28Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30305.png + small + + https://s.yimg.com/iu/api/res/1.2/WYEO7l4ElC1ra24zJ.H28Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09142018/30305.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 9 + + + 9 + 15 + + + 10 + 2 + + + 11 + 1 + + + 12 + 5 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 3 + + + + + + 380.p.30279 + 30279 + + Shelton Gibson + Shelton + Gibson + Shelton + Gibson + + hamstring + nfl.p.30279 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/M28JJFDjG96bPkCr96srDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30279.png + small + + https://s.yimg.com/iu/api/res/1.2/M28JJFDjG96bPkCr96srDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30279.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 48 + + + 13 + 0 + + + 14 + 57 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.31685 + 31685 + + Detrez Newsome + Detrez + Newsome + Detrez + Newsome + + nfl.p.31685 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 11 + + + 9 + 49 + + + 10 + 0 + + + 11 + 2 + + + 12 + 19 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 2 + + + 81 + 3 + + + + + + 380.p.28527 + 28527 + + Rashad Greene Sr. + Rashad + Greene Sr. + Rashad + Greene Sr. + + nfl.p.28527 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 13 + WR + + https://s.yimg.com/iu/api/res/1.2/RhHM6U6X1WUF.hqPfsxcKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28527.png + small + + https://s.yimg.com/iu/api/res/1.2/RhHM6U6X1WUF.hqPfsxcKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28527.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 60 + + + 13 + 0 + + + 14 + 121 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.24860 + 24860 + + Stevan Ridley + Stevan + Ridley + Stevan + Ridley + + nfl.p.24860 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/fwcC_ioFssaQXD8GsCy0Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24860.png + small + + https://s.yimg.com/iu/api/res/1.2/fwcC_ioFssaQXD8GsCy0Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24860.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 29 + + + 9 + 80 + + + 10 + 1 + + + 11 + 3 + + + 12 + 18 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 2 + + + 18 + 2 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 1 + + + 81 + 3 + + + + + + 380.p.24963 + 24963 + + Dwayne Harris + Dwayne + Harris + Dwayne + Harris + + foot + nfl.p.24963 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/tTv4LUn1cA0WpRuw0shc.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24963.png + small + + https://s.yimg.com/iu/api/res/1.2/tTv4LUn1cA0WpRuw0shc.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24963.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 12 + + + 10 + 0 + + + 11 + 6 + + + 12 + 40 + + + 13 + 0 + + + 14 + 944 + + + 15 + 1 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 1 + + + 81 + 1 + + + + + + 380.p.26657 + 26657 + + Justin Hunter + Justin + Hunter + Justin + Hunter + + IR + Injured Reserve + shoulder + nfl.p.26657 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/QzeCLhcBJWcdTeyFTJ8DwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26657.png + small + + https://s.yimg.com/iu/api/res/1.2/QzeCLhcBJWcdTeyFTJ8DwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26657.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 21 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 13 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.31457 + 31457 + + Dontrell Hilliard + Dontrell + Hilliard + Dontrell + Hilliard + + nfl.p.31457 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 11 + + + 1 + 1 + + + 2 + 0 + + + 3 + 1 + + + 4 + 0 + + + 5 + 0 + + + 6 + 1 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 9 + + + 12 + 105 + + + 13 + 0 + + + 14 + 264 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 10 + + + 79 + 0 + + + 80 + 4 + + + 81 + 0 + + + + + + 380.p.31551 + 31551 + + Jawill Davis + Jawill + Davis + Jawill + Davis + + IR + Injured Reserve + knee + nfl.p.31551 + nfl.t.19 + New York Giants + NYG + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 4 + + + 12 + 40 + + + 13 + 0 + + + 14 + 260 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29377 + 29377 + + DeAndre Washington + DeAndre + Washington + DeAndre + Washington + + knee + nfl.p.29377 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 33 + RB + + https://s.yimg.com/iu/api/res/1.2/720GomJ83pcT74B4Pwvsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29377.png + small + + https://s.yimg.com/iu/api/res/1.2/720GomJ83pcT74B4Pwvsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29377.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 30 + + + 9 + 115 + + + 10 + 0 + + + 11 + 1 + + + 12 + 9 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 8 + + + + + + 380.p.30227 + 30227 + + Samaje Perine + Samaje + Perine + Samaje + Perine + + calf + nfl.p.30227 + nfl.t.28 + Washington Redskins + Was + + 4 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/ENk3QyvDF_k5OOR9pWQSAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30227.png + small + + https://s.yimg.com/iu/api/res/1.2/ENk3QyvDF_k5OOR9pWQSAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/30227.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 8 + + + 9 + 32 + + + 10 + 0 + + + 11 + 3 + + + 12 + 5 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.30292 + 30292 + + T.J. Logan + T.J. + Logan + T.J. + Logan + + ankle + nfl.p.30292 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 22 + RB + + https://s.yimg.com/iu/api/res/1.2/vf5J16GYER_5lMy1acb_zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30292.png + small + + https://s.yimg.com/iu/api/res/1.2/vf5J16GYER_5lMy1acb_zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/30292.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 2 + + + 10 + 0 + + + 11 + 7 + + + 12 + 37 + + + 13 + 0 + + + 14 + 296 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.31241 + 31241 + + Roc Thomas + Roc + Thomas + Roc + Thomas + + hamstring + nfl.p.31241 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/RTctrwmXetZ6VYcP98CvTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31241.png + small + + https://s.yimg.com/iu/api/res/1.2/RTctrwmXetZ6VYcP98CvTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31241.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 8 + + + 9 + 30 + + + 10 + 0 + + + 11 + 2 + + + 12 + 21 + + + 13 + 0 + + + 14 + 20 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.29475 + 29475 + + Charone Peake + Charone + Peake + Charone + Peake + + hamstring + nfl.p.29475 + nfl.t.20 + New York Jets + NYJ + + 11 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/R3BaEfBmfvNJK_U._kkV.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29475.png + small + + https://s.yimg.com/iu/api/res/1.2/R3BaEfBmfvNJK_U._kkV.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29475.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 25 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.27201 + 27201 + + Nick Williams + Nick + Williams + Nick + Williams + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27201 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/olu5PDBD5YAEbodLI8en8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27201.png + small + + https://s.yimg.com/iu/api/res/1.2/olu5PDBD5YAEbodLI8en8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27201.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 17 + + + 13 + 0 + + + 14 + 47 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29680 + 29680 + + Byron Marshall + Byron + Marshall + Byron + Marshall + + undisclosed + nfl.p.29680 + nfl.t.28 + Washington Redskins + Was + + 4 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/AjKTAkeZeK_oq4zWzhqoPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29680.png + small + + https://s.yimg.com/iu/api/res/1.2/AjKTAkeZeK_oq4zWzhqoPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29680.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 9 + + + 10 + 0 + + + 11 + 4 + + + 12 + 30 + + + 13 + 0 + + + 14 + 114 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29951 + 29951 + + C.J. Ham + C.J. + Ham + C.J. + Ham + + Q + Questionable + elbow + nfl.p.29951 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/OI6xb0T27TqFiDH083wW8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29951.png + small + + https://s.yimg.com/iu/api/res/1.2/OI6xb0T27TqFiDH083wW8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29951.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 8 + + + 10 + 0 + + + 11 + 11 + + + 12 + 85 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 15 + + + 79 + 0 + + + 80 + 4 + + + 81 + 1 + + + + + + 380.p.31157 + 31157 + + Ray-Ray McCloud III + Ray-Ray + McCloud III + Ray-Ray + McCloud III + + not injury related + nfl.p.31157 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 14 + WR + + https://s.yimg.com/iu/api/res/1.2/yipRjPeG6yuf9NFwcwTRpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31157.png + small + + https://s.yimg.com/iu/api/res/1.2/yipRjPeG6yuf9NFwcwTRpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31157.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 4 + + + 10 + 0 + + + 11 + 5 + + + 12 + 36 + + + 13 + 0 + + + 14 + 38 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.25158 + 25158 + + Patrick DiMarco + Patrick + DiMarco + Patrick + DiMarco + + nfl.p.25158 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 42 + RB + + https://s.yimg.com/iu/api/res/1.2/pza5rMuAeJSQ51_jTE0m3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25158.png + small + + https://s.yimg.com/iu/api/res/1.2/pza5rMuAeJSQ51_jTE0m3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25158.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 9 + + + 10 + 0 + + + 11 + 3 + + + 12 + 62 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 2 + + + 81 + 1 + + + + + + 380.p.30959 + 30959 + + Brandon Zylstra + Brandon + Zylstra + Brandon + Zylstra + + foot + nfl.p.30959 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/0FIbNaWQiiYTLhO.Lv9EBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30959.png + small + + https://s.yimg.com/iu/api/res/1.2/0FIbNaWQiiYTLhO.Lv9EBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30959.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 23 + + + 13 + 0 + + + 14 + 41 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29906 + 29906 + + Elijhaa Penny + Elijhaa + Penny + Elijhaa + Penny + + nfl.p.29906 + nfl.t.19 + New York Giants + NYG + + 9 + + 39 + RB + + https://s.yimg.com/iu/api/res/1.2/En0G1P3YWUAcMRvfuMBsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29906.png + small + + https://s.yimg.com/iu/api/res/1.2/En0G1P3YWUAcMRvfuMBsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29906.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 7 + + + 9 + 25 + + + 10 + 0 + + + 11 + 8 + + + 12 + 50 + + + 13 + 0 + + + 14 + -3 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 1 + + + 81 + 2 + + + + + + 380.p.31082 + 31082 + + Mark Walton + Mark + Walton + Mark + Walton + + nfl.p.31082 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/ooq6D1Bh685We_1XSEpoyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31082.png + small + + https://s.yimg.com/iu/api/res/1.2/ooq6D1Bh685We_1XSEpoyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31082.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 14 + + + 9 + 34 + + + 10 + 0 + + + 11 + 5 + + + 12 + 41 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 8 + + + 79 + 0 + + + 80 + 1 + + + 81 + 5 + + + + + + 380.p.31278 + 31278 + + Shaun Wilson + Shaun + Wilson + Shaun + Wilson + + IR + Injured Reserve + undisclosed + nfl.p.31278 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/6ufQXFq9VoM4yiUxw_ciLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31278.png + small + + https://s.yimg.com/iu/api/res/1.2/6ufQXFq9VoM4yiUxw_ciLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31278.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 6 + + + 9 + 29 + + + 10 + 0 + + + 11 + 3 + + + 12 + 5 + + + 13 + 0 + + + 14 + 122 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 5 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31228 + 31228 + + Mike Boone + Mike + Boone + Mike + Boone + + groin + nfl.p.31228 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 44 + RB + + https://s.yimg.com/iu/api/res/1.2/pKXO5mzuP7wn6YMGJohGBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31228.png + small + + https://s.yimg.com/iu/api/res/1.2/pKXO5mzuP7wn6YMGJohGBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31228.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 11 + + + 9 + 47 + + + 10 + 0 + + + 11 + 2 + + + 12 + 1 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.31769 + 31769 + + KhaDarel Hodge + KhaDarel + Hodge + KhaDarel + Hodge + + nfl.p.31769 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 17 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.28475 + 28475 + + Sammie Coates Jr. + Sammie + Coates Jr. + Sammie + Coates Jr. + + NA + Inactive: Coach's Decision or Not on Roster + illness + nfl.p.28475 + nfl.t.34 + Houston Texans + Hou + + 10 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/BvwjBXtIjsDdEVNd78ZyAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28475.png + small + + https://s.yimg.com/iu/api/res/1.2/BvwjBXtIjsDdEVNd78ZyAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28475.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 12 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.26787 + 26787 + + Mike Gillislee + Mike + Gillislee + Mike + Gillislee + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26787 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 25 + RB + + https://s.yimg.com/iu/api/res/1.2/OfO57Yibaq05ss1L_SrxrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/26787.png + small + + https://s.yimg.com/iu/api/res/1.2/OfO57Yibaq05ss1L_SrxrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/26787.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 16 + + + 9 + 43 + + + 10 + 0 + + + 11 + 1 + + + 12 + 9 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.26838 + 26838 + + Tommy Bohanon + Tommy + Bohanon + Tommy + Bohanon + + nfl.p.26838 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 40 + RB + + https://s.yimg.com/iu/api/res/1.2/lJnVKjkJy_gV7W89DrWIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26838.png + small + + https://s.yimg.com/iu/api/res/1.2/lJnVKjkJy_gV7W89DrWIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26838.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 6 + + + 12 + 41 + + + 13 + 0 + + + 14 + 25 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 9 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.26805 + 26805 + + Kenjon Barner + Kenjon + Barner + Kenjon + Barner + + IR + Injured Reserve + knee + nfl.p.26805 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 23 + RB + + https://s.yimg.com/iu/api/res/1.2/495djpUkEb7wL2wonJsPjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26805.png + small + + https://s.yimg.com/iu/api/res/1.2/495djpUkEb7wL2wonJsPjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26805.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 2 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 19 + + + 9 + 71 + + + 10 + 0 + + + 11 + 1 + + + 12 + 3 + + + 13 + 0 + + + 14 + 249 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 3 + + + + + + 380.p.30955 + 30955 + + River Cracraft + River + Cracraft + River + Cracraft + + nfl.p.30955 + nfl.t.7 + Denver Broncos + Den + + 10 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/4CIZD4yXBpmxmiNiRjQhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30955.png + small + + https://s.yimg.com/iu/api/res/1.2/4CIZD4yXBpmxmiNiRjQhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/30955.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 44 + + + 13 + 0 + + + 14 + 83 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29327 + 29327 + + Cody Kessler + Cody + Kessler + Cody + Kessler + + nfl.p.29327 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/8RSHixm.w1enn79K0u7Lbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29327.png + small + + https://s.yimg.com/iu/api/res/1.2/8RSHixm.w1enn79K0u7Lbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29327.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 131 + + + 2 + 85 + + + 3 + 46 + + + 4 + 709 + + + 5 + 2 + + + 6 + 2 + + + 7 + 22 + + + 8 + 19 + + + 9 + 123 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 5 + + + 18 + 3 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 35 + + + 80 + 0 + + + 81 + 9 + + + + + + 380.p.30682 + 30682 + + Marcus Kemp + Marcus + Kemp + Marcus + Kemp + + nfl.p.30682 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/2k6FkMjCEnQo66xs8FnYcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30682.png + small + + https://s.yimg.com/iu/api/res/1.2/2k6FkMjCEnQo66xs8FnYcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30682.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 7 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28730 + 28730 + + Damiere Byrd + Damiere + Byrd + Damiere + Byrd + + IR + Injured Reserve + broken arm + nfl.p.28730 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/sx6eeqSmLeBHQjIFqSLoZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28730.png + small + + https://s.yimg.com/iu/api/res/1.2/sx6eeqSmLeBHQjIFqSLoZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28730.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 8 + + + 13 + 0 + + + 14 + 138 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.9271 + 9271 + + Darrius Heyward-Bey + Darrius + Heyward-Bey + Darrius + Heyward-Bey + + ankle + nfl.p.9271 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 88 + WR + + https://s.yimg.com/iu/api/res/1.2/HwVvwXhRqq.jv6.qs49T_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9271.png + small + + https://s.yimg.com/iu/api/res/1.2/HwVvwXhRqq.jv6.qs49T_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9271.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -7 + + + 10 + 0 + + + 11 + 1 + + + 12 + 9 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.9678 + 9678 + + Chase Daniel + Chase + Daniel + Chase + Daniel + + nfl.p.9678 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/GkvhlppuNerAjtNYzu03JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/9678.png + small + + https://s.yimg.com/iu/api/res/1.2/GkvhlppuNerAjtNYzu03JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/9678.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 76 + + + 2 + 53 + + + 3 + 23 + + + 4 + 515 + + + 5 + 3 + + + 6 + 2 + + + 7 + 9 + + + 8 + 13 + + + 9 + 3 + + + 10 + 0 + + + 11 + 1 + + + 12 + 8 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 4 + + + 18 + 0 + + + 57 + 0 + + + 58 + 1 + + + 59 + 1 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 24 + + + 80 + 1 + + + 81 + 1 + + + + + + 380.p.31114 + 31114 + + Justin Watson + Justin + Watson + Justin + Watson + + nfl.p.31114 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 17 + WR + + https://s.yimg.com/iu/api/res/1.2/wfvhMlTxNb0stzRajx_otA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31114.png + small + + https://s.yimg.com/iu/api/res/1.2/wfvhMlTxNb0stzRajx_otA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31114.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 5 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30517 + 30517 + + Ricky Ortiz + Ricky + Ortiz + Ricky + Ortiz + + nfl.p.30517 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/J14Is.B_yihErqSI65glnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30517.png + small + + https://s.yimg.com/iu/api/res/1.2/J14Is.B_yihErqSI65glnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30517.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 11 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30252 + 30252 + + Jehu Chesson + Jehu + Chesson + Jehu + Chesson + + nfl.p.30252 + nfl.t.28 + Washington Redskins + Was + + 4 + + 16 + WR + + https://s.yimg.com/iu/api/res/1.2/XLRspgy85TEmpLJy_HFVrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30252.png + small + + https://s.yimg.com/iu/api/res/1.2/XLRspgy85TEmpLJy_HFVrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30252.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -4 + + + 10 + 0 + + + 11 + 1 + + + 12 + 7 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.31103 + 31103 + + J'Mon Moore + J'Mon + Moore + J'Mon + Moore + + nfl.p.31103 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 82 + WR + + https://s.yimg.com/iu/api/res/1.2/lj8O_m2SFNOuRbn.05WClg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31103.png + small + + https://s.yimg.com/iu/api/res/1.2/lj8O_m2SFNOuRbn.05WClg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/31103.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 12 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 15 + + + 13 + 0 + + + 14 + 102 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29821 + 29821 + + Tre Madden + Tre + Madden + Tre + Madden + + Q + Questionable + hamstring + nfl.p.29821 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/EXVFGf_xmNQcszshtviJQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29821.png + small + + https://s.yimg.com/iu/api/res/1.2/EXVFGf_xmNQcszshtviJQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29821.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 3 + + + 9 + 3 + + + 10 + 0 + + + 11 + 2 + + + 12 + 35 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 1 + + + + + + 380.p.28068 + 28068 + + Roosevelt Nix + Roosevelt + Nix + Roosevelt + Nix + + nfl.p.28068 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 45 + RB + + https://s.yimg.com/iu/api/res/1.2/ApDYXCZkZgqs90hdQCUWNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28068.png + small + + https://s.yimg.com/iu/api/res/1.2/ApDYXCZkZgqs90hdQCUWNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28068.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 4 + + + 10 + 0 + + + 11 + 4 + + + 12 + 38 + + + 13 + 0 + + + 14 + 12 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 6 + + + 79 + 0 + + + 80 + 2 + + + 81 + 0 + + + + + + 380.p.29353 + 29353 + + Tyler Ervin + Tyler + Ervin + Tyler + Ervin + + nfl.p.29353 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 21 + RB + + https://s.yimg.com/iu/api/res/1.2/HWlakvoYfDx4G2.wSr9FlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29353.png + small + + https://s.yimg.com/iu/api/res/1.2/HWlakvoYfDx4G2.wSr9FlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29353.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 9 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 3 + + + 12 + 35 + + + 13 + 0 + + + 14 + 428 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.28141 + 28141 + + Keith Smith + Keith + Smith + Keith + Smith + + nfl.p.28141 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 41 + RB + + https://s.yimg.com/iu/api/res/1.2/PsHYEFJrKuO_l2hwPp9nVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28141.png + small + + https://s.yimg.com/iu/api/res/1.2/PsHYEFJrKuO_l2hwPp9nVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28141.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 5 + + + 12 + 23 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 0 + + + 80 + 3 + + + 81 + 0 + + + + + + 380.p.31486 + 31486 + + Quadree Henderson + Quadree + Henderson + Quadree + Henderson + + IR + Injured Reserve + shoulder + nfl.p.31486 + nfl.t.19 + New York Giants + NYG + + 9 + + 15 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 180 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8930 + 8930 + + Matthew Slater + Matthew + Slater + Matthew + Slater + + nfl.p.8930 + nfl.t.17 + New England Patriots + NE + + 11 + + 18 + WR + + https://s.yimg.com/iu/api/res/1.2/eML4UH6jv__qsh7oDWTLYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/8930.png + small + + https://s.yimg.com/iu/api/res/1.2/eML4UH6jv__qsh7oDWTLYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/8930.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29351 + 29351 + + Pharoh Cooper + Pharoh + Cooper + Pharoh + Cooper + + ankle + nfl.p.29351 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 12 + WR + + https://s.yimg.com/iu/api/res/1.2/bfq7yX_4ocT1nxNeSbj_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29351.png + small + + https://s.yimg.com/iu/api/res/1.2/bfq7yX_4ocT1nxNeSbj_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/29351.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 356 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28574 + 28574 + + Geremy Davis + Geremy + Davis + Geremy + Davis + + nfl.p.28574 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/CA4bE5CgMNkBZKv3GxTXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28574.png + small + + https://s.yimg.com/iu/api/res/1.2/CA4bE5CgMNkBZKv3GxTXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28574.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29978 + 29978 + + Jaydon Mickens + Jaydon + Mickens + Jaydon + Mickens + + IR + Injured Reserve + broken ankle + nfl.p.29978 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 85 + WR + + https://s.yimg.com/iu/api/res/1.2/bkXfq9gOC_dn0hlHwBSa_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29978.png + small + + https://s.yimg.com/iu/api/res/1.2/bkXfq9gOC_dn0hlHwBSa_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29978.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 208 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.7760 + 7760 + + Jay Cutler + Jay + Cutler + Jay + Cutler + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7760 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/HOa2mZFG_jklfdGhkcJ.qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/7760.png + small + + https://s.yimg.com/iu/api/res/1.2/HOa2mZFG_jklfdGhkcJ.qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/7760.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27692 + 27692 + + AJ McCarron + AJ + McCarron + AJ + McCarron + + nfl.p.27692 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/_BFqv32sOMm.b.UafvwoHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27692.png + small + + https://s.yimg.com/iu/api/res/1.2/_BFqv32sOMm.b.UafvwoHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27692.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 3 + + + 2 + 1 + + + 3 + 2 + + + 4 + 8 + + + 5 + 0 + + + 6 + 0 + + + 7 + 1 + + + 8 + 3 + + + 9 + -2 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27742 + 27742 + + Garrett Gilbert + Garrett + Gilbert + Garrett + Gilbert + + nfl.p.27742 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/0MRsEIDMDmVvIFRjYPitwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27742.png + small + + https://s.yimg.com/iu/api/res/1.2/0MRsEIDMDmVvIFRjYPitwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27742.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 3 + + + 2 + 2 + + + 3 + 1 + + + 4 + 40 + + + 5 + 0 + + + 6 + 0 + + + 7 + 1 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 1 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26346 + 26346 + + Austin Davis + Austin + Davis + Austin + Davis + + undisclosed + nfl.p.26346 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/_CtGX5ohz5.gmTrZhuXeZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26346.png + small + + https://s.yimg.com/iu/api/res/1.2/_CtGX5ohz5.gmTrZhuXeZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26346.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27878 + 27878 + + Stephen Morris + Stephen + Morris + Stephen + Morris + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27878 + nfl.t.34 + Houston Texans + Hou + + 10 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/GwyCjsmwzCEbCMOjsPz9wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27878.png + small + + https://s.yimg.com/iu/api/res/1.2/GwyCjsmwzCEbCMOjsPz9wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27878.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8297 + 8297 + + Drew Stanton + Drew + Stanton + Drew + Stanton + + nfl.p.8297 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/FqMSV8gDmaPBjWSGK4pT4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8297.png + small + + https://s.yimg.com/iu/api/res/1.2/FqMSV8gDmaPBjWSGK4pT4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8297.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28535 + 28535 + + Brett Hundley + Brett + Hundley + Brett + Hundley + + nfl.p.28535 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/jskwWIFRz_.ZKK2KHGzxYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28535.png + small + + https://s.yimg.com/iu/api/res/1.2/jskwWIFRz_.ZKK2KHGzxYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28535.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31365 + 31365 + + J.T. Barrett IV + J.T. + Barrett IV + J.T. + Barrett IV + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31365 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 16 + QB + + https://s.yimg.com/iu/api/res/1.2/w0etNm8uYNKXiZV3coS0bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31365.png + small + + https://s.yimg.com/iu/api/res/1.2/w0etNm8uYNKXiZV3coS0bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31365.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31189 + 31189 + + Danny Etling + Danny + Etling + Danny + Etling + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31189 + nfl.t.17 + New England Patriots + NE + + 11 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/RU95PtO1FKrj.SrtDlglhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31189.png + small + + https://s.yimg.com/iu/api/res/1.2/RU95PtO1FKrj.SrtDlglhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31189.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31190 + 31190 + + Alex McGough + Alex + McGough + Alex + McGough + + nfl.p.31190 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/ry4GT8RBHxsHlhjcrkmOHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31190.png + small + + https://s.yimg.com/iu/api/res/1.2/ry4GT8RBHxsHlhjcrkmOHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31190.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30822 + 30822 + + Kyle Sloter + Kyle + Sloter + Kyle + Sloter + + nfl.p.30822 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 1 + QB + + https://s.yimg.com/iu/api/res/1.2/URaZe1o3kkn1_7kcZL7XMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30822.png + small + + https://s.yimg.com/iu/api/res/1.2/URaZe1o3kkn1_7kcZL7XMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30822.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.26738 + 26738 + + Landry Jones + Landry + Jones + Landry + Jones + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26738 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/wnoWRZW7QBIBo2yg3JvD6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26738.png + small + + https://s.yimg.com/iu/api/res/1.2/wnoWRZW7QBIBo2yg3JvD6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252018/26738.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30366 + 30366 + + Chad Kelly + Chad + Kelly + Chad + Kelly + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30366 + nfl.t.7 + Denver Broncos + Den + + 10 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/HuWloRaOE3wB0mJgV.85pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30366.png + small + + https://s.yimg.com/iu/api/res/1.2/HuWloRaOE3wB0mJgV.85pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30366.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -1 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31141 + 31141 + + Mike White + Mike + White + Mike + White + + nfl.p.31141 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/ZcuCG9NE5WqB_xKYKm3tjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31141.png + small + + https://s.yimg.com/iu/api/res/1.2/ZcuCG9NE5WqB_xKYKm3tjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31141.png + 0 + O + + QB + + 1 + 1547337600 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26639 + 26639 + + EJ Manuel + EJ + Manuel + EJ + Manuel + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.26639 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/1RCFikXGNFYyCg84n0YHtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26639.png + small + + https://s.yimg.com/iu/api/res/1.2/1RCFikXGNFYyCg84n0YHtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26639.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29396 + 29396 + + Kevin Hogan + Kevin + Hogan + Kevin + Hogan + + nfl.p.29396 + nfl.t.7 + Denver Broncos + Den + + 10 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/PNKT1EWsD7rzz8lbBKtrQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29396.png + small + + https://s.yimg.com/iu/api/res/1.2/PNKT1EWsD7rzz8lbBKtrQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/29396.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24861 + 24861 + + Ryan Mallett + Ryan + Mallett + Ryan + Mallett + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24861 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 15 + QB + + https://s.yimg.com/iu/api/res/1.2/kFPCWCPGwgy5nDr8JLzPGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/24861.png + small + + https://s.yimg.com/iu/api/res/1.2/kFPCWCPGwgy5nDr8JLzPGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/24861.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31239 + 31239 + + Peter Pujals + Peter + Pujals + Peter + Pujals + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31239 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/6DlA8GAlRvV_lUCXD3Q2jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31239.png + small + + https://s.yimg.com/iu/api/res/1.2/6DlA8GAlRvV_lUCXD3Q2jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31239.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27170 + 27170 + + Tyler Bray + Tyler + Bray + Tyler + Bray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27170 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/qTZiyoha6pIwCl0nf5i4oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27170.png + small + + https://s.yimg.com/iu/api/res/1.2/qTZiyoha6pIwCl0nf5i4oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27170.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26949 + 26949 + + Ryan Griffin + Ryan + Griffin + Ryan + Griffin + + nfl.p.26949 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/zRP5cLRuZj3e9fQz70FsCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26949.png + small + + https://s.yimg.com/iu/api/res/1.2/zRP5cLRuZj3e9fQz70FsCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26949.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8834 + 8834 + + Chad Henne + Chad + Henne + Chad + Henne + + nfl.p.8834 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/1HtutgNEqhgj3kU8oAjpyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/8834.png + small + + https://s.yimg.com/iu/api/res/1.2/1HtutgNEqhgj3kU8oAjpyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/8834.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 3 + + + 2 + 2 + + + 3 + 1 + + + 4 + 29 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 3 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 2 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.7406 + 7406 + + Matt Cassel + Matt + Cassel + Matt + Cassel + + nfl.p.7406 + nfl.t.8 + Detroit Lions + Det + + 6 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/fw2GxKuyaLq.0dvfexkYSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7406.png + small + + https://s.yimg.com/iu/api/res/1.2/fw2GxKuyaLq.0dvfexkYSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7406.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 17 + + + 2 + 7 + + + 3 + 10 + + + 4 + 59 + + + 5 + 0 + + + 6 + 1 + + + 7 + 1 + + + 8 + 2 + + + 9 + 13 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 2 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.31490 + 31490 + + Chase Litton + Chase + Litton + Chase + Litton + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31490 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30466 + 30466 + + Alek Torgersen + Alek + Torgersen + Alek + Torgersen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30466 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/J51uVSfV0WopGhjDue_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30466.png + small + + https://s.yimg.com/iu/api/res/1.2/J51uVSfV0WopGhjDue_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30466.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31078 + 31078 + + Kyle Lauletta + Kyle + Lauletta + Kyle + Lauletta + + nfl.p.31078 + nfl.t.19 + New York Giants + NYG + + 9 + + 17 + QB + + https://s.yimg.com/iu/api/res/1.2/z5HU6qsXnPBex_Mjmc3YOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31078.png + small + + https://s.yimg.com/iu/api/res/1.2/z5HU6qsXnPBex_Mjmc3YOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/31078.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 5 + + + 2 + 0 + + + 3 + 5 + + + 4 + 0 + + + 5 + 0 + + + 6 + 1 + + + 7 + 0 + + + 8 + 1 + + + 9 + -2 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25712 + 25712 + + Robert Griffin III + Robert + Griffin III + Robert + Griffin III + + nfl.p.25712 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/WcTf6W7O4czMul1khmSyyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25712.png + small + + https://s.yimg.com/iu/api/res/1.2/WcTf6W7O4czMul1khmSyyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25712.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 6 + + + 2 + 2 + + + 3 + 4 + + + 4 + 21 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 1 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30788 + 30788 + + Cooper Rush + Cooper + Rush + Cooper + Rush + + nfl.p.30788 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/PHyuNRlC9y8rQj.CALXPHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30788.png + small + + https://s.yimg.com/iu/api/res/1.2/PHyuNRlC9y8rQj.CALXPHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/30788.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31301 + 31301 + + Kyle Allen + Kyle + Allen + Kyle + Allen + + Q + Questionable + nfl.p.31301 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/bdvckEZX86pIXEybnMD6Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31301.png + small + + https://s.yimg.com/iu/api/res/1.2/bdvckEZX86pIXEybnMD6Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31301.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 31 + + + 2 + 20 + + + 3 + 11 + + + 4 + 266 + + + 5 + 2 + + + 6 + 0 + + + 7 + 0 + + + 8 + 5 + + + 9 + 19 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 11 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.31741 + 31741 + + Nick Stevens + Nick + Stevens + Nick + Stevens + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31741 + nfl.t.7 + Denver Broncos + Den + + 10 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31803 + 31803 + + John Wolford + John + Wolford + John + Wolford + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31803 + nfl.t.20 + New York Jets + NYJ + + 11 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31688 + 31688 + + Nic Shimonek + Nic + Shimonek + Nic + Shimonek + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31688 + nfl.t.28 + Washington Redskins + Was + + 4 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29545 + 29545 + + Joel Stave + Joel + Stave + Joel + Stave + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29545 + nfl.t.5 + Cleveland Browns + Cle + + 11 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/duM9gK4l1rzBTG_LHm9Nog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29545.png + small + + https://s.yimg.com/iu/api/res/1.2/duM9gK4l1rzBTG_LHm9Nog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29545.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31169 + 31169 + + Luke Falk + Luke + Falk + Luke + Falk + + IR + Injured Reserve + fractured left wrist + nfl.p.31169 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 4 + QB + + https://s.yimg.com/iu/api/res/1.2/bUT466h3iPU0kGGw.cXqOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31169.png + small + + https://s.yimg.com/iu/api/res/1.2/bUT466h3iPU0kGGw.cXqOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31169.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24939 + 24939 + + T.J. Yates + T.J. + Yates + T.J. + Yates + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24939 + nfl.t.34 + Houston Texans + Hou + + 10 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/v2v8WVFriAIKtrCcRkae7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24939.png + small + + https://s.yimg.com/iu/api/res/1.2/v2v8WVFriAIKtrCcRkae7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24939.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27711 + 27711 + + David Fales + David + Fales + David + Fales + + nfl.p.27711 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/36U2PbQB9NQZCsQsIzjJdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/27711.png + small + + https://s.yimg.com/iu/api/res/1.2/36U2PbQB9NQZCsQsIzjJdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/27711.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.9269 + 9269 + + Mark Sanchez + Mark + Sanchez + Mark + Sanchez + + nfl.p.9269 + nfl.t.28 + Washington Redskins + Was + + 4 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/EfqEmvp8lkmMz3PVVNICkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/9269.png + small + + https://s.yimg.com/iu/api/res/1.2/EfqEmvp8lkmMz3PVVNICkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/9269.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 35 + + + 2 + 19 + + + 3 + 16 + + + 4 + 138 + + + 5 + 0 + + + 6 + 3 + + + 7 + 7 + + + 8 + 1 + + + 9 + 8 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 1 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 3 + + + 80 + 0 + + + 81 + 1 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.29373 + 29373 + + Cardale Jones + Cardale + Jones + Cardale + Jones + + nfl.p.29373 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/l2Sz7pRbGIKQ4L.j5NQJeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29373.png + small + + https://s.yimg.com/iu/api/res/1.2/l2Sz7pRbGIKQ4L.j5NQJeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29373.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30328 + 30328 + + Brad Kaaya + Brad + Kaaya + Brad + Kaaya + + IR + Injured Reserve + undisclosed + nfl.p.30328 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/fVSiwFoMv9pjEh4peaZX4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30328.png + small + + https://s.yimg.com/iu/api/res/1.2/fVSiwFoMv9pjEh4peaZX4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30328.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24060 + 24060 + + Colt McCoy + Colt + McCoy + Colt + McCoy + + IR + Injured Reserve + fractured right fibula + nfl.p.24060 + nfl.t.28 + Washington Redskins + Was + + 4 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/BfCSJQ7eBhYaxa0IoaO5ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24060.png + small + + https://s.yimg.com/iu/api/res/1.2/BfCSJQ7eBhYaxa0IoaO5ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/24060.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 54 + + + 2 + 34 + + + 3 + 20 + + + 4 + 372 + + + 5 + 3 + + + 6 + 3 + + + 7 + 6 + + + 8 + 10 + + + 9 + 63 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 1 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 17 + + + 80 + 0 + + + 81 + 4 + + + + + + 380.p.29421 + 29421 + + Nate Sudfeld + Nate + Sudfeld + Nate + Sudfeld + + nfl.p.29421 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/sWMT37uR9BbMYj_rWgiN4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29421.png + small + + https://s.yimg.com/iu/api/res/1.2/sWMT37uR9BbMYj_rWgiN4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29421.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 2 + + + 2 + 1 + + + 3 + 1 + + + 4 + 22 + + + 5 + 1 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + -2 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 1 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31279 + 31279 + + Dalton Sturm + Dalton + Sturm + Dalton + Sturm + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31279 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 1 + QB + + https://s.yimg.com/iu/api/res/1.2/mJj5D8pHfL3H_xDJGeFo6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31279.png + small + + https://s.yimg.com/iu/api/res/1.2/mJj5D8pHfL3H_xDJGeFo6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31279.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25171 + 25171 + + Scott Tolzien + Scott + Tolzien + Scott + Tolzien + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.25171 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 16 + QB + + https://s.yimg.com/iu/api/res/1.2/oUUwFU4fQC12PqjojXO20g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25171.png + small + + https://s.yimg.com/iu/api/res/1.2/oUUwFU4fQC12PqjojXO20g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25171.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27429 + 27429 + + Matt McGloin + Matt + McGloin + Matt + McGloin + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.27429 + nfl.t.12 + Kansas City Chiefs + KC + + 12 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/IlCkF73SA0R0qQACtj7C7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27429.png + small + + https://s.yimg.com/iu/api/res/1.2/IlCkF73SA0R0qQACtj7C7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27429.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29457 + 29457 + + Brandon Doughty + Brandon + Doughty + Brandon + Doughty + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29457 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/uMBVivrciouJ_PiBG6qaMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/29457.png + small + + https://s.yimg.com/iu/api/res/1.2/uMBVivrciouJ_PiBG6qaMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/29457.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.6849 + 6849 + + Matt Schaub + Matt + Schaub + Matt + Schaub + + nfl.p.6849 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/Q.bscrOxpwlM8nrDAXNo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6849.png + small + + https://s.yimg.com/iu/api/res/1.2/Q.bscrOxpwlM8nrDAXNo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6849.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 7 + + + 2 + 5 + + + 3 + 2 + + + 4 + 20 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + -7 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 1 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31695 + 31695 + + Brogan Roback + Brogan + Roback + Brogan + Roback + + nfl.p.31695 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29260 + 29260 + + Paxton Lynch + Paxton + Lynch + Paxton + Lynch + + nfl.p.29260 + nfl.t.26 + Seattle Seahawks + Sea + + 7 + + 12 + QB + + https://s.yimg.com/iu/api/res/1.2/BrpKMtOBxa2fC2PAJnn_ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/29260.png + small + + https://s.yimg.com/iu/api/res/1.2/BrpKMtOBxa2fC2PAJnn_ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09122018/29260.png + 0 + O + + QB + + 1 + 1547759940 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26547 + 26547 + + Alex Tanney + Alex + Tanney + Alex + Tanney + + nfl.p.26547 + nfl.t.19 + New York Giants + NYG + + 9 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/IHIrWmRR0vbDqCzFTqRbjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26547.png + small + + https://s.yimg.com/iu/api/res/1.2/IHIrWmRR0vbDqCzFTqRbjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/26547.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31252 + 31252 + + Austin Allen + Austin + Allen + Austin + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31252 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/1L_bBI7UZpVl9TSSYndU7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31252.png + small + + https://s.yimg.com/iu/api/res/1.2/1L_bBI7UZpVl9TSSYndU7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/31252.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31804 + 31804 + + Connor Jessop + Connor + Jessop + Connor + Jessop + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31804 + nfl.t.28 + Washington Redskins + Was + + 4 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29425 + 29425 + + Jake Rudock + Jake + Rudock + Jake + Rudock + + nfl.p.29425 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/p1rNaePkSO5rgQaVW_9bZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29425.png + small + + https://s.yimg.com/iu/api/res/1.2/p1rNaePkSO5rgQaVW_9bZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29425.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28638 + 28638 + + Trevor Siemian + Trevor + Siemian + Trevor + Siemian + + nfl.p.28638 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/1xg7XPVmLFPIIevgusBzjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28638.png + small + + https://s.yimg.com/iu/api/res/1.2/1xg7XPVmLFPIIevgusBzjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28638.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31330 + 31330 + + Jack Heneghan + Jack + Heneghan + Jack + Heneghan + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31330 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/sFBYTZGWTa_SFhfaWcbxDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31330.png + small + + https://s.yimg.com/iu/api/res/1.2/sFBYTZGWTa_SFhfaWcbxDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31330.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29284 + 29284 + + Christian Hackenberg + Christian + Hackenberg + Christian + Hackenberg + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29284 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/3IcNIpz0OER0m7yw38GItw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29284.png + small + + https://s.yimg.com/iu/api/res/1.2/3IcNIpz0OER0m7yw38GItw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29284.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.7798 + 7798 + + Kellen Clemens + Kellen + Clemens + Kellen + Clemens + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.7798 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 10 + QB + + https://s.yimg.com/iu/api/res/1.2/vZrnJI2lGixNDBllqXtr0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7798.png + small + + https://s.yimg.com/iu/api/res/1.2/vZrnJI2lGixNDBllqXtr0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7798.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29334 + 29334 + + Connor Cook + Connor + Cook + Connor + Cook + + nfl.p.29334 + nfl.t.8 + Detroit Lions + Det + + 6 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/ResHqd1WsAqscs_WJ8mhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29334.png + small + + https://s.yimg.com/iu/api/res/1.2/ResHqd1WsAqscs_WJ8mhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29334.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31046 + 31046 + + Mason Rudolph + Mason + Rudolph + Mason + Rudolph + + nfl.p.31046 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/U9c_8BqF_Yb0._ymLbYNGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31046.png + small + + https://s.yimg.com/iu/api/res/1.2/U9c_8BqF_Yb0._ymLbYNGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31046.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.7389 + 7389 + + Derek Anderson + Derek + Anderson + Derek + Anderson + + concussion + nfl.p.7389 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/1aqFSRoFhs4c_4UYJx1teQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7389.png + small + + https://s.yimg.com/iu/api/res/1.2/1aqFSRoFhs4c_4UYJx1teQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7389.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 70 + + + 2 + 42 + + + 3 + 28 + + + 4 + 465 + + + 5 + 0 + + + 6 + 4 + + + 7 + 5 + + + 8 + 1 + + + 9 + -1 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 3 + + + 18 + 2 + + + 57 + 0 + + + 58 + 1 + + + 59 + 1 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 22 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28491 + 28491 + + Bryce Petty + Bryce + Petty + Bryce + Petty + + NA + Inactive: Coach's Decision or Not on Roster + undisclosed + nfl.p.28491 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/.Do8Fa7E5O3_B.XFXUjUHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28491.png + small + + https://s.yimg.com/iu/api/res/1.2/.Do8Fa7E5O3_B.XFXUjUHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28491.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28477 + 28477 + + Sean Mannion + Sean + Mannion + Sean + Mannion + + nfl.p.28477 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 14 + QB + + https://s.yimg.com/iu/api/res/1.2/cQLNwUC1Nrrgi4HU4grIeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28477.png + small + + https://s.yimg.com/iu/api/res/1.2/cQLNwUC1Nrrgi4HU4grIeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/28477.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 3 + + + 2 + 2 + + + 3 + 1 + + + 4 + 23 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 7 + + + 9 + -9 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 1 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.28463 + 28463 + + Garrett Grayson + Garrett + Grayson + Garrett + Grayson + + nfl.p.28463 + nfl.t.7 + Denver Broncos + Den + + 10 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/Q4YTHYp9lKBbLTaqggkJFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28463.png + small + + https://s.yimg.com/iu/api/res/1.2/Q4YTHYp9lKBbLTaqggkJFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28463.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31336 + 31336 + + Kurt Benkert + Kurt + Benkert + Kurt + Benkert + + nfl.p.31336 + nfl.t.1 + Atlanta Falcons + Atl + + 8 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/Kwjgnz8lIAUQKEgRUqbNLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31336.png + small + + https://s.yimg.com/iu/api/res/1.2/Kwjgnz8lIAUQKEgRUqbNLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31336.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26696 + 26696 + + Mike Glennon + Mike + Glennon + Mike + Glennon + + nfl.p.26696 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/OrlF8rDjCuaHqMwILgY8hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26696.png + small + + https://s.yimg.com/iu/api/res/1.2/OrlF8rDjCuaHqMwILgY8hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26696.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 2 + + + 1 + 21 + + + 2 + 15 + + + 3 + 6 + + + 4 + 174 + + + 5 + 1 + + + 6 + 0 + + + 7 + 1 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 8 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30200 + 30200 + + Davis Webb + Davis + Webb + Davis + Webb + + nfl.p.30200 + nfl.t.20 + New York Jets + NYJ + + 11 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/aggP48dGq6351bRHVALGPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30200.png + small + + https://s.yimg.com/iu/api/res/1.2/aggP48dGq6351bRHVALGPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09242018/30200.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.8544 + 8544 + + Matt Moore + Matt + Moore + Matt + Moore + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.8544 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/UO0KZxiUHXZKbzqQHBIWUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/8544.png + small + + https://s.yimg.com/iu/api/res/1.2/UO0KZxiUHXZKbzqQHBIWUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/8544.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29435 + 29435 + + Brandon Allen + Brandon + Allen + Brandon + Allen + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29435 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/grfh74zHj8JIjPTFxGT2ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29435.png + small + + https://s.yimg.com/iu/api/res/1.2/grfh74zHj8JIjPTFxGT2ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29435.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31431 + 31431 + + Tim Boyle + Tim + Boyle + Tim + Boyle + + nfl.p.31431 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 8 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26721 + 26721 + + Matt Barkley + Matt + Barkley + Matt + Barkley + + knee + nfl.p.26721 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/Yw4hJyESGXbuW0yYZ1i11A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26721.png + small + + https://s.yimg.com/iu/api/res/1.2/Yw4hJyESGXbuW0yYZ1i11A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26721.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 25 + + + 2 + 15 + + + 3 + 10 + + + 4 + 232 + + + 5 + 2 + + + 6 + 0 + + + 7 + 1 + + + 8 + 3 + + + 9 + -2 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 2 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 12 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31734 + 31734 + + Luis Perez + Luis + Perez + Luis + Perez + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31734 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31173 + 31173 + + Tanner Lee + Tanner + Lee + Tanner + Lee + + nfl.p.31173 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/rrJlYm4rzCJOyWi.iM9u8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31173.png + small + + https://s.yimg.com/iu/api/res/1.2/rrJlYm4rzCJOyWi.iM9u8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31173.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30538 + 30538 + + Phillip Walker + Phillip + Walker + Phillip + Walker + + nfl.p.30538 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/V6R029l3hx8Z6phxHCOX9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30538.png + small + + https://s.yimg.com/iu/api/res/1.2/V6R029l3hx8Z6phxHCOX9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30538.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25732 + 25732 + + Brandon Weeden + Brandon + Weeden + Brandon + Weeden + + nfl.p.25732 + nfl.t.34 + Houston Texans + Hou + + 10 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/5cf4PD7HL9weAS67E_NORQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25732.png + small + + https://s.yimg.com/iu/api/res/1.2/5cf4PD7HL9weAS67E_NORQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25732.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 1 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + -1 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27663 + 27663 + + Tom Savage + Tom + Savage + Tom + Savage + + nfl.p.27663 + nfl.t.4 + Cincinnati Bengals + Cin + + 9 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/HaRO2V2Y5KkIHlSL3oABuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27663.png + small + + https://s.yimg.com/iu/api/res/1.2/HaRO2V2Y5KkIHlSL3oABuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27663.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30747 + 30747 + + Tyler Ferguson + Tyler + Ferguson + Tyler + Ferguson + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.30747 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/rVfPg_Kd3.WIqFDzZ0qZPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30747.png + small + + https://s.yimg.com/iu/api/res/1.2/rVfPg_Kd3.WIqFDzZ0qZPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30747.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29722 + 29722 + + Joe Callahan + Joe + Callahan + Joe + Callahan + + nfl.p.29722 + nfl.t.27 + Tampa Bay Buccaneers + TB + + 5 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/estsdAjViQPbZRDqtOqC8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29722.png + small + + https://s.yimg.com/iu/api/res/1.2/estsdAjViQPbZRDqtOqC8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29722.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30165 + 30165 + + DeShone Kizer + DeShone + Kizer + DeShone + Kizer + + nfl.p.30165 + nfl.t.9 + Green Bay Packers + GB + + 7 + + 9 + QB + + https://s.yimg.com/iu/api/res/1.2/URI6c9KwDxbPqfKicbFKUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30165.png + small + + https://s.yimg.com/iu/api/res/1.2/URI6c9KwDxbPqfKicbFKUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132018/30165.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 1 + 42 + + + 2 + 20 + + + 3 + 22 + + + 4 + 187 + + + 5 + 0 + + + 6 + 2 + + + 7 + 4 + + + 8 + 5 + + + 9 + 39 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 1 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 8 + + + 80 + 0 + + + 81 + 3 + + + + + + 380.p.31308 + 31308 + + Charles Kanoff + Charles + Kanoff + Charles + Kanoff + + nfl.p.31308 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/QYOwxHOW6YFg4PFJqy_6rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31308.png + small + + https://s.yimg.com/iu/api/res/1.2/QYOwxHOW6YFg4PFJqy_6rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31308.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.29870 + 29870 + + Josh Woodrum + Josh + Woodrum + Josh + Woodrum + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.29870 + nfl.t.33 + Baltimore Ravens + Bal + + 10 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/SMcvy1sOpEkxkXAsi2F0rQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29870.png + small + + https://s.yimg.com/iu/api/res/1.2/SMcvy1sOpEkxkXAsi2F0rQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/29870.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31219 + 31219 + + Logan Woodside + Logan + Woodside + Logan + Woodside + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.31219 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 11 + QB + + https://s.yimg.com/iu/api/res/1.2/.jM2wZBedHCFzkiECn7xfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31219.png + small + + https://s.yimg.com/iu/api/res/1.2/.jM2wZBedHCFzkiECn7xfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31219.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27167 + 27167 + + Benny Cunningham + Benny + Cunningham + Benny + Cunningham + + ankle + nfl.p.27167 + nfl.t.3 + Chicago Bears + Chi + + 5 + + 30 + RB + + https://s.yimg.com/iu/api/res/1.2/Y6X2VA98d7af.r2Io7hziw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27167.png + small + + https://s.yimg.com/iu/api/res/1.2/Y6X2VA98d7af.r2Io7hziw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27167.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 11 + + + 9 + 20 + + + 10 + 0 + + + 11 + 1 + + + 12 + 9 + + + 13 + 0 + + + 14 + 173 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.30531 + 30531 + + JoJo Natson Jr. + JoJo + Natson Jr. + JoJo + Natson Jr. + + hand + nfl.p.30531 + nfl.t.14 + Los Angeles Rams + LAR + + 12 + + 19 + WR + + https://s.yimg.com/iu/api/res/1.2/nHpfez5X_dbAMLGCtfghhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30531.png + small + + https://s.yimg.com/iu/api/res/1.2/nHpfez5X_dbAMLGCtfghhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30531.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 13 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 388 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27790 + 27790 + + David Fluellen + David + Fluellen + David + Fluellen + + IR + Injured Reserve + knee + nfl.p.27790 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/jsJvscyD1gxtbyoIOHuFnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27790.png + small + + https://s.yimg.com/iu/api/res/1.2/jsJvscyD1gxtbyoIOHuFnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27790.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 7 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 16 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.26299 + 26299 + + Derrick Coleman + Derrick + Coleman + Derrick + Coleman + + nfl.p.26299 + nfl.t.22 + Arizona Cardinals + Ari + + 9 + + 32 + RB + + https://s.yimg.com/iu/api/res/1.2/mbL2oQejInsS03LIm4Zt3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26299.png + small + + https://s.yimg.com/iu/api/res/1.2/mbL2oQejInsS03LIm4Zt3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/26299.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 2 + + + 9 + 3 + + + 10 + 0 + + + 11 + 2 + + + 12 + 17 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.28442 + 28442 + + Ameer Abdullah + Ameer + Abdullah + Ameer + Abdullah + + nfl.p.28442 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 31 + RB + + https://s.yimg.com/iu/api/res/1.2/qRFP9T7jrDt6dsA90oh0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28442.png + small + + https://s.yimg.com/iu/api/res/1.2/qRFP9T7jrDt6dsA90oh0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28442.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 10 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 1 + + + 10 + 0 + + + 11 + 3 + + + 12 + 28 + + + 13 + 0 + + + 14 + 365 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.26535 + 26535 + + Jamize Olawale + Jamize + Olawale + Jamize + Olawale + + nfl.p.26535 + nfl.t.6 + Dallas Cowboys + Dal + + 8 + + 49 + RB + + https://s.yimg.com/iu/api/res/1.2/5.LZAgV6H4cMTPcBwVDIew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26535.png + small + + https://s.yimg.com/iu/api/res/1.2/5.LZAgV6H4cMTPcBwVDIew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/26535.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 13 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 4 + + + 79 + 0 + + + 80 + 1 + + + 81 + 0 + + + + + + 380.p.29432 + 29432 + + Derek Watt + Derek + Watt + Derek + Watt + + shoulder + nfl.p.29432 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/WhSItqza2GwQwcbhrufkkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29432.png + small + + https://s.yimg.com/iu/api/res/1.2/WhSItqza2GwQwcbhrufkkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29432.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 4 + + + 9 + 11 + + + 10 + 0 + + + 11 + 1 + + + 12 + 2 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + 380.p.31683 + 31683 + + J.J. Jones + J.J. + Jones + J.J. + Jones + + nfl.p.31683 + nfl.t.20 + New York Jets + NYJ + + 11 + + 84 + WR + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + WR + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 1 + + + 9 + 0 + + + 10 + 0 + + + 11 + 1 + + + 12 + 3 + + + 13 + 0 + + + 14 + 93 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 1 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.28223 + 28223 + + Senorise Perry + Senorise + Perry + Senorise + Perry + + nfl.p.28223 + nfl.t.15 + Miami Dolphins + Mia + + 11 + + 34 + RB + + https://s.yimg.com/iu/api/res/1.2/u9gprorfyYRRzjNUsq_6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28223.png + small + + https://s.yimg.com/iu/api/res/1.2/u9gprorfyYRRzjNUsq_6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28223.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 164 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31537 + 31537 + + Buddy Howell + Buddy + Howell + Buddy + Howell + + Q + Questionable + hamstring + nfl.p.31537 + nfl.t.34 + Houston Texans + Hou + + 10 + + 38 + RB + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + small + + https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 15 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24912 + 24912 + + Taiwan Jones + Taiwan + Jones + Taiwan + Jones + + IR + Injured Reserve + neck + nfl.p.24912 + nfl.t.2 + Buffalo Bills + Buf + + 11 + + 26 + RB + + https://s.yimg.com/iu/api/res/1.2/Qb7oHmtjAoi4pUCdphThvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24912.png + small + + https://s.yimg.com/iu/api/res/1.2/Qb7oHmtjAoi4pUCdphThvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24912.png + 0 + O + + RB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 89 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 2 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.5967 + 5967 + + Josh McCown + Josh + McCown + Josh + McCown + + nfl.p.5967 + nfl.t.20 + New York Jets + NYJ + + 11 + + 15 + QB + + https://s.yimg.com/iu/api/res/1.2/d3V0Rqi5rFDdS5e7Zt6b8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5967.png + small + + https://s.yimg.com/iu/api/res/1.2/d3V0Rqi5rFDdS5e7Zt6b8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5967.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 110 + + + 2 + 60 + + + 3 + 50 + + + 4 + 539 + + + 5 + 1 + + + 6 + 4 + + + 7 + 7 + + + 8 + 5 + + + 9 + 32 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 27 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.30284 + 30284 + + Nathan Peterman + Nathan + Peterman + Nathan + Peterman + + nfl.p.30284 + nfl.t.13 + Oakland Raiders + Oak + + 7 + + 18 + QB + + https://s.yimg.com/iu/api/res/1.2/1oaHInRR.3cdVhLAGa_fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30284.png + small + + https://s.yimg.com/iu/api/res/1.2/1oaHInRR.3cdVhLAGa_fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30284.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 81 + + + 2 + 44 + + + 3 + 37 + + + 4 + 296 + + + 5 + 1 + + + 6 + 7 + + + 7 + 7 + + + 8 + 10 + + + 9 + 50 + + + 10 + 1 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 2 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 13 + + + 80 + 0 + + + 81 + 4 + + + + + + 380.p.24797 + 24797 + + Blaine Gabbert + Blaine + Gabbert + Blaine + Gabbert + + concussion + nfl.p.24797 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/DNkFw5eT.pH6PzGABeR.Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24797.png + small + + https://s.yimg.com/iu/api/res/1.2/DNkFw5eT.pH6PzGABeR.Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24797.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 8 + + + 1 + 101 + + + 2 + 61 + + + 3 + 40 + + + 4 + 626 + + + 5 + 4 + + + 6 + 4 + + + 7 + 5 + + + 8 + 6 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 32 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.28839 + 28839 + + Taylor Heinicke + Taylor + Heinicke + Taylor + Heinicke + + IR + Injured Reserve + left elbow + nfl.p.28839 + nfl.t.29 + Carolina Panthers + Car + + 4 + + 6 + QB + + https://s.yimg.com/iu/api/res/1.2/UwXZkaSWJNBM5P3V5rCStA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28839.png + small + + https://s.yimg.com/iu/api/res/1.2/UwXZkaSWJNBM5P3V5rCStA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28839.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 6 + + + 1 + 57 + + + 2 + 35 + + + 3 + 22 + + + 4 + 320 + + + 5 + 1 + + + 6 + 3 + + + 7 + 2 + + + 8 + 5 + + + 9 + 31 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 19 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.30614 + 30614 + + Taysom Hill + Taysom + Hill + Taysom + Hill + + nfl.p.30614 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/ABf8hjN3mSNXcm_Xa9L1Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30614.png + small + + https://s.yimg.com/iu/api/res/1.2/ABf8hjN3mSNXcm_Xa9L1Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30614.png + 0 + O + + QB + + 1 + 1 + 1548030360 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 7 + + + 2 + 3 + + + 3 + 4 + + + 4 + 64 + + + 5 + 0 + + + 6 + 1 + + + 7 + 1 + + + 8 + 37 + + + 9 + 196 + + + 10 + 2 + + + 11 + 3 + + + 12 + 4 + + + 13 + 0 + + + 14 + 348 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 1 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 7 + + + 79 + 3 + + + 80 + 0 + + + 81 + 15 + + + + + + 380.p.27560 + 27560 + + Teddy Bridgewater + Teddy + Bridgewater + Teddy + Bridgewater + + nfl.p.27560 + nfl.t.18 + New Orleans Saints + NO + + 6 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/lqIMTw4.R9AxvaXvltYjMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27560.png + small + + https://s.yimg.com/iu/api/res/1.2/lqIMTw4.R9AxvaXvltYjMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27560.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 1 + 1 + + + season + 2018 + + + 0 + 5 + + + 1 + 23 + + + 2 + 14 + + + 3 + 9 + + + 4 + 118 + + + 5 + 1 + + + 6 + 1 + + + 7 + 2 + + + 8 + 11 + + + 9 + 5 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 8 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.24175 + 24175 + + Joe Webb III + Joe + Webb III + Joe + Webb III + + nfl.p.24175 + nfl.t.34 + Houston Texans + Hou + + 10 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/ghrLZk9_qwt_wsr3XWMfnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24175.png + small + + https://s.yimg.com/iu/api/res/1.2/ghrLZk9_qwt_wsr3XWMfnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24175.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 16 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 2 + + + 12 + 13 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 3 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.30248 + 30248 + + Joshua Dobbs + Joshua + Dobbs + Joshua + Dobbs + + nfl.p.30248 + nfl.t.23 + Pittsburgh Steelers + Pit + + 7 + + 5 + QB + + https://s.yimg.com/iu/api/res/1.2/eOAbf2yuV4N.dcAInW1_DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30248.png + small + + https://s.yimg.com/iu/api/res/1.2/eOAbf2yuV4N.dcAInW1_DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30248.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 12 + + + 2 + 6 + + + 3 + 6 + + + 4 + 43 + + + 5 + 0 + + + 6 + 1 + + + 7 + 0 + + + 8 + 4 + + + 9 + 11 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 2 + + + 80 + 0 + + + 81 + 2 + + + + + + 380.p.9547 + 9547 + + Brian Hoyer + Brian + Hoyer + Brian + Hoyer + + nfl.p.9547 + nfl.t.17 + New England Patriots + NE + + 11 + + 2 + QB + + https://s.yimg.com/iu/api/res/1.2/SFdTBUdRYBv5UAQo4xAcJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9547.png + small + + https://s.yimg.com/iu/api/res/1.2/SFdTBUdRYBv5UAQo4xAcJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9547.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 2 + + + 2 + 1 + + + 3 + 1 + + + 4 + 7 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 11 + + + 9 + -8 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 1 + + + + + + 380.p.29325 + 29325 + + Jacoby Brissett + Jacoby + Brissett + Jacoby + Brissett + + nfl.p.29325 + nfl.t.11 + Indianapolis Colts + Ind + + 9 + + 7 + QB + + https://s.yimg.com/iu/api/res/1.2/w52i7TmvS_rx7FvsaIa5_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29325.png + small + + https://s.yimg.com/iu/api/res/1.2/w52i7TmvS_rx7FvsaIa5_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202018/29325.png + 0 + O + + QB + + 1 + 1547491260 + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 4 + + + 1 + 4 + + + 2 + 2 + + + 3 + 2 + + + 4 + 2 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 7 + + + 9 + -7 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 1 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.26662 + 26662 + + Geno Smith + Geno + Smith + Geno + Smith + + nfl.p.26662 + nfl.t.24 + Los Angeles Chargers + LAC + + 8 + + 3 + QB + + https://s.yimg.com/iu/api/res/1.2/ngo7vbxebu9GTNDo5rEAEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26662.png + small + + https://s.yimg.com/iu/api/res/1.2/ngo7vbxebu9GTNDo5rEAEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26662.png + 0 + O + + QB + + + - + - + - + - + + + week + 17 + 0 + + + season + 2018 + + + 0 + 5 + + + 1 + 4 + + + 2 + 1 + + + 3 + 3 + + + 4 + 8 + + + 5 + 0 + + + 6 + 0 + + + 7 + 1 + + + 8 + 8 + + + 9 + 2 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 1 + + + 18 + 1 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.31029 + 31029 + + Derrius Guice + Derrius + Guice + Derrius + Guice + + IR + Injured Reserve + torn left ACL + nfl.p.31029 + nfl.t.28 + Washington Redskins + Was + + 4 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/rm1l7CiMpP7WGMnv08nF9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31029.png + small + + https://s.yimg.com/iu/api/res/1.2/rm1l7CiMpP7WGMnv08nF9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302018/31029.png + 0 + O + + RB + + + 50.2 + 5.7 + 9.6 + 0.19 + + + week + 17 + 5 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.24858 + 24858 + + DeMarco Murray + DeMarco + Murray + DeMarco + Murray + + NA + Inactive: Coach's Decision or Not on Roster + nfl.p.24858 + nfl.t.10 + Tennessee Titans + Ten + + 8 + + 29 + RB + + https://s.yimg.com/iu/api/res/1.2/kZVJaGr212KuELIqkXLYew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24858.png + small + + https://s.yimg.com/iu/api/res/1.2/kZVJaGr212KuELIqkXLYew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24858.png + 0 + O + + RB + + + 58.8 + 6.5 + 1.6 + 0.06 + + + week + 17 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25648 + 25648 + + Kai Forbath + Kai + Forbath + Kai + Forbath + + nfl.p.25648 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 2 + K + + https://s.yimg.com/iu/api/res/1.2/0SimSvpWpAM1StHFS3DTrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25648.png + small + + https://s.yimg.com/iu/api/res/1.2/0SimSvpWpAM1StHFS3DTrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25648.png + 0 + K + + K + + + 137.5 + 14.3 + 1.1 + 0.07 + + + week + 17 + 0 + + + season + 2018 + + + 0 + 3 + + + 19 + 0 + + + 20 + 2 + + + 21 + 1 + + + 22 + 1 + + + 23 + 0 + + + 24 + 0 + + + 25 + 0 + + + 26 + 0 + + + 27 + 0 + + + 28 + 1 + + + 29 + 3 + + + 30 + 0 + + + + + + 380.p.27570 + 27570 + + Jordan Matthews + Jordan + Matthews + Jordan + Matthews + + right hamstring + nfl.p.27570 + nfl.t.21 + Philadelphia Eagles + Phi + + 9 + + 80 + WR + + https://s.yimg.com/iu/api/res/1.2/7Rt1JskcsuF8spmHI_gKhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27570.png + small + + https://s.yimg.com/iu/api/res/1.2/7Rt1JskcsuF8spmHI_gKhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09102018/27570.png + 0 + O + + WR + + 1 + 1547430840 + + - + - + - + - + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 14 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 20 + + + 12 + 300 + + + 13 + 2 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 1 + + + 64 + 1 + + + 78 + 28 + + + 79 + 0 + + + 80 + 14 + + + 81 + 0 + + + + + + 380.p.27567 + 27567 + + Marqise Lee + Marqise + Lee + Marqise + Lee + + IR + Injured Reserve + left knee + nfl.p.27567 + nfl.t.30 + Jacksonville Jaguars + Jax + + 9 + + 11 + WR + + https://s.yimg.com/iu/api/res/1.2/UytH2yH.As4Up.HlerlvsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27567.png + small + + https://s.yimg.com/iu/api/res/1.2/UytH2yH.As4Up.HlerlvsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27567.png + 0 + O + + WR + + + 130.6 + 13.8 + 1.3 + 0.09 + + + week + 17 + 1 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.27624 + 27624 + + Jerick McKinnon + Jerick + McKinnon + Jerick + McKinnon + + IR + Injured Reserve + torn right ACL + nfl.p.27624 + nfl.t.25 + San Francisco 49ers + SF + + 11 + + 28 + RB + + https://s.yimg.com/iu/api/res/1.2/pNvJv736xkZPXGG3x2u7Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27624.png + small + + https://s.yimg.com/iu/api/res/1.2/pNvJv736xkZPXGG3x2u7Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27624.png + 0 + O + + RB + + + 33.7 + 3.9 + 27.4 + 0.62 + + + week + 17 + 8 + 0 + + + season + 2018 + + + 0 + 0 + + + 1 + 0 + + + 2 + 0 + + + 3 + 0 + + + 4 + 0 + + + 5 + 0 + + + 6 + 0 + + + 7 + 0 + + + 8 + 0 + + + 9 + 0 + + + 10 + 0 + + + 11 + 0 + + + 12 + 0 + + + 13 + 0 + + + 14 + 0 + + + 15 + 0 + + + 16 + 0 + + + 17 + 0 + + + 18 + 0 + + + 57 + 0 + + + 58 + 0 + + + 59 + 0 + + + 60 + 0 + + + 61 + 0 + + + 62 + 0 + + + 63 + 0 + + + 64 + 0 + + + 78 + 0 + + + 79 + 0 + + + 80 + 0 + + + 81 + 0 + + + + + + 380.p.25427 + 25427 + + Dan Bailey + Dan + Bailey + Dan + Bailey + + nfl.p.25427 + nfl.t.16 + Minnesota Vikings + Min + + 10 + + 5 + K + + https://s.yimg.com/iu/api/res/1.2/_oCOTezkTiuTYUIpiw2BjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25427.png + small + + https://s.yimg.com/iu/api/res/1.2/_oCOTezkTiuTYUIpiw2BjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272018/25427.png + 0 + K + + K + + + 117.6 + 12.5 + 1.2 + 0.52 + + + week + 17 + 13 + 0 + + + season + 2018 + + + 0 + 14 + + + 19 + 0 + + + 20 + 5 + + + 21 + 11 + + + 22 + 4 + + + 23 + 1 + + + 24 + 0 + + + 25 + 1 + + + 26 + 0 + + + 27 + 5 + + + 28 + 1 + + + 29 + 30 + + + 30 + 1 + + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + From f3b6679ee108cf7335e31fbd255a459180b494f4 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Mon, 21 Jan 2019 18:19:34 -0500 Subject: [PATCH 04/21] Some notes Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 2033a05..4a5b45b 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,18 @@ Using Python to have fun with fantasy sports! ### Setup (Still in development!) + +## YahoSports Data scraping: + +Query documentation can be found here: https://developer.yahoo.com/fantasysports/guide/ + +Basically, the query goes "game/nfl/something" + +Player resource: https://developer.yahoo.com/fantasysports/guide/#player-resource or https://developer.yahoo.com/fantasysports/guide/player-resource.html +Game resource: https://developer.yahoo.com/fantasysports/guide/game-resource.html + +You need to generate an auth file using your Yahoo developer credentials: https://developer.yahoo.com/apps/ and [YahooSports](https://github.com/thorrr/YahooSports) + ## Authors * **[Colin Leong]((https://github.com/cdleong))** From b03b954f25d5a57b6de5bcb91fd625d59ec5789a Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Mon, 21 Jan 2019 18:20:14 -0500 Subject: [PATCH 05/21] CDL: new function to download stat categories Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/yahoo_sports_interface.py | 40 ++++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/src/yahoo_sports_interface.py b/src/yahoo_sports_interface.py index 656fce5..c55583e 100644 --- a/src/yahoo_sports_interface.py +++ b/src/yahoo_sports_interface.py @@ -6,8 +6,9 @@ import YahooSports as ysp import math import xmltodict -from distutils import text_file +import pandas as pd import random +import pprint secure_random = random.SystemRandom() @@ -71,6 +72,17 @@ def download_players_data_list_of_dicts(self, position=""): one_big_list_of_players = self.combine_xml_strings_to_one_big_list_of_players(xml_results) return one_big_list_of_players + def download_stat_categories(self): + ''' + https://developer.yahoo.com/fantasysports/guide/game-resource.html + http://fantasysports.yahooapis.com/fantasy/v2/game/nfl/stat_categories + ''' + query = "game/nfl/stat_categories" + result = self.query_yahoo(query) + xml = self.get_xml_from_yahoo_result(result) + file_path = "../data/stat_categories.txt" + with open(file_path, "a") as text_file: + print(f"{xml}", file=text_file) def download_players_data_xml_strings(self, position=""): @@ -95,7 +107,7 @@ def download_players_data_xml_strings(self, position=""): print(f"i: {i}, start:{start}") # base query - query = "game/nfl/players;out=draft_analysis,percent_owned" + query = "game/nfl/players;out=draft_analysis,percent_owned,stats" # Just one position? if position: @@ -224,29 +236,27 @@ def download_player_data_for_each_position_from_yahoo_and_write_to_files(self): print("done") - - - - - - - - - - +def player_list_as_dataframe(player_ordereddict): + return pd.DataFrame.from_dict(player_ordereddict) def main(): auth_filename="auth_keys.txt" pyfsi = PyFantasyYahooSportsInterface(auth_filename) + pyfsi.download_stat_categories() # pyfsi.download_all_player_data_from_yahoo_and_write_to_files() # pyfsi.download_player_data_for_each_position_from_yahoo_and_write_to_files(pyfsi) - data_file_path = "../data/all_players.txt" - player_list = pyfsi.get_player_list_from_data_file(data_file_path) +# data_file_path = "../data/all_players.txt" +# player_list = pyfsi.get_player_list_from_data_file(data_file_path) + +# random_player = secure_random.choice(player_list) +# pprint.pprint(random_player) - print(secure_random.choice(player_list)) + #player_df = player_list_as_dataframe(player_list) + #print(player_df.info()) + #print(player_df.describe()) From 28fd986d26b8b2b213989d5fa83ff181c6fd0130 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Mon, 21 Jan 2019 18:24:16 -0500 Subject: [PATCH 06/21] CDL: stub class to plot average fantasy points by position Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/data_exploration/plot_average_score_by_position.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/data_exploration/plot_average_score_by_position.py diff --git a/src/data_exploration/plot_average_score_by_position.py b/src/data_exploration/plot_average_score_by_position.py new file mode 100644 index 0000000..9bc8c3a --- /dev/null +++ b/src/data_exploration/plot_average_score_by_position.py @@ -0,0 +1,9 @@ +import pandas as pd + +if __name__ == "__main__": + # TODO: + # Read in the XML + + # Calculate fantasy points, based on stats and league rules + + # graph From a72ad381b519c57f21b69e81312a7ccd8d660481 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Mon, 21 Jan 2019 18:39:28 -0500 Subject: [PATCH 07/21] CDL: tested out getting league-specific stats, giving me actual fantasy points scored Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/yahoo_sports_interface.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/yahoo_sports_interface.py b/src/yahoo_sports_interface.py index c55583e..a6bd6fe 100644 --- a/src/yahoo_sports_interface.py +++ b/src/yahoo_sports_interface.py @@ -85,6 +85,8 @@ def download_stat_categories(self): print(f"{xml}", file=text_file) + + def download_players_data_xml_strings(self, position=""): ''' Returns a list of XML strings. @@ -108,6 +110,8 @@ def download_players_data_xml_strings(self, position=""): # base query query = "game/nfl/players;out=draft_analysis,percent_owned,stats" + league_num=0 # TODO: ask user for this + league_query = f"league/nfl.l.{league_num}/players;out=draft_analysis,percent_owned,stats" # Just one position? if position: @@ -138,6 +142,11 @@ def league_specific_query(self, subquery="", league_number=None,): Returns an XML string :param subquery: :param league_number: + + see also https://developer.yahoo.com/fantasysports/guide/players-collection.html + and https://developer.yahoo.com/fantasysports/guide/league-resource.html#league-resource-key_format + 'league/{league_key}/players' + so for example "league/nfl.l.42" ''' if not league_number: league_number = input("League number is: ") @@ -245,7 +254,7 @@ def main(): pyfsi = PyFantasyYahooSportsInterface(auth_filename) pyfsi.download_stat_categories() -# pyfsi.download_all_player_data_from_yahoo_and_write_to_files() + pyfsi.download_all_player_data_from_yahoo_and_write_to_files("../data/all_league_players.txt") # pyfsi.download_player_data_for_each_position_from_yahoo_and_write_to_files(pyfsi) # data_file_path = "../data/all_players.txt" From ff3eaeea63c6a45b75bad60095eb0111a6e84c88 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Wed, 23 Jan 2019 20:40:58 -0500 Subject: [PATCH 08/21] CDL: some code cleanup for yahoo_sports_interface Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/yahoo_sports_interface.py | 59 ++++++++++------------------------- 1 file changed, 17 insertions(+), 42 deletions(-) diff --git a/src/yahoo_sports_interface.py b/src/yahoo_sports_interface.py index a6bd6fe..22a23fb 100644 --- a/src/yahoo_sports_interface.py +++ b/src/yahoo_sports_interface.py @@ -14,6 +14,7 @@ OPENING_XML_STRING = '''''' + class PyFantasyYahooSportsInterface(object): # CLASS CONSTANTS NFL_PLAYERS_PER_TEAM = 53 @@ -25,8 +26,7 @@ class PyFantasyYahooSportsInterface(object): MAX_NFL_PLAYERS = (NFL_PLAYERS_PER_TEAM*NUMBER_OF_NFL_TEAMS) + NUMBER_OF_DEFENSES MAX_RETURNED_PER_QUERY = 25 # determined experimentally MAX_QUERY = math.ceil(MAX_NFL_PLAYERS/MAX_RETURNED_PER_QUERY)*2 - POSSIBLE_POSITIONS = ["QB", "WR", "RB", "TE", "K" , "DEF"] - + POSSIBLE_POSITIONS = ["QB", "WR", "RB", "TE", "K", "DEF"] def __init__(self, auth_filename): ''' @@ -36,7 +36,6 @@ def __init__(self, auth_filename): self.auth_filename = auth_filename self.session = None - def connect(self): # Try connecting with saved session @@ -52,7 +51,6 @@ def connect(self): self.session = session - def query_yahoo(self, query): if self.session is None: self.connect() @@ -65,8 +63,6 @@ def query_yahoo(self, query): def get_xml_from_yahoo_result(self, result): return result.clean_text - - def download_players_data_list_of_dicts(self, position=""): xml_results = self.download_players_data_xml_strings(position) one_big_list_of_players = self.combine_xml_strings_to_one_big_list_of_players(xml_results) @@ -84,16 +80,11 @@ def download_stat_categories(self): with open(file_path, "a") as text_file: print(f"{xml}", file=text_file) - - - def download_players_data_xml_strings(self, position=""): ''' Returns a list of XML strings. :param position: ''' - - xml_results = [] count = PyFantasyYahooSportsInterface.MAX_RETURNED_PER_QUERY start = 0 @@ -101,7 +92,6 @@ def download_players_data_xml_strings(self, position=""): i = 0 more_players_to_retrieve = True - while i < PyFantasyYahooSportsInterface.MAX_QUERY and more_players_to_retrieve: start = i * count i += 1 @@ -110,8 +100,10 @@ def download_players_data_xml_strings(self, position=""): # base query query = "game/nfl/players;out=draft_analysis,percent_owned,stats" - league_num=0 # TODO: ask user for this - league_query = f"league/nfl.l.{league_num}/players;out=draft_analysis,percent_owned,stats" + +# league_num = 0 # TODO: ask user for league_num arg, use this if +# they provided one. +# league_query = f"league/nfl.l.{league_num}/players;out=draft_analysis,percent_owned,stats" # Just one position? if position: @@ -136,7 +128,6 @@ def download_players_data_xml_strings(self, position=""): return xml_results - def league_specific_query(self, subquery="", league_number=None,): ''' Returns an XML string @@ -150,15 +141,12 @@ def league_specific_query(self, subquery="", league_number=None,): ''' if not league_number: league_number = input("League number is: ") - query = "league/nfl.l."+str(league_number) +subquery # get league info + query = "league/nfl.l." + str(league_number) + subquery # get league info return self.query_yahoo(query) - def clear_text_file_and_write_multiple_xml_results(self, file_path, xml_results): - - - #clear it first + # clear it first open(file_path, 'w').close() # append @@ -166,15 +154,13 @@ def clear_text_file_and_write_multiple_xml_results(self, file_path, xml_results) for result in xml_results: print(f"{result}", file=text_file) - def parse_yahoo_xml_string_to_dict(self, xml_string): - #remove the first line, with the "" + # remove the first line, with the "" if OPENING_XML_STRING in xml_string: xml_string.replace(OPENING_XML_STRING, "") return xmltodict.parse(xml_string) - def get_player_list_from_xml_string(self, xml_string_to_parse): ''' :param xml_string_to_parse: @@ -189,38 +175,29 @@ def get_player_list_from_xml_string(self, xml_string_to_parse): return player_list - def combine_xml_strings_to_one_big_list_of_players(self, xml_strings): combined_player_list = [] - for xml_string in xml_strings: if xml_string: combined_player_list += self.get_player_list_from_xml_string(xml_string) return combined_player_list - def get_player_list_from_data_file(self, data_file_path): print(f"Getting data from {data_file_path}") with open(data_file_path, "r") as text_file: string_containing_multiple_xml_strings = text_file.read() - - #split on OPENING_XML_STRING + # split on OPENING_XML_STRING xml_strings = string_containing_multiple_xml_strings.split(OPENING_XML_STRING) combined_player_list = self.combine_xml_strings_to_one_big_list_of_players(xml_strings) print(f"Got {len(combined_player_list)} players") return combined_player_list - - - - - def download_all_player_data_from_yahoo_and_write_to_files(self, download_path="../data/all_players.txt"): ''' Download all the data to text files. @@ -229,16 +206,15 @@ def download_all_player_data_from_yahoo_and_write_to_files(self, download_path=" # experimentally determined that there's 2789 "players" in the Yahoo DB. xml_results = self.download_players_data_xml_strings() - self.clear_text_file_and_write_multiple_xml_results(download_path, xml_results) - def download_player_data_for_each_position_from_yahoo_and_write_to_files(self): # get a result for each position for position in PyFantasyYahooSportsInterface.POSSIBLE_POSITIONS: xml_results = self.download_players_data_xml_strings(position=position) - base_filename ="../data/"+ position + ".txt" + # TODO: arg? + base_filename = "../data/" + position + ".txt" for result in xml_results: self.clear_text_file_and_write_multiple_xml_results(base_filename, result) @@ -250,7 +226,8 @@ def player_list_as_dataframe(player_ordereddict): def main(): - auth_filename="auth_keys.txt" + # TODO: argparse - download or read? + auth_filename = "auth_keys.txt" pyfsi = PyFantasyYahooSportsInterface(auth_filename) pyfsi.download_stat_categories() @@ -263,11 +240,9 @@ def main(): # random_player = secure_random.choice(player_list) # pprint.pprint(random_player) - #player_df = player_list_as_dataframe(player_list) - #print(player_df.info()) - #print(player_df.describe()) - - +# player_df = player_list_as_dataframe(player_list) +# print(player_df.info()) +# print(player_df.describe()) if __name__ == "__main__": From 019c125c3377732865fabc8e16a08f601ff224c3 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 24 Jan 2019 00:44:13 -0500 Subject: [PATCH 09/21] CDL: player fantasy points scored in 2018 season Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- data/player_points.csv | 1185 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1185 insertions(+) create mode 100644 data/player_points.csv diff --git a/data/player_points.csv b/data/player_points.csv new file mode 100644 index 0000000..6ba89c6 --- /dev/null +++ b/data/player_points.csv @@ -0,0 +1,1185 @@ +,fullname,points,position +0,Adam Vinatieri,126.0,K +1,Phil Dawson,31.0,K +2,Sebastian Janikowski,128.0,K +3,Tom Brady,291.3,QB +4,Drew Brees,308.98,QB +5,Josh McCown,24.76,QB +6,Matt Bryant,108.0,K +7,Jason Witten,0.0,TE +8,Antonio Gates,47.3,TE +9,Eli Manning,250.96,QB +10,Larry Fitzgerald,116.68,WR +11,Philip Rivers,297.02,QB +12,Ben Roethlisberger,356.86,QB +13,Benjamin Watson,52.0,TE +14,Matt Schaub,0.1,QB +15,Alex Smith,143.0,QB +16,Aaron Rodgers,314.58,QB +17,Mike Nugent,26.0,K +18,Frank Gore,90.6,RB +19,Darren Sproles,46.0,RB +20,Derek Anderson,10.5,QB +21,Matt Cassel,2.66,QB +22,Ryan Fitzpatrick,177.84,QB +23,Nick Novak,0.0,K +24,Robbie Gould,139.0,K +25,Vernon Davis,50.7,TE +26,Jay Cutler,0.0,QB +27,Marcedes Lewis,3.9,TE +28,Kellen Clemens,0.0,QB +29,Anthony Fasano,0.0,TE +30,Stephen Gostkowski,138.0,K +31,Brandon Marshall,19.6,WR +32,Delanie Walker,5.2,TE +33,Adrian Peterson,169.0,RB +34,Ted Ginn Jr.,35.5,WR +35,Marshawn Lynch,64.0,RB +36,Greg Olsen,53.1,TE +37,Drew Stanton,0.0,QB +38,Brent Celek,0.0,TE +39,Nick Folk,0.0,K +40,Mason Crosby,145.0,K +41,Clark Harris,0.0,TE +42,Matt Moore,0.0,QB +43,Matt Prater,129.32,K +44,Eric Weems,0.0,WR +45,Matt Ryan,360.96,QB +46,Jonathan Stewart,1.7,RB +47,Joe Flacco,143.1,QB +48,Jordy Nelson,93.7,WR +49,DeSean Jackson,110.3,WR +50,Chad Henne,1.46,QB +51,Jamaal Charles,1.4,RB +52,Harry Douglas,0.0,WR +53,Matthew Slater,0.0,WR +54,Josh Johnson,53.6,QB +55,Pierre Garcon,34.6,WR +56,Danny Amendola,68.42,WR +57,Mike Tolbert,0.0,RB +58,Stephen Hauschka,106.0,K +59,Matthew Stafford,223.18,QB +60,Mark Sanchez,3.32,QB +61,Darrius Heyward-Bey,0.2,WR +62,Michael Crabtree,78.7,WR +63,Jeremy Maclin,0.0,WR +64,Kenny Britt,0.0,WR +65,LeSean McCoy,93.2,RB +66,Brandon Tate,0.0,WR +67,Mike Wallace,0.0,WR +68,Jared Cook,125.6,TE +69,Louis Murphy,0.0,WR +70,Zach Miller,0.0,TE +71,Cedric Peerman,0.0,RB +72,John Phillips,3.8,TE +73,Julian Edelman,133.42,WR +74,Ryan Succop,117.0,K +75,Graham Gano,82.0,K +76,Brian Hoyer,-0.52,QB +77,Chase Daniel,31.7,QB +78,Sam Bradford,16.7,QB +79,Jermaine Gresham,7.4,TE +80,Demaryius Thomas,97.7,WR +81,Dez Bryant,0.0,WR +82,Arrelious Benn,0.0,WR +83,Rob Gronkowski,84.2,TE +84,Golden Tate,108.9,WR +85,Ed Dickson,33.2,TE +86,Brandon LaFell,25.5,WR +87,Emmanuel Sanders,127.22,WR +88,Colt McCoy,30.18,QB +89,Eric Decker,0.0,WR +90,Andre Roberts,25.9,WR +91,Jimmy Graham,75.6,TE +92,Clay Harbor,0.0,TE +93,Michael Hoomanawanui,0.0,TE +94,Antonio Brown,219.7,WR +95,Joe Webb III,1.3,QB +96,Jeff Cumberland,0.0,TE +97,LeGarrette Blount,76.5,RB +98,Chris Ivory,65.0,RB +99,Logan Paulsen,15.1,TE +100,James Develin,30.9,RB +101,Cam Newton,295.6,QB +102,A.J. Green,103.4,WR +103,Julio Jones,212.9,WR +104,Blaine Gabbert,37.04,QB +105,Mark Ingram,121.5,RB +106,Andy Dalton,185.54,QB +107,Kyle Rudolph,87.4,TE +108,Lance Kendricks,23.0,TE +109,Shane Vereen,0.0,RB +110,Torrey Smith,33.0,WR +111,Greg Little,0.0,WR +112,Randall Cobb,48.3,WR +113,DeMarco Murray,0.0,RB +114,Stevan Ridley,11.8,RB +115,Ryan Mallett,0.0,QB +116,Luke Stocker,28.5,TE +117,Taiwan Jones,0.0,RB +118,Bilal Powell,49.3,RB +119,Julius Thomas,0.0,TE +120,Anthony Sherman,15.8,RB +121,Jacquizz Rodgers,45.0,RB +122,Dion Lewis,101.7,RB +123,T.J. Yates,0.0,QB +124,Jeremy Kerley,0.7,WR +125,Niles Paul,9.5,TE +126,Lee Smith,25.3,TE +127,Charles Clay,16.4,TE +128,Dwayne Harris,11.2,WR +129,Aldrick Robinson,53.1,WR +130,Tyrod Taylor,43.42,QB +131,Jordan Todman,0.0,RB +132,Virgil Green,27.0,TE +133,Doug Baldwin,91.8,WR +134,Dontrelle Inman,48.4,WR +135,Patrick DiMarco,7.1,RB +136,Scott Tolzien,0.0,QB +137,Chris Hogan,71.2,WR +138,Andre Holmes,16.2,WR +139,Kyle Nelson,0.0,TE +140,Patrick Scales,0.0,TE +141,Kamar Aiken,5.3,WR +142,Dan Bailey,99.0,K +143,Kai Forbath,16.0,K +144,Terrelle Pryor,37.1,WR +145,Andrew Luck,341.92,QB +146,Robert Griffin III,0.84,QB +147,Ryan Tannehill,150.96,QB +148,Michael Floyd,18.0,WR +149,Kendall Wright,0.0,WR +150,Brandon Weeden,-0.1,QB +151,Doug Martin,101.9,RB +152,Brian Quick,1.8,WR +153,Coby Fleener,0.0,TE +154,Alshon Jeffery,120.3,WR +155,Brock Osweiler,71.98,QB +156,Dwayne Allen,2.7,TE +157,DeVier Posey,0.0,WR +158,Russell Wilson,305.42,QB +159,Mohamed Sanu,116.4,WR +160,Nick Foles,79.22,QB +161,T.Y. Hilton,163.0,WR +162,Lamar Miller,147.6,RB +163,Travis Benjamin,28.7,WR +164,Kirk Cousins,292.12,QB +165,Robert Turbin,-0.7,RB +166,Orson Charles,2.3,TE +167,Jarius Wright,54.6,WR +168,Rhett Ellison,35.2,TE +169,Randy Bullock,106.0,K +170,Marvin Jones Jr.,80.8,WR +171,Greg Zuerlein,128.0,K +172,Alfred Morris,60.1,RB +173,Blair Walsh,0.0,K +174,James Hanna,0.0,TE +175,Rishard Matthews,2.4,WR +176,Brittan Golden,0.0,WR +177,Jermaine Kearse,43.1,WR +178,Sean McGrath,0.0,TE +179,Beau Brinkley,0.0,TE +180,Travaris Cadet,2.2,RB +181,Cole Beasley,85.2,WR +182,Lance Dunbar,0.0,RB +183,Brenton Bersin,0.0,WR +184,Josh Bellamy,19.7,WR +185,Griff Whalen,0.0,WR +186,Garrett Celek,21.0,TE +187,Giorgio Tavecchio,29.0,K +188,Derrick Coleman,2.0,RB +189,Austin Davis,0.0,QB +190,Brandon Bolden,26.4,RB +191,Derek Carrier,12.7,TE +192,Rod Streater,-1.1,WR +193,Deonte Thompson,16.1,WR +194,Case Keenum,229.9,QB +195,Phillip Supernaw,0.0,TE +196,Justin Tucker,160.0,K +197,Jamize Olawale,1.3,RB +198,Alex Tanney,0.0,QB +199,Josh Gordon,97.7,WR +200,Andrew DePaola,0.0,TE +201,Fozzy Whittaker,0.0,RB +202,Austin Johnson,0.0,RB +203,Darren Fells,29.7,TE +204,Tavon Austin,31.5,WR +205,EJ Manuel,0.0,QB +206,Tyler Eifert,23.9,TE +207,DeAndre Hopkins,218.5,WR +208,Cordarrelle Patterson,75.5,WR +209,Justin Hunter,2.1,WR +210,Zach Ertz,164.3,TE +211,Giovani Bernard,60.9,RB +212,Geno Smith,-1.48,QB +213,Robert Woods,179.6,WR +214,Gavin Escobar,0.0,TE +215,Le'Veon Bell,0.0,RB +216,Vance McDonald,83.0,TE +217,Eddie Lacy,0.0,RB +218,Christine Michael,0.9,RB +219,Travis Kelce,191.6,TE +220,Mike Glennon,10.96,QB +221,Terrance Williams,1.8,WR +222,Keenan Allen,163.1,WR +223,Marquise Goodwin,64.4,WR +224,Markus Wheaton,0.0,WR +225,Jordan Reed,65.8,TE +226,Knile Davis,0.0,RB +227,Matt Barkley,17.08,QB +228,Dion Sims,0.9,TE +229,Landry Jones,0.0,QB +230,Kyle Juszczyk,37.4,RB +231,Levine Toilolo,32.3,TE +232,Kenny Stills,97.42,WR +233,Chris Thompson,50.6,RB +234,Luke Willson,8.7,TE +235,Tavarres King,0.0,WR +236,Mike Gillislee,3.2,RB +237,Caleb Sturgis,39.0,K +238,Dustin Hopkins,121.0,K +239,Latavius Murray,109.9,RB +240,Kenjon Barner,7.4,RB +241,Mychal Rivera,0.0,TE +242,Andre Ellington,0.0,RB +243,Mike James,0.0,RB +244,Rex Burkhead,35.7,RB +245,Spencer Ware,59.0,RB +246,Cobi Hamilton,0.0,WR +247,Theo Riddick,55.5,RB +248,Ryan Griffin,30.5,TE +249,Brice Butler,12.0,WR +250,Tommy Bohanon,4.1,RB +251,Charles Johnson,0.0,WR +252,Chris Gragg,0.0,TE +253,Kerwynn Williams,0.0,RB +254,Marquess Wilson,0.0,WR +255,C.J. Anderson,62.4,RB +256,Ryan Griffin,0.0,QB +257,Josh Hill,24.5,TE +258,Tim Wright,0.0,TE +259,Russell Shepard,30.8,WR +260,Jaron Brown,46.6,WR +261,Brandon Williams,0.0,TE +262,Brandon McManus,106.0,K +263,Zach Line,17.5,RB +264,Benny Cunningham,2.9,RB +265,Tyler Bray,0.0,QB +266,Demetrius Harris,34.4,TE +267,Nick Williams,1.7,WR +268,MarQueis Gray,0.0,TE +269,Kevin McDermott,0.0,TE +270,Adam Thielen,194.3,WR +271,Jack Doyle,34.5,TE +272,Rashad Ross,0.0,WR +273,George Winn,0.0,RB +274,Brett Maher,138.0,K +275,Marlon Brown,0.0,WR +276,Matt McGloin,0.0,QB +277,James Winchester,0.0,TE +278,Blake Bortles,184.22,QB +279,Sammy Watkins,75.1,WR +280,Mike Evans,204.4,WR +281,Eric Ebron,156.2,TE +282,Odell Beckham Jr.,153.34,WR +283,Brandin Cooks,163.2,WR +284,Kelvin Benjamin,44.0,WR +285,Teddy Bridgewater,8.22,QB +286,Derek Carr,225.76,QB +287,Austin Seferian-Jenkins,15.0,TE +288,Marqise Lee,0.0,WR +289,Jordan Matthews,42.0,WR +290,Paul Richardson Jr.,39.1,WR +291,Jace Amaro,0.0,TE +292,Troy Niklas,0.0,TE +293,Davante Adams,218.6,WR +294,Jeremy Hill,3.1,RB +295,Cody Latimer,25.0,WR +296,Carlos Hyde,88.4,RB +297,Allen Robinson II,98.3,WR +298,Jimmy Garoppolo,51.02,QB +299,Jarvis Landry,136.12,WR +300,C.J. Fiedorowicz,0.0,TE +301,Charles Sims,0.0,RB +302,Josh Huff,0.0,WR +303,Donte Moncrief,82.8,WR +304,John Brown,101.9,WR +305,Terrance West,0.0,RB +306,Jerick McKinnon,0.0,RB +307,Richard Rodgers,0.7,TE +308,Devonta Freeman,9.1,RB +309,Bruce Ellington,28.6,WR +310,Martavis Bryant,26.9,WR +311,Logan Thomas,8.3,TE +312,De'Anthony Thomas,9.5,WR +313,James White,189.6,RB +314,Tom Savage,0.0,QB +315,Ryan Grant,39.4,WR +316,AJ McCarron,0.12,QB +317,Alfred Blue,77.3,RB +318,David Fales,0.0,QB +319,TJ Jones,31.0,WR +320,Matt Hazel,0.0,WR +321,Quincy Enunwa,48.9,WR +322,Jay Prosch,0.0,RB +323,Garrett Gilbert,1.6,QB +324,Michael Campanaro,0.0,WR +325,Jeff Janis,0.0,WR +326,James Wright,0.0,WR +327,Trey Burton,93.1,TE +328,David Fluellen,1.6,RB +329,Kapri Bibbs,45.8,RB +330,Bennie Fowler,25.9,WR +331,Allen Hurns,41.5,WR +332,Stephen Morris,0.0,QB +333,Cody Parkey,122.0,K +334,Erik Swoope,26.7,TE +335,Brandon Coleman,0.0,WR +336,Je'Ron Hamm,0.0,TE +337,Seantavius Jones,0.0,WR +338,Philly Brown,0.0,WR +339,Marcus Lucas,0.0,TE +340,Jeremy Butler,0.0,WR +341,Isaiah Crowell,119.7,RB +342,Ryan Hewitt,6.1,TE +343,Willie Snead IV,72.4,WR +344,Charcandrick West,9.6,RB +345,Albert Wilson,70.78,WR +346,Freddie Martino,0.0,WR +347,Roosevelt Nix,4.2,RB +348,Bernard Reedy,0.0,WR +349,Chandler Catanzaro,84.0,K +350,Damien Williams,75.6,RB +351,Keith Smith,2.3,RB +352,Orleans Darkwa,0.0,RB +353,Xavier Grimble,6.6,TE +354,George Atkinson III,0.0,RB +355,Chris Boswell,93.08,K +356,Anthony Denham,0.0,TE +357,Seth Roberts,61.9,WR +358,Scott Simonson,14.6,TE +359,Tyler Ott,0.0,TE +360,Senorise Perry,0.0,RB +361,Cairo Santos,67.0,K +362,Taylor Gabriel,84.9,WR +363,Cameron Brate,62.9,TE +364,Branden Oliver,0.0,RB +365,Fitzgerald Toussaint,0.0,RB +366,Jerome Cunningham,0.0,TE +367,Chris Manhertz,11.2,TE +368,Jason Myers,151.0,K +369,Jameis Winston,209.78,QB +370,Marcus Mariota,182.92,QB +371,Amari Cooper,140.5,WR +372,Kevin White,9.2,WR +373,Todd Gurley II,313.1,RB +374,DeVante Parker,36.9,WR +375,Melvin Gordon III,225.5,RB +376,Nelson Agholor,101.4,WR +377,Breshad Perriman,46.2,WR +378,Phillip Dorsett,49.9,WR +379,T.J. Yeldon,118.1,RB +380,Devin Smith,0.0,WR +381,Devin Funchess,78.9,WR +382,Ameer Abdullah,0.9,RB +383,Maxx Williams,21.1,TE +384,Clive Walford,0.0,TE +385,Tyler Lockett,165.4,WR +386,Jaelen Strong,0.0,WR +387,Tevin Coleman,161.6,RB +388,Garrett Grayson,0.0,QB +389,Chris Conley,59.4,WR +390,Duke Johnson Jr.,85.0,RB +391,Tyler Kroft,3.6,TE +392,David Johnson,196.6,RB +393,Sammie Coates Jr.,1.2,WR +394,Sean Mannion,0.02,QB +395,Jeff Heuerman,40.1,TE +396,Ty Montgomery,46.3,RB +397,Matt Jones,0.0,RB +398,Bryce Petty,0.0,QB +399,Jamison Crowder,53.8,WR +400,Jeremy Langford,2.5,RB +401,Justin Hardy,25.3,WR +402,Jalston Fowler,0.0,RB +403,Blake Bell,6.7,TE +404,Vince Mayle,0.0,TE +405,Javorius Allen,58.6,RB +406,Mike Davis,102.8,RB +407,DeAndre Smelter,0.0,WR +408,Rashad Greene Sr.,4.0,WR +409,MyCole Pruitt,16.2,TE +410,Stefon Diggs,164.3,WR +411,Brett Hundley,0.0,QB +412,Jay Ajayi,38.4,RB +413,C.J. Uzomah,61.9,TE +414,J.J. Nelson,6.4,WR +415,Jesse James,54.3,TE +416,Kenny Bell,0.0,WR +417,Michael Burton,0.6,RB +418,Nick Boyle,21.3,TE +419,James O'Shaughnessy,21.4,TE +420,Cameron Artis-Payne,14.4,RB +421,Kaelin Clay,-2.0,WR +422,Geremy Davis,0.0,WR +423,Nick O'Leary,14.6,TE +424,Malcolm Johnson,0.0,RB +425,Randall Telfer,0.0,TE +426,A.J. Derby,10.8,TE +427,Darren Waller,9.6,TE +428,Aaron Ripkowski,0.0,RB +429,Neal Sterling,4.7,TE +430,Ben Koyack,0.0,TE +431,Marcus Murphy,27.6,RB +432,Tre McBride,0.0,WR +433,Geoff Swaim,30.2,TE +434,Trevor Siemian,0.0,QB +435,Rasheed Bailey,0.0,WR +436,Raheem Mostert,32.6,RB +437,Eric Tomlinson,7.2,TE +438,Eli Rogers,9.5,WR +439,Josh Lambo,87.0,K +440,Brian Parker,3.3,TE +441,Tyrell Williams,96.8,WR +442,Cameron Meredith,15.4,WR +443,Thomas Rawls,0.0,RB +444,Rod Smith,24.7,RB +445,Jordan Taylor,0.0,WR +446,Damiere Byrd,0.8,WR +447,Quan Bray,0.0,WR +448,Dres Anderson,0.0,WR +449,DeAndrew White,0.0,WR +450,Gannon Sinclair,0.0,TE +451,Shane Wynn,0.0,WR +452,Taylor Heinicke,16.9,QB +453,Jordan Leslie,0.0,WR +454,Corey Grant,10.7,RB +455,Trey Williams,0.0,RB +456,Akeem Hunt,0.0,RB +457,Matt LaCosse,31.0,TE +458,Zach Zenner,50.1,RB +459,Khari Lee,0.5,TE +460,John Crockett,0.0,RB +461,Wes Saxton,0.0,TE +462,DeAndre Carter,20.3,WR +463,Terrence Magee,0.0,RB +464,Gabe Holmes,0.0,TE +465,Jake Kumerow,16.3,WR +466,Matt Lengel,7.7,TE +467,Malcolm Brown,34.4,RB +468,Bradley Marquez,0.0,WR +469,Lucky Whitehead,0.0,WR +470,Darius Jennings,17.14,WR +471,Will Tye,0.0,TE +472,Tim Semisch,0.0,TE +473,Donteea Dye,0.0,WR +474,Adam Humphries,112.7,WR +475,Mack Brown,0.0,RB +476,Manasseh Garner,0.0,TE +477,Daniel Brown,0.0,TE +478,Kasen Williams,0.0,WR +479,Terrell Watson,0.0,RB +480,Bronson Hill,0.0,RB +481,Ross Travis,0.0,TE +482,Jared Goff,322.32,QB +483,Carson Wentz,199.66,QB +484,Ezekiel Elliott,252.1,RB +485,Corey Coleman,7.6,WR +486,Will Fuller V,74.3,WR +487,Josh Doctson,65.2,WR +488,Laquon Treadwell,36.2,WR +489,Paxton Lynch,0.0,QB +490,Hunter Henry,0.0,TE +491,Sterling Shepard,116.5,WR +492,Derrick Henry,186.36,RB +493,Michael Thomas,190.5,WR +494,Christian Hackenberg,0.0,QB +495,Tyler Boyd,145.1,WR +496,Roberto Aguayo,0.0,K +497,Kenyan Drake,153.2,RB +498,Austin Hooper,92.0,TE +499,Braxton Miller,0.0,WR +500,Leonte Carroo,16.8,WR +501,C.J. Prosise,1.9,RB +502,Jacoby Brissett,-0.62,QB +503,Cody Kessler,40.66,QB +504,Nick Vannett,44.9,TE +505,Connor Cook,0.0,QB +506,Chris Moore,27.3,WR +507,Tyler Higbee,41.2,TE +508,Malcolm Mitchell,0.0,WR +509,Ricardo Louis,0.0,WR +510,Pharoh Cooper,0.0,WR +511,Tyler Ervin,3.5,RB +512,Demarcus Robinson,52.8,WR +513,Kenneth Dixon,48.4,RB +514,Dak Prescott,293.9,QB +515,Devontae Booker,49.8,RB +516,Seth DeValve,13.4,TE +517,Cardale Jones,0.0,QB +518,Tajae Sharpe,45.2,WR +519,DeAndre Washington,10.4,RB +520,Paul Perkins,0.0,RB +521,Jordan Howard,160.0,RB +522,Wendell Smallwood,89.4,RB +523,Jonathan Williams,0.1,RB +524,Kevin Hogan,0.0,QB +525,Trevor Davis,0.0,WR +526,Tyreek Hill,247.0,WR +527,Alex Collins,93.6,RB +528,Rashard Higgins,79.2,WR +529,Andy Janovich,17.7,RB +530,Temarrick Hemingway,0.0,TE +531,Moritz Boehringer,0.0,TE +532,Keenan Reynolds,0.0,WR +533,Jerell Adams,0.0,TE +534,Jakeem Grant,51.3,WR +535,Nate Sudfeld,4.68,QB +536,David Morgan,3.6,TE +537,Jake Rudock,0.0,QB +538,Kolby Listenbee,0.0,WR +539,Danny Vitale,0.2,RB +540,Derek Watt,1.3,RB +541,Cody Core,24.0,WR +542,Brandon Allen,0.0,QB +543,Michael Thomas,0.0,WR +544,Jeff Driskel,87.12,QB +545,Aaron Burbridge,0.0,WR +546,Darius Jackson,1.6,RB +547,Rico Gathers,4.5,TE +548,Brandon Doughty,0.0,QB +549,Devin Lucien,0.0,WR +550,Demarcus Ayers,0.0,WR +551,Daniel Braverman,0.0,WR +552,Thomas Duarte,0.0,TE +553,Dwayne Washington,15.4,RB +554,Daniel Lasco II,0.0,RB +555,Devin Fuller,0.0,WR +556,Charone Peake,2.5,WR +557,Keith Marshall,0.0,RB +558,Beau Sandland,0.0,TE +559,Canaan Severin,0.0,WR +560,Jake McGee,0.0,TE +561,Braedon Bowman,0.0,TE +562,Kenneth Farrow,0.0,RB +563,Jamaal Jones,0.0,WR +564,Matt Weiser,0.0,TE +565,Dom Williams,0.0,WR +566,Kyle Carter,0.0,TE +567,Jhurell Pressley,0.0,RB +568,Joel Stave,0.0,QB +569,Peyton Barber,130.3,RB +570,Alan Cross,0.9,TE +571,Russell Hansbrough,0.0,RB +572,Hakeem Valles,1.1,TE +573,Josh Ferguson,0.0,RB +574,Mekale McKay,0.0,WR +575,Chester Rogers,64.1,WR +576,Tevaun Smith,0.0,WR +577,Mose Frazier,0.0,WR +578,Henry Krieger-Coble,0.0,TE +579,Kalif Raymond,0.0,WR +580,Maurice Harris,31.4,WR +581,Malachi Jones,0.0,WR +582,J.D. McKissic,0.8,RB +583,Joshua Perkins,6.7,TE +584,Nick Rose,0.0,K +585,Brandon Wilds,1.5,RB +586,J.P. Holtz,0.0,TE +587,Marcus Johnson,16.0,WR +588,Cayleb Jones,0.0,WR +589,Byron Marshall,3.9,RB +590,Hunter Sharp,0.0,WR +591,Paul Turner,0.0,WR +592,Rob Kelley,0.8,RB +593,Joe Kerridge,0.0,RB +594,Tra Carson,0.0,RB +595,Alex Erickson,16.9,WR +596,Alonzo Russell,0.0,WR +597,Taylor Bertolet,0.0,K +598,Aaron Green,0.0,RB +599,Geronimo Allison,42.3,WR +600,Joe Callahan,0.0,QB +601,David Grinnage,6.1,TE +602,Nelson Spruce,0.0,WR +603,Wil Lutz,151.0,K +604,Devon Cajuste,0.0,TE +605,Jace Billingsley,0.0,WR +606,Bryce Treggs,0.0,WR +607,Cole Wick,0.0,TE +608,Robby Anderson,106.4,WR +609,Stephen Anderson,0.0,TE +610,Jalin Marshall,0.0,WR +611,Ka'imi Fairbairn,170.0,K +612,Ross Martin,0.0,K +613,Tevin Jones,0.0,WR +614,Lawrence Thomas,0.0,RB +615,Jason Vander Laan,0.0,TE +616,Tre Madden,3.8,RB +617,Tanner McEvoy,0.0,WR +618,Marshall Koehn,0.0,K +619,Rashawn Scott,0.0,WR +620,Brandon Shippen,0.0,WR +621,Tommylee Lewis,11.0,WR +622,Roger Lewis Jr.,0.0,WR +623,Ryan Malleck,0.0,TE +624,K.J. Maye,0.0,WR +625,Darius Powe,0.0,WR +626,Josh Woodrum,0.0,QB +627,D.J. Foster,0.0,RB +628,Bryce Williams,0.0,TE +629,Andy Jones,14.0,WR +630,Marcus Tucker,0.0,WR +631,Elijhaa Penny,7.5,RB +632,Ben Braunecker,4.2,TE +633,Jonathan Brown,0.0,K +634,Alex Ellis,0.0,TE +635,Aldrick Rosas,141.0,K +636,C.J. Ham,9.3,RB +637,K.J. Brent,0.0,WR +638,Johnny Holton,0.0,WR +639,Max McCaffrey,0.0,WR +640,Ryan O'Malley,0.0,TE +641,Jaydon Mickens,0.0,WR +642,Jalen Simmons,0.0,RB +643,Jalen Richard,88.6,RB +644,Jake Lampman,0.0,WR +645,Austin Traylor,0.0,TE +646,Marquis Bundy,0.0,WR +647,Marvin Hall,20.9,WR +648,Garrett Griffin,0.0,TE +649,Sam Ficken,13.0,K +650,Kendal Thompson,0.0,WR +651,Troymaine Pope,0.0,RB +652,Cyril Grayson Jr.,0.0,WR +653,Mo Alie-Cox,25.3,TE +654,Mitchell Trubisky,275.02,QB +655,Leonard Fournette,98.4,RB +656,Corey Davis,118.6,WR +657,Mike Williams,137.2,WR +658,Christian McCaffrey,278.5,RB +659,John Ross,63.9,WR +660,Patrick Mahomes,429.08,QB +661,Deshaun Watson,340.7,QB +662,O.J. Howard,86.5,TE +663,Evan Engram,81.3,TE +664,David Njoku,87.9,TE +665,Zay Jones,109.2,WR +666,Curtis Samuel,97.8,WR +667,Dalvin Cook,112.0,RB +668,Gerald Everett,53.6,TE +669,Adam Shaheen,12.8,TE +670,Joe Mixon,200.4,RB +671,DeShone Kizer,7.38,QB +672,JuJu Smith-Schuster,185.9,WR +673,Alvin Kamara,273.2,RB +674,Cooper Kupp,95.1,WR +675,Taywan Taylor,50.6,WR +676,ArDarius Stewart,0.0,WR +677,Carlos Henderson,0.0,WR +678,Chris Godwin,126.2,WR +679,Kareem Hunt,204.2,RB +680,Davis Webb,0.0,QB +681,D'Onta Foreman,8.7,RB +682,Kenny Golladay,137.1,WR +683,Chad Williams,24.0,WR +684,Jonnu Smith,43.8,TE +685,C.J. Beathard,81.98,QB +686,James Conner,225.0,RB +687,Amara Darboh,0.0,WR +688,Dede Westbrook,113.5,WR +689,Samaje Perine,3.7,RB +690,Josh Reynolds,71.0,WR +691,Mack Hollins,0.0,WR +692,Tarik Cohen,162.94,RB +693,Joe Williams,0.0,RB +694,Michael Roberts,28.0,TE +695,Josh Malone,1.2,WR +696,Donnel Pumphrey,0.0,RB +697,Ryan Switzer,33.4,WR +698,Jamaal Williams,87.4,RB +699,Joshua Dobbs,1.82,QB +700,Jehu Chesson,0.3,WR +701,Wayne Gallman Jr.,30.5,RB +702,Chad Hansen,0.0,WR +703,Marlon Mack,161.1,RB +704,Jake Butt,8.5,TE +705,George Kittle,170.7,TE +706,Jordan Leggett,17.4,TE +707,Jake Elliott,122.0,K +708,Jeremy Sprinkle,10.1,TE +709,Brian Hill,14.6,RB +710,Jeremy McNichols,0.4,RB +711,Shelton Gibson,4.8,WR +712,Nathan Peterman,19.84,QB +713,Isaiah McKenzie,34.5,WR +714,Eric Saubert,4.8,TE +715,DeAngelo Yancey,0.0,WR +716,Trent Taylor,29.5,WR +717,T.J. Logan,3.9,RB +718,Aaron Jones,145.4,RB +719,Elijah McGuire,66.9,RB +720,Alex Armah,14.0,RB +721,Bucky Hodges,0.0,TE +722,Sam Rogers,0.0,RB +723,De'Angelo Henderson,-0.1,RB +724,Robert Davis,0.0,WR +725,Brad Kaaya,0.0,QB +726,Stacy Coley,0.0,WR +727,Zane Gonzalez,41.0,K +728,David Moore,75.0,WR +729,Harrison Butker,147.0,K +730,Isaiah Ford,0.0,WR +731,Devante Mays,0.0,RB +732,Noah Brown,5.4,WR +733,Marquez Williams,0.0,RB +734,Elijah Hood,0.0,RB +735,Khalfani Muhammad,0.0,RB +736,Malachi Dupre,0.0,WR +737,Chris Carson,181.4,RB +738,Mason Schreck,0.0,TE +739,Matt Dayes,0.0,RB +740,Chad Kelly,-0.1,QB +741,Justin Davis,1.9,RB +742,Johnny Mundt,0.5,TE +743,Austin Duke,0.0,WR +744,Fred Ross Jr.,0.0,WR +745,Scott Orndoff,0.0,TE +746,Amba Etta-Tawo,0.0,WR +747,Keelan Cole,51.1,WR +748,Tim Cook,0.0,RB +749,Travin Dural,0.0,WR +750,Sean Culkin,2.4,TE +751,Austin Ekeler,129.8,RB +752,Andre Patton,0.0,WR +753,Artavis Scott,0.0,WR +754,Josiah Price,0.0,TE +755,Deante Burton,0.0,WR +756,Alek Torgersen,0.0,QB +757,Antony Auclair,4.8,TE +758,Thomas Sperbeck,0.0,WR +759,Bobo Wilson,5.2,WR +760,Carlton Agudosi,0.0,WR +761,Krishawn Hogan,0.0,WR +762,Ricky Seals-Jones,40.3,TE +763,James Summers,0.0,RB +764,Zach Pascal,39.8,WR +765,Tim White,1.4,WR +766,Tim Patrick,37.2,WR +767,Quincy Adeboyejo,0.0,WR +768,C.J. Board,0.0,WR +769,Taquan Mizzell,15.4,RB +770,Ricky Ortiz,1.1,RB +771,Dalton Crossan,0.0,RB +772,Darrell Daniels,0.0,TE +773,Trey Griffey,0.0,WR +774,Bug Howard,0.0,WR +775,Colin Jeter,0.0,TE +776,JoJo Natson Jr.,-2.0,WR +777,Brandon Radcliff,0.0,RB +778,Phillip Walker,0.0,QB +779,Victor Bolden Jr.,1.0,WR +780,Kendrick Bourne,72.7,WR +781,Matt Breida,135.5,RB +782,K.D. Cannon,0.0,WR +783,Cole Hikutini,0.0,TE +784,Nick Mullens,133.48,QB +785,Brisly Estime,0.0,WR +786,Anthony Firkser,28.5,TE +787,Cethan Carter,0.0,TE +788,Jarveon Williams,0.0,RB +789,Jason Croom,33.9,TE +790,Brandon Reilly,0.0,WR +791,Keith Towbridge,0.0,TE +792,Michael Clark,0.0,WR +793,Montay Crockett,0.0,WR +794,Taysom Hill,31.56,QB +795,Pharaoh Brown,0.0,TE +796,Keon Hatcher,0.8,WR +797,Anthony Kukwa,0.0,TE +798,Isaac Whitney,0.0,WR +799,Malcolm Lewis,0.0,WR +800,Drew Morgan,0.0,WR +801,Francis Owusu,0.0,WR +802,De'Veon Smith,0.0,RB +803,Damore'ea Stringfellow,0.0,WR +804,Austin Carr,21.7,WR +805,LeShun Daniels Jr.,0.0,RB +806,Cody Hollister,0.0,WR +807,Jacob Hollister,5.2,TE +808,Gehrig Dieter,2.2,WR +809,Marcus Kemp,0.7,WR +810,Emanuel Byrd,0.0,TE +811,Devine Redding,0.0,RB +812,Corey Clement,59.1,RB +813,Greg Ward Jr.,0.0,WR +814,Joel Bouagnon,0.0,RB +815,Tanner Gentry,0.0,WR +816,Kermit Whitfield,0.0,WR +817,Keeon Johnson,0.0,WR +818,Travis Rudolph,0.0,WR +819,Shane Smith,0.0,RB +820,Colin Thompson,0.0,TE +821,Tyler Ferguson,0.0,QB +822,Akeem Judd,0.0,RB +823,Billy Brown,0.0,TE +824,Algernon Brown,0.0,RB +825,Tyrone Swoopes,2.3,TE +826,Brandon Barnes,0.0,TE +827,Dontez Ford,0.0,WR +828,Tion Green,0.0,RB +829,Robert Tonyan,13.7,TE +830,Brian Brown,0.0,WR +831,Blake Jarwin,48.7,TE +832,Cooper Rush,0.0,QB +833,Evan Baylis,0.0,TE +834,Zach Conque,0.0,TE +835,Riley McCarron,-2.0,WR +836,Kyle Sloter,0.0,QB +837,Reggie Davis,0.0,WR +838,Trey Edmunds,0.0,RB +839,Dare Ogunbowale,0.0,RB +840,Chris Thompson,0.0,WR +841,Justin Thomas,0.0,WR +842,Lenard Tillery,0.0,RB +843,Colby Pearson,0.0,WR +844,Alex Gray,0.0,TE +845,Dan Arnold,21.0,WR +846,Lance Lenoir,0.0,WR +847,Fred Brown,0.0,WR +848,Adam Zaruba,0.0,TE +849,Darius Victor,0.0,RB +850,Marvin Bracy,0.0,WR +851,Dan Williams III,0.0,WR +852,Rashard Davis,0.0,WR +853,Justice Liggins,0.0,WR +854,River Cracraft,2.4,WR +855,Kent Taylor,0.0,TE +856,Jevoni Robinson,0.0,TE +857,Brandon Zylstra,2.3,WR +858,Chris Bazile,0.0,TE +859,Lamar Atkins,0.0,WR +860,Baker Mayfield,254.1,QB +861,Saquon Barkley,294.8,RB +862,Sam Darnold,183.4,QB +863,Josh Allen,220.06,QB +864,Josh Rosen,126.92,QB +865,D.J. Moore,102.0,WR +866,Hayden Hurst,22.3,TE +867,Calvin Ridley,142.8,WR +868,Rashaad Penny,61.4,RB +869,Sony Michel,132.1,RB +870,Lamar Jackson,160.54,QB +871,Nick Chubb,174.5,RB +872,Ronald Jones II,13.7,RB +873,Courtland Sutton,94.3,WR +874,Mike Gesicki,18.2,TE +875,Kerryon Johnson,107.4,RB +876,Dante Pettis,76.5,WR +877,Christian Kirk,80.5,WR +878,Dallas Goedert,57.4,TE +879,Anthony Miller,87.22,WR +880,Derrius Guice,0.0,RB +881,James Washington,27.7,WR +882,D.J. Chark Jr.,15.4,WR +883,Royce Freeman,87.3,RB +884,Mason Rudolph,0.0,QB +885,Michael Gallup,64.7,WR +886,Mark Andrews,73.2,TE +887,Tre'Quan Smith,72.7,WR +888,Jordan Akins,22.5,TE +889,Ian Thomas,45.3,TE +890,Keke Coutee,34.7,WR +891,Nyheim Hines,97.9,RB +892,Antonio Callaway,89.3,WR +893,Chris Herndon,74.2,TE +894,Kyle Lauletta,-1.2,QB +895,Mark Walton,7.5,RB +896,DaeSean Hamilton,36.3,WR +897,Will Dissly,27.6,TE +898,Durham Smythe,5.0,TE +899,Ito Smith,70.7,RB +900,Kalen Ballage,28.7,RB +901,Jaleel Scott,0.0,WR +902,J'Mon Moore,-0.5,WR +903,Chase Edmonds,43.1,RB +904,Dalton Schultz,11.6,TE +905,Justin Watson,0.5,WR +906,Troy Fumagalli,0.0,TE +907,Tyler Conklin,7.7,TE +908,Reece Fountain,0.0,WR +909,Jordan Lasley,0.0,WR +910,Jaylen Samuels,63.5,RB +911,Daniel Carlson,90.0,K +912,Jordan Wilkins,44.1,RB +913,Mike White,0.0,QB +914,Marquez Valdes-Scantling,73.0,WR +915,John Kelly,10.1,RB +916,Damion Ratley,14.4,WR +917,Deon Cain,0.0,WR +918,Ray-Ray McCloud III,2.0,WR +919,Dylan Cantrell,0.0,WR +920,Russell Gage,6.3,WR +921,Luke Falk,0.0,QB +922,Boston Scott,0.0,RB +923,Tanner Lee,0.0,QB +924,Trenton Cannon,31.7,RB +925,Equanimeous St. Brown,33.3,WR +926,Cedrick Wilson,0.0,WR +927,Braxton Berrios,0.0,WR +928,Jordan Thomas,45.5,TE +929,Danny Etling,0.0,QB +930,Alex McGough,0.0,QB +931,Javon Wims,3.2,WR +932,David Williams,3.6,RB +933,Marcell Ateman,21.4,WR +934,Jason Sanders,98.0,K +935,Bo Scarbrough,0.0,RB +936,Nick Bawden,0.0,RB +937,Richie James Jr.,23.0,WR +938,Logan Woodside,0.0,QB +939,Ryan Izzo,0.0,TE +940,Justin Jackson,46.1,RB +941,Auden Tate,3.5,WR +942,Austin Proehl,0.0,WR +943,Trey Quinn,13.5,WR +944,Jeff Badet,0.0,WR +945,Mike Boone,4.8,RB +946,Armanti Foreman,0.0,WR +947,Tyler Hoppes,0.0,TE +948,Kamryn Pettway,0.0,RB +949,Peter Pujals,0.0,QB +950,Korey Robertson,0.0,WR +951,Roc Thomas,5.1,RB +952,Jake Wieneke,0.0,WR +953,Andre Levrone,0.0,WR +954,Jaelon Acklin,0.0,WR +955,Austin Allen,0.0,QB +956,Sergio Bailey II,0.0,WR +957,Donnie Ernsberger,0.0,TE +958,Tanner Hudson,0.0,RB +959,Trevor Moore,0.0,K +960,Allen Lazard,0.7,WR +961,Dorren Miller,0.0,WR +962,Erv Philips,0.0,WR +963,Jason Reese,0.0,TE +964,Shaun Wilson,3.4,RB +965,Dalton Sturm,0.0,QB +966,Jordan Chunn,0.0,RB +967,Malik Earl,0.0,WR +968,Marchie Murdock,0.0,WR +969,David Wells,0.0,TE +970,Alec Bloom,0.0,TE +971,Kyle Allen,26.54,QB +972,Reggie Bonnafon,0.0,RB +973,Charles Kanoff,0.0,QB +974,Matt McCrane,36.0,K +975,Austin Ramesh,0.0,RB +976,Trent Sherfield,27.0,WR +977,Jalen Tolliver,3.7,WR +978,Jonah Trinnaman,0.0,WR +979,Andrew Vollert,0.0,TE +980,Corey Willis,0.0,WR +981,Steven Dunbar Jr.,0.0,WR +982,Ross Dwelley,1.4,TE +983,Jack Heneghan,0.0,QB +984,Christopher Ezeala,0.0,RB +985,Kurt Benkert,0.0,QB +986,Demario Richard,0.0,RB +987,Justin Crawford,0.0,RB +988,Malik Williams,0.0,RB +989,Daniel Marx,0.0,RB +990,Luke McNitt,0.0,RB +991,Jake Roh,0.0,TE +992,Troy Mangen,0.0,TE +993,Christian Blake,0.0,WR +994,Detrich Clark,0.0,WR +995,Devin Gray,0.0,WR +996,Dontez Byrd,0.0,WR +997,Lamar Jordan,0.0,WR +998,David Marvin,0.0,K +999,Christian Scotland-Williamson,0.0,TE +1000,J.T. Barrett IV,0.0,QB +1001,Michael Badgley,79.0,K +1002,Steve Ishmael,0.0,WR +1003,John Diarse,0.0,WR +1004,Phillip Lindsay,187.8,RB +1005,Jimmy Williams III,0.0,WR +1006,Ricky Jeune,0.0,WR +1007,LaQuvionte Gonzalez,0.0,WR +1008,Steven Mitchell Jr.,0.0,WR +1009,Jeff Wilson Jr.,32.4,RB +1010,Martez Carter,0.0,RB +1011,Simmie Cobbs Jr.,0.0,WR +1012,Shay Fields,0.0,WR +1013,Matt Flanagan,1.4,TE +1014,Mikah Holder,0.0,WR +1015,De'Mornay Pierson-El,0.0,WR +1016,Cam Sims,0.0,WR +1017,Elijah Wellman,0.0,RB +1018,Nate Wozniak,0.0,TE +1019,Mark Thompson,0.0,RB +1020,Gus Edwards,87.8,RB +1021,De'Lance Turner,2.1,RB +1022,Nick Keizer,0.0,TE +1023,Tim Boyle,0.0,QB +1024,Kevin Rader,0.0,TE +1025,Dimitri Flowers,0.0,RB +1026,Evan Berry,0.0,WR +1027,Dontrell Hilliard,9.5,RB +1028,Da'Mari Scott,0.0,WR +1029,Derrick Willies,6.1,WR +1030,Ka'Raun White,0.0,WR +1031,Caleb Scott,0.0,WR +1032,Taj Williams,0.0,WR +1033,Marcus Martin,0.0,RB +1034,Khalid Hill,0.0,RB +1035,Marcus Baugh,0.0,TE +1036,Saeed Blacknall,0.0,WR +1037,Eddy Pineiro,0.0,K +1038,Nick Sharga,0.0,RB +1039,Jarvion Franklin,0.0,RB +1040,Quadree Henderson,0.0,WR +1041,Chase Litton,0.0,QB +1042,Blake Mack,0.0,TE +1043,Elijah Marks,0.0,WR +1044,J.D. Moore,0.0,RB +1045,Byron Pringle,0.0,WR +1046,Darrel Williams,13.1,RB +1047,Ryan Smith,0.0,TE +1048,Julian Allen,0.0,TE +1049,Janarion Grant,0.0,WR +1050,Chad Beebe,3.9,WR +1051,Johnny Stanton,0.0,RB +1052,Henry Poggi,0.0,RB +1053,Chris Warren III,0.0,RB +1054,Paul Butler,0.0,TE +1055,Keith Kirkwood,32.9,WR +1056,Deon Yelder,0.0,TE +1057,Jordan Smallwood,0.0,WR +1058,Pharoah McKever,0.0,TE +1059,Buddy Howell,0.0,RB +1060,Greg Joseph,83.0,K +1061,Quincy Redmon,0.0,WR +1062,Stephen Baggett,0.0,TE +1063,Jawill Davis,4.0,WR +1064,Devonte Boyd,0.0,WR +1065,Quinton Flowers,0.0,RB +1066,Jordan Franks,3.7,TE +1067,Ray Lawry,0.0,RB +1068,Josh Adams,74.9,RB +1069,Anthony Mahoungou,0.0,WR +1070,Lavon Coleman,0.0,RB +1071,Vyncint Smith,15.1,WR +1072,Terry Swanson,0.0,RB +1073,Jester Weah,0.0,WR +1074,Keith Ford,10.0,RB +1075,Cam Phillips,0.9,WR +1076,Robert Foster,72.1,WR +1077,Tyler Davis,0.0,K +1078,Elijaah Goins,0.0,WR +1079,Dalyn Dawkins,0.0,RB +1080,Larry Rose III,0.0,RB +1081,Akrum Wadley,0.0,RB +1082,Cameron Batson,8.3,WR +1083,Deontay Burnett,14.3,WR +1084,Devin Ross,0.0,WR +1085,Jordan Veasy,0.0,WR +1086,Ethan Wolf,0.0,TE +1087,DeAndre Goolsby,0.0,TE +1088,Kyle Lewis,0.0,RB +1089,Brandon Powell,13.3,WR +1090,Teo Redding,0.0,WR +1091,Darren Andrews,0.0,WR +1092,Chris Lacy,0.0,WR +1093,Ralph Webb,0.0,RB +1094,Shane Wimann,0.0,TE +1095,Dejon Allen,0.0,TE +1096,Garrett Johnson,0.0,WR +1097,Ryan Nall,0.0,RB +1098,Shaq Roland,0.0,WR +1099,Cole Hunt,0.0,TE +1100,Ben Johnson,0.0,TE +1101,J.J. Jones,-1.7,WR +1102,Anthony Manzo-Lewis,0.0,RB +1103,Detrez Newsome,6.8,RB +1104,Nic Shimonek,0.0,QB +1105,Brogan Roback,0.0,QB +1106,Zach Olstad,0.0,RB +1107,Damoun Patterson,0.0,WR +1108,Robert Martin,0.0,RB +1109,Deontez Alexander,0.0,WR +1110,Matt Fleming,0.0,WR +1111,Ryan Yurachek,0.0,RB +1112,C.J. Duncan,0.0,WR +1113,Tim Wilson,0.0,WR +1114,Clayton Wilson,0.0,TE +1115,Darvin Kidsy,0.8,WR +1116,Nick Holley,0.0,RB +1117,Codey McElroy,0.0,WR +1118,Luis Perez,0.0,QB +1119,Davon Grayson,0.0,WR +1120,Eldridge Massington,0.0,WR +1121,Nick Stevens,0.0,QB +1122,Kayaune Ross,0.0,WR +1123,Garrett Hudson,0.0,TE +1124,Austin Roberts,0.0,TE +1125,Sherman Badie,0.0,RB +1126,Jaeden Graham,0.0,TE +1127,Garrett Dickerson,0.0,TE +1128,Josh Crockett,0.0,WR +1129,Josh Smith,0.0,WR +1130,Aaron Lacombe,0.0,WR +1131,KhaDarel Hodge,1.7,WR +1132,Cam Serigne,0.0,TE +1133,Adonis Jennings,0.0,WR +1134,Jared Murphy,0.0,WR +1135,Mark Chapman,0.0,WR +1136,Blake Jackson,0.0,WR +1137,Malik Turner,2.0,WR +1138,James Butler,0.0,RB +1139,Marcus Peterson,0.0,WR +1140,Bryce Bobo,0.0,WR +1141,Gerald Holmes,0.0,RB +1142,Austin Wolf,0.0,WR +1143,Darren Carrington II,0.0,WR +1144,Justin Stockton,0.0,RB +1145,Darius Prince,0.0,WR +1146,Allenzae Staggers,0.0,WR +1147,Kobe McCrary,0.0,RB +1148,Julian Williams,0.0,WR +1149,John Wolford,0.0,QB +1150,Connor Jessop,0.0,QB +1151,Ja'Quan Gardner,0.0,RB +1152,Atlanta,81.0,DEF +1153,Buffalo,107.0,DEF +1154,Chicago,187.0,DEF +1155,Cincinnati,86.0,DEF +1156,Cleveland,102.0,DEF +1157,Dallas,98.0,DEF +1158,Denver,132.0,DEF +1159,Detroit,100.0,DEF +1160,Green Bay,95.0,DEF +1161,Tennessee,119.0,DEF +1162,Indianapolis,120.0,DEF +1163,Kansas City,132.0,DEF +1164,Oakland,47.0,DEF +1165,Los Angeles,154.0,DEF +1166,Miami,120.0,DEF +1167,Minnesota,124.0,DEF +1168,New England,139.0,DEF +1169,New Orleans,112.0,DEF +1170,New York,84.0,DEF +1171,New York,109.0,DEF +1172,Philadelphia,97.0,DEF +1173,Arizona,105.0,DEF +1174,Pittsburgh,116.0,DEF +1175,Los Angeles,110.0,DEF +1176,San Francisco,58.0,DEF +1177,Seattle,123.0,DEF +1178,Tampa Bay,68.0,DEF +1179,Washington,120.0,DEF +1180,Carolina,90.0,DEF +1181,Jacksonville,115.0,DEF +1182,Baltimore,132.0,DEF +1183,Houston,148.0,DEF From 6d7aa23406a5d4a199b3178b0dfff54e7974cbbc Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 24 Jan 2019 00:45:37 -0500 Subject: [PATCH 10/21] CDL: script to plot point distributions by position Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- .../plot_average_score_by_position.py | 9 --- src/plot_average_score_by_position.py | 63 +++++++++++++++++++ 2 files changed, 63 insertions(+), 9 deletions(-) delete mode 100644 src/data_exploration/plot_average_score_by_position.py create mode 100644 src/plot_average_score_by_position.py diff --git a/src/data_exploration/plot_average_score_by_position.py b/src/data_exploration/plot_average_score_by_position.py deleted file mode 100644 index 9bc8c3a..0000000 --- a/src/data_exploration/plot_average_score_by_position.py +++ /dev/null @@ -1,9 +0,0 @@ -import pandas as pd - -if __name__ == "__main__": - # TODO: - # Read in the XML - - # Calculate fantasy points, based on stats and league rules - - # graph diff --git a/src/plot_average_score_by_position.py b/src/plot_average_score_by_position.py new file mode 100644 index 0000000..9ad1b8f --- /dev/null +++ b/src/plot_average_score_by_position.py @@ -0,0 +1,63 @@ +''' + + +@author: cdleong +''' +import pandas as pd +import pprint +import random +from data_parser import PyFantasyDataParser +import matplotlib.pyplot as plt +import seaborn as sns +sns.set() + +secure_random = random.SystemRandom() +if __name__ == "__main__": + # Read in the XML + bob = PyFantasyDataParser() + data_file_path = "../data/all_league_players.txt" + player_list = bob.get_player_list_from_data_file(data_file_path) + + random_player = secure_random.choice(player_list) + pprint.pprint(random_player) + + player_dicts_list = [] + for player in player_list: + fullname = player['name']['full'] + position = player['eligible_positions']['position'] + fixed_position = position + if isinstance(position, list): + fixed_position = position[0] + points = float(player['player_points']['total']) + + player_dict = {"fullname": fullname, "position": fixed_position, "points": points} + player_dicts_list.append(player_dict) + + player_df = pd.DataFrame(player_dicts_list) + player_df.to_csv("../data/player_points.csv") +# print(player_df) +# print(player_df.dtypes) + + print(player_df['position'].unique()) + for position in player_df['position'].unique(): + plt.figure() + pos_df = player_df[player_df["position"] == position] + pos_df = pos_df.sort_values(by=["points"]) + print(pos_df) + print(position) + g = sns.distplot(pos_df['points'], + kde_kws={"cut": 0}, + rug=True) + plt.title(position) + fig = g.get_figure() + fig.savefig(position+".png") + + top_n = 14 + plt.figure() + top_df = pos_df.tail(top_n) + g = sns.distplot(top_df['points'], + kde=False, + rug=True) + plt.title(position+f"_top_{top_n}") + fig = g.get_figure() + fig.savefig(position+f"_top_{top_n}.png") From 7ac5bd6bf0e2edaa574b813741af2bb669add4c7 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Tue, 29 Jan 2019 21:11:01 -0500 Subject: [PATCH 11/21] CDL: some data updates --- data/all_players.txt | 120679 ------------------------------------ data/stat_categories.txt | 1554 + 2 files changed, 1554 insertions(+), 120679 deletions(-) delete mode 100644 data/all_players.txt diff --git a/data/all_players.txt b/data/all_players.txt deleted file mode 100644 index 600b4da..0000000 --- a/data/all_players.txt +++ /dev/null @@ -1,120679 +0,0 @@ - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28398 - 28398 - - Todd Gurley II - Todd - Gurley II - Todd - Gurley II - - nfl.p.28398 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/R0dS3WGRW9RFJadp.KihwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28398.png - small - - https://s.yimg.com/iu/api/res/1.2/R0dS3WGRW9RFJadp.KihwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28398.png - 0 - O - - RB - - - 1.3 - 1.0 - 68.6 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.26671 - 26671 - - Le'Veon Bell - Le'Veon - Bell - Le'Veon - Bell - - Q - Questionable - nfl.p.26671 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/7ctYzETVTHzBLMN5nPsZOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26671.png - small - - https://s.yimg.com/iu/api/res/1.2/7ctYzETVTHzBLMN5nPsZOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26671.png - 0 - O - - RB - - 1 - 1 - - 2.2 - 1.0 - 66.4 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.28474 - 28474 - - David Johnson - David - Johnson - David - Johnson - - nfl.p.28474 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 31 - RB - - https://s.yimg.com/iu/api/res/1.2/bVYbyRhr4G4DV0jCJ_W4DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28474.png - small - - https://s.yimg.com/iu/api/res/1.2/bVYbyRhr4G4DV0jCJ_W4DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28474.png - 0 - O - - RB - - 1 - - 4.0 - 1.0 - 64.1 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.29238 - 29238 - - Ezekiel Elliott - Ezekiel - Elliott - Ezekiel - Elliott - - nfl.p.29238 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 21 - RB - - https://s.yimg.com/iu/api/res/1.2/wy93YGddP62dCPtzgMCU3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29238.png - small - - https://s.yimg.com/iu/api/res/1.2/wy93YGddP62dCPtzgMCU3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29238.png - 0 - O - - RB - - - 4.3 - 1.0 - 64.7 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.24171 - 24171 - - Antonio Brown - Antonio - Brown - Antonio - Brown - - nfl.p.24171 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/ImJACC_rt5ql2NHxT40_gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24171.png - small - - https://s.yimg.com/iu/api/res/1.2/ImJACC_rt5ql2NHxT40_gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24171.png - 0 - O - - WR - - 1 - 1 - - 5.1 - 1.0 - 61.3 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30180 - 30180 - - Alvin Kamara - Alvin - Kamara - Alvin - Kamara - - nfl.p.30180 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 41 - RB - - https://s.yimg.com/iu/api/res/1.2/7A96_Mp9YBaFvXY59Uipew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30180.png - small - - https://s.yimg.com/iu/api/res/1.2/7A96_Mp9YBaFvXY59Uipew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30180.png - 0 - O - - RB - - 1 - - 6.7 - 1.1 - 60.1 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30972 - 30972 - - Saquon Barkley - Saquon - Barkley - Saquon - Barkley - - nfl.p.30972 - nfl.t.19 - New York Giants - NYG - - 9 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/QrLazFupWOTD6HuG7VZetg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30972.png - small - - https://s.yimg.com/iu/api/res/1.2/QrLazFupWOTD6HuG7VZetg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30972.png - 0 - O - - RB - - 1 - - 7.4 - 1.2 - 57.3 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.26650 - 26650 - - DeAndre Hopkins - DeAndre - Hopkins - DeAndre - Hopkins - - nfl.p.26650 - nfl.t.34 - Houston Texans - Hou - - 10 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/yZDrmUs3Sg2oIrO4x3Pf0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26650.png - small - - https://s.yimg.com/iu/api/res/1.2/yZDrmUs3Sg2oIrO4x3Pf0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26650.png - 0 - O - - WR - - 1 - - 8.6 - 1.2 - 56.7 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.28403 - 28403 - - Melvin Gordon - Melvin - Gordon - Melvin - Gordon - - nfl.p.28403 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/bMoDjDdF0xmJ3ChALe7dSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/28403.png - small - - https://s.yimg.com/iu/api/res/1.2/bMoDjDdF0xmJ3ChALe7dSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/28403.png - 0 - O - - RB - - - 12.4 - 1.8 - 52.0 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.27540 - 27540 - - Odell Beckham Jr. - Odell - Beckham Jr. - Odell - Beckham Jr. - - nfl.p.27540 - nfl.t.19 - New York Giants - NYG - - 9 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/_RGqQklqk4yOvHxwthf0AA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27540.png - small - - https://s.yimg.com/iu/api/res/1.2/_RGqQklqk4yOvHxwthf0AA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27540.png - 0 - O - - WR - - 1 - - 10.0 - 1.4 - 54.3 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.24793 - 24793 - - Julio Jones - Julio - Jones - Julio - Jones - - nfl.p.24793 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/1dSy_kq454iOPS7WubUk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24793.png - small - - https://s.yimg.com/iu/api/res/1.2/1dSy_kq454iOPS7WubUk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24793.png - 0 - O - - WR - - 1 - - 11.6 - 1.7 - 52.6 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30117 - 30117 - - Leonard Fournette - Leonard - Fournette - Leonard - Fournette - - nfl.p.30117 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/PxIVNC6zaw20NDHFH5duAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30117.png - small - - https://s.yimg.com/iu/api/res/1.2/PxIVNC6zaw20NDHFH5duAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30117.png - 0 - O - - RB - - 1 - - 14.7 - 2.1 - 47.4 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30199 - 30199 - - Kareem Hunt - Kareem - Hunt - Kareem - Hunt - - nfl.p.30199 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/yuO.eVIZo4KnBH63whFK2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30199.png - small - - https://s.yimg.com/iu/api/res/1.2/yuO.eVIZo4KnBH63whFK2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30199.png - 0 - O - - RB - - 1 - - 11.3 - 1.7 - 54.5 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.29281 - 29281 - - Michael Thomas - Michael - Thomas - Michael - Thomas - - nfl.p.29281 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/FAlfbFaDH6cPfTBBL9cP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29281.png - small - - https://s.yimg.com/iu/api/res/1.2/FAlfbFaDH6cPfTBBL9cP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29281.png - 0 - O - - WR - - - 14.5 - 2.1 - 46.6 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.26699 - 26699 - - Keenan Allen - Keenan - Allen - Keenan - Allen - - nfl.p.26699 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/UEud_xdjAangoqjW6GXluQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26699.png - small - - https://s.yimg.com/iu/api/res/1.2/UEud_xdjAangoqjW6GXluQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26699.png - 0 - O - - WR - - - 17.0 - 2.2 - 43.9 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.27581 - 27581 - - Davante Adams - Davante - Adams - Davante - Adams - - nfl.p.27581 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/FsSM1k8ol7XaTLtkHVrA1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27581.png - small - - https://s.yimg.com/iu/api/res/1.2/FsSM1k8ol7XaTLtkHVrA1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27581.png - 0 - O - - WR - - - 17.9 - 2.3 - 42.7 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.24791 - 24791 - - A.J. Green - A.J. - Green - A.J. - Green - - nfl.p.24791 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/IM8_hBPAyznTCwHbfqLptw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24791.png - small - - https://s.yimg.com/iu/api/res/1.2/IM8_hBPAyznTCwHbfqLptw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24791.png - 0 - O - - WR - - 1 - - 18.8 - 2.3 - 39.5 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.24017 - 24017 - - Rob Gronkowski - Rob - Gronkowski - Rob - Gronkowski - - nfl.p.24017 - nfl.t.17 - New England Patriots - NE - - 11 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/Qnkswpez0N.a_H.RgWkN6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24017.png - small - - https://s.yimg.com/iu/api/res/1.2/Qnkswpez0N.a_H.RgWkN6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24017.png - 0 - O - - TE - - 1 - - 19.4 - 2.5 - 39.4 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.27535 - 27535 - - Mike Evans - Mike - Evans - Mike - Evans - - nfl.p.27535 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/y5nlfg.OhA29vgI4ILVl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27535.png - small - - https://s.yimg.com/iu/api/res/1.2/y5nlfg.OhA29vgI4ILVl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27535.png - 0 - O - - WR - - 1 - - 22.7 - 2.8 - 34.5 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.26686 - 26686 - - Travis Kelce - Travis - Kelce - Travis - Kelce - - nfl.p.26686 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/8a3tQ7GFVmjz5yFqGa6OWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26686.png - small - - https://s.yimg.com/iu/api/res/1.2/8a3tQ7GFVmjz5yFqGa6OWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26686.png - 0 - O - - TE - - 1 - - 24.7 - 3.1 - 31.3 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.29399 - 29399 - - Tyreek Hill - Tyreek - Hill - Tyreek - Hill - - nfl.p.29399 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/KGaqzv0n1HLlWNPV2NEetw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29399.png - small - - https://s.yimg.com/iu/api/res/1.2/KGaqzv0n1HLlWNPV2NEetw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29399.png - 0 - O - - WR - - 1 - - 27.5 - 3.3 - 28.3 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30121 - 30121 - - Christian McCaffrey - Christian - McCaffrey - Christian - McCaffrey - - nfl.p.30121 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/I2Nua3.SXdJraKJ8Sbz4hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30121.png - small - - https://s.yimg.com/iu/api/res/1.2/I2Nua3.SXdJraKJ8Sbz4hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30121.png - 0 - O - - RB - - - 24.4 - 3.0 - 35.7 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.27631 - 27631 - - Devonta Freeman - Devonta - Freeman - Devonta - Freeman - - nfl.p.27631 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 24 - RB - - https://s.yimg.com/iu/api/res/1.2/._fMTmSt9DNlW5CuBXUrpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27631.png - small - - https://s.yimg.com/iu/api/res/1.2/._fMTmSt9DNlW5CuBXUrpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27631.png - 0 - O - - RB - - 1 - - 23.5 - 2.9 - 35.9 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30154 - 30154 - - Dalvin Cook - Dalvin - Cook - Dalvin - Cook - - nfl.p.30154 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/Q.RrjEoZWmMgYj.FbT6z0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30154.png - small - - https://s.yimg.com/iu/api/res/1.2/Q.RrjEoZWmMgYj.FbT6z0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30154.png - 0 - O - - RB - - - 18.4 - 2.3 - 44.4 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.28534 - 28534 - - Stefon Diggs - Stefon - Diggs - Stefon - Diggs - - nfl.p.28534 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/63b0CbC.WRpNNvGa74BpXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28534.png - small - - https://s.yimg.com/iu/api/res/1.2/63b0CbC.WRpNNvGa74BpXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28534.png - 0 - O - - WR - - - 28.6 - 3.4 - 24.7 - 1.00 - - - week - 1 - 100 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29384 - 29384 - - Jordan Howard - Jordan - Howard - Jordan - Howard - - nfl.p.29384 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 24 - RB - - https://s.yimg.com/iu/api/res/1.2/DX64asZBlHmihxe55uM14A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29384.png - small - - https://s.yimg.com/iu/api/res/1.2/DX64asZBlHmihxe55uM14A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29384.png - 0 - O - - RB - - - 28.3 - 3.4 - 31.2 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.27277 - 27277 - - Adam Thielen - Adam - Thielen - Adam - Thielen - - Q - Questionable - nfl.p.27277 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/_f7LGTo99FmWZBLzGRMQTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27277.png - small - - https://s.yimg.com/iu/api/res/1.2/_f7LGTo99FmWZBLzGRMQTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27277.png - 0 - O - - WR - - 1 - - 27.1 - 3.3 - 27.0 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.6762 - 6762 - - Larry Fitzgerald - Larry - Fitzgerald - Larry - Fitzgerald - - nfl.p.6762 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/cHJ8jAKIKK9NEyridutGhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6762.png - small - - https://s.yimg.com/iu/api/res/1.2/cHJ8jAKIKK9NEyridutGhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6762.png - 0 - O - - WR - - - 34.5 - 4.0 - 20.8 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.26658 - 26658 - - Zach Ertz - Zach - Ertz - Zach - Ertz - - nfl.p.26658 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/BjwWIvaNttNHkFS78HSWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26658.png - small - - https://s.yimg.com/iu/api/res/1.2/BjwWIvaNttNHkFS78HSWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26658.png - 0 - O - - TE - - - 32.4 - 3.8 - 23.2 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.25802 - 25802 - - T.Y. Hilton - T.Y. - Hilton - T.Y. - Hilton - - nfl.p.25802 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/iuHT43oYRDVSYGn_LYGCyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25802.png - small - - https://s.yimg.com/iu/api/res/1.2/iuHT43oYRDVSYGn_LYGCyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25802.png - 0 - O - - WR - - 1 - - 35.5 - 4.1 - 21.8 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30175 - 30175 - - JuJu Smith-Schuster - JuJu - Smith-Schuster - JuJu - Smith-Schuster - - nfl.p.30175 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/SKIoTgzo1RWhPiL8JkuStg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30175.png - small - - https://s.yimg.com/iu/api/res/1.2/SKIoTgzo1RWhPiL8JkuStg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30175.png - 0 - O - - WR - - 1 - - 39.0 - 4.5 - 14.7 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.30161 - 30161 - - Joe Mixon - Joe - Mixon - Joe - Mixon - - nfl.p.30161 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/rzubkS7PamCIBHasank8lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30161.png - small - - https://s.yimg.com/iu/api/res/1.2/rzubkS7PamCIBHasank8lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30161.png - 0 - O - - RB - - 1 - - 36.0 - 4.2 - 22.7 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.28392 - 28392 - - Amari Cooper - Amari - Cooper - Amari - Cooper - - nfl.p.28392 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/t7KktSAoBwL4Trr71unm7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28392.png - small - - https://s.yimg.com/iu/api/res/1.2/t7KktSAoBwL4Trr71unm7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28392.png - 0 - O - - WR - - - 36.7 - 4.3 - 19.3 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.24035 - 24035 - - Golden Tate - Golden - Tate - Golden - Tate - - nfl.p.24035 - nfl.t.8 - Detroit Lions - Det - - 6 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/3R_u166V5sj6bjZcmDiKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24035.png - small - - https://s.yimg.com/iu/api/res/1.2/3R_u166V5sj6bjZcmDiKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24035.png - 0 - O - - WR - - - 47.1 - 5.3 - 12.9 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.7200 - 7200 - - Aaron Rodgers - Aaron - Rodgers - Aaron - Rodgers - - nfl.p.7200 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 12 - QB - - https://s.yimg.com/iu/api/res/1.2/KAybTAwhxN0pAbtPslho1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7200.png - small - - https://s.yimg.com/iu/api/res/1.2/KAybTAwhxN0pAbtPslho1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7200.png - 0 - O - - QB - - 1 - - 23.1 - 2.9 - 26.6 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.29307 - 29307 - - Kenyan Drake - Kenyan - Drake - Kenyan - Drake - - nfl.p.29307 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/mPf_mdNY5XcDbsLCQO5v2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29307.png - small - - https://s.yimg.com/iu/api/res/1.2/mPf_mdNY5XcDbsLCQO5v2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29307.png - 0 - O - - RB - - 1 - 1 - - 39.7 - 4.6 - 17.9 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.25105 - 25105 - - Doug Baldwin - Doug - Baldwin - Doug - Baldwin - - Q - Questionable - nfl.p.25105 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/pcslXEt6lWz8Bg86Xf0Isw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25105.png - small - - https://s.yimg.com/iu/api/res/1.2/pcslXEt6lWz8Bg86Xf0Isw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25105.png - 0 - O - - WR - - 1 - - 34.1 - 4.0 - 22.2 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.27591 - 27591 - - Jarvis Landry - Jarvis - Landry - Jarvis - Landry - - nfl.p.27591 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/s87DuNVwFQzJaplHjLXT_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27591.png - small - - https://s.yimg.com/iu/api/res/1.2/s87DuNVwFQzJaplHjLXT_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27591.png - 0 - O - - WR - - - 49.0 - 5.5 - 9.7 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.23997 - 23997 - - Demaryius Thomas - Demaryius - Thomas - Demaryius - Thomas - - nfl.p.23997 - nfl.t.7 - Denver Broncos - Den - - 10 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/x0bYG2c5Zz0ERJJbFiUAdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23997.png - small - - https://s.yimg.com/iu/api/res/1.2/x0bYG2c5Zz0ERJJbFiUAdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23997.png - 0 - O - - WR - - - 44.2 - 5.0 - 15.1 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.24788 - 24788 - - Cam Newton - Cam - Newton - Cam - Newton - - nfl.p.24788 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 1 - QB - - https://s.yimg.com/iu/api/res/1.2/Q1ziSQG6UAf7iID63Nj9YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24788.png - small - - https://s.yimg.com/iu/api/res/1.2/Q1ziSQG6UAf7iID63Nj9YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24788.png - 0 - O - - QB - - - 45.5 - 5.2 - 10.4 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.25178 - 25178 - - Chris Hogan - Chris - Hogan - Chris - Hogan - - nfl.p.25178 - nfl.t.17 - New England Patriots - NE - - 11 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/pM_Y4drjgQzGXyhOefVNEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25178.png - small - - https://s.yimg.com/iu/api/res/1.2/pM_Y4drjgQzGXyhOefVNEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25178.png - 0 - O - - WR - - 1 - - 68.4 - 7.5 - 6.1 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.29405 - 29405 - - Alex Collins - Alex - Collins - Alex - Collins - - nfl.p.29405 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/tDUuvXiiEdRXFbQlbEcUnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29405.png - small - - https://s.yimg.com/iu/api/res/1.2/tDUuvXiiEdRXFbQlbEcUnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29405.png - 0 - O - - RB - - 1 - - 46.2 - 5.2 - 13.5 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.28537 - 28537 - - Jay Ajayi - Jay - Ajayi - Jay - Ajayi - - nfl.p.28537 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/8_wBYAWL1yFaypSAH51Miw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28537.png - small - - https://s.yimg.com/iu/api/res/1.2/8_wBYAWL1yFaypSAH51Miw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28537.png - 0 - O - - RB - - 1 - 1 - - 48.4 - 5.4 - 11.6 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.26561 - 26561 - - Josh Gordon - Josh - Gordon - Josh - Gordon - - Q - Questionable - nfl.p.26561 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/B7oGCmKZfwDP5CwuosBZzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26561.png - small - - https://s.yimg.com/iu/api/res/1.2/B7oGCmKZfwDP5CwuosBZzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26561.png - 0 - O - - WR - - 1 - - 52.5 - 5.8 - 15.2 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.29279 - 29279 - - Derrick Henry - Derrick - Henry - Derrick - Henry - - nfl.p.29279 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/BsK3qj71MxrCBdeBCCiGHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29279.png - small - - https://s.yimg.com/iu/api/res/1.2/BsK3qj71MxrCBdeBCCiGHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29279.png - 0 - O - - RB - - 1 - - 50.1 - 5.6 - 14.8 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.9317 - 9317 - - LeSean McCoy - LeSean - McCoy - LeSean - McCoy - - Q - Questionable - nfl.p.9317 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/mdG7t5jI1vLr7ce71pRWmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9317.png - small - - https://s.yimg.com/iu/api/res/1.2/mdG7t5jI1vLr7ce71pRWmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9317.png - 0 - O - - RB - - 1 - - 40.6 - 4.6 - 20.3 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.25785 - 25785 - - Russell Wilson - Russell - Wilson - Russell - Wilson - - nfl.p.25785 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/OxOjQVJkvUee70.hiV8ULg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25785.png - small - - https://s.yimg.com/iu/api/res/1.2/OxOjQVJkvUee70.hiV8ULg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25785.png - 0 - O - - QB - - - 43.8 - 5.0 - 13.5 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.25807 - 25807 - - Lamar Miller - Lamar - Miller - Lamar - Miller - - nfl.p.25807 - nfl.t.34 - Houston Texans - Hou - - 10 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/XrRO5ruqYu12Z5pTjMNICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25807.png - small - - https://s.yimg.com/iu/api/res/1.2/XrRO5ruqYu12Z5pTjMNICA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25807.png - 0 - O - - RB - - 1 - - 61.7 - 6.8 - 8.9 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.5228 - 5228 - - Tom Brady - Tom - Brady - Tom - Brady - - nfl.p.5228 - nfl.t.17 - New England Patriots - NE - - 11 - - 12 - QB - - https://s.yimg.com/iu/api/res/1.2/K4TGf.cQSCiks4HMIB82Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5228.png - small - - https://s.yimg.com/iu/api/res/1.2/K4TGf.cQSCiks4HMIB82Lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5228.png - 0 - O - - QB - - - 35.3 - 4.1 - 15.2 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.30125 - 30125 - - Deshaun Watson - Deshaun - Watson - Deshaun - Watson - - nfl.p.30125 - nfl.t.34 - Houston Texans - Hou - - 10 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/yOA5SB6GBjA0mkIbkAy1tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30125.png - small - - https://s.yimg.com/iu/api/res/1.2/yOA5SB6GBjA0mkIbkAy1tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30125.png - 0 - O - - QB - - 1 - - 39.9 - 4.6 - 13.0 - 1.00 - - - week - 1 - 100 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.5479 - 5479 - - Drew Brees - Drew - Brees - Drew - Brees - - nfl.p.5479 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/Tes_HwTnPRpOWHjxwcMMrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/5479.png - small - - https://s.yimg.com/iu/api/res/1.2/Tes_HwTnPRpOWHjxwcMMrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/5479.png - 0 - O - - QB - - 1 - - 50.4 - 5.7 - 8.1 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.31041 - 31041 - - Royce Freeman - Royce - Freeman - Royce - Freeman - - nfl.p.31041 - nfl.t.7 - Denver Broncos - Den - - 10 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/T3dV2I_d9.8UrssEPihUZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31041.png - small - - https://s.yimg.com/iu/api/res/1.2/T3dV2I_d9.8UrssEPihUZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31041.png - 0 - O - - RB - - 1 - - 67.1 - 7.4 - 8.5 - 1.00 - - - week - 1 - 96 - 0 - - - - 380.p.27589 - 27589 - - Allen Robinson II - Allen - Robinson II - Allen - Robinson II - - nfl.p.27589 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/1J9gFPpR5AkL4qGa.kc0Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27589.png - small - - https://s.yimg.com/iu/api/res/1.2/1J9gFPpR5AkL4qGa.kc0Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27589.png - 0 - O - - WR - - - 54.5 - 6.1 - 9.3 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.30118 - 30118 - - Corey Davis - Corey - Davis - Corey - Davis - - nfl.p.30118 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/WAVa3UCz5gE_1oPTokTMQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30118.png - small - - https://s.yimg.com/iu/api/res/1.2/WAVa3UCz5gE_1oPTokTMQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30118.png - 0 - O - - WR - - 1 - - 77.5 - 8.4 - 4.9 - 1.00 - - - week - 1 - 95 - 0 - - - - 380.p.24070 - 24070 - - Jimmy Graham - Jimmy - Graham - Jimmy - Graham - - nfl.p.24070 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/lcB_rwhSPVla13FVHD_eYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24070.png - small - - https://s.yimg.com/iu/api/res/1.2/lcB_rwhSPVla13FVHD_eYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24070.png - 0 - O - - TE - - - 47.2 - 5.4 - 10.4 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.24936 - 24936 - - Dion Lewis - Dion - Lewis - Dion - Lewis - - nfl.p.24936 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/UJICr7.Uc6dl81Ek9TiwFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24936.png - small - - https://s.yimg.com/iu/api/res/1.2/UJICr7.Uc6dl81Ek9TiwFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24936.png - 0 - O - - RB - - 1 - - 65.7 - 7.2 - 5.7 - 1.00 - - - week - 1 - 95 - 0 - - - - 380.p.25876 - 25876 - - Marvin Jones Jr. - Marvin - Jones Jr. - Marvin - Jones Jr. - - nfl.p.25876 - nfl.t.8 - Detroit Lions - Det - - 6 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/pSeTSJDvCAMp3lciQIYeSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25876.png - small - - https://s.yimg.com/iu/api/res/1.2/pSeTSJDvCAMp3lciQIYeSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25876.png - 0 - O - - WR - - - 64.8 - 7.1 - 5.6 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.26701 - 26701 - - Marquise Goodwin - Marquise - Goodwin - Marquise - Goodwin - - nfl.p.26701 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/xbNhQyTn4f2i8tNS3ymM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26701.png - small - - https://s.yimg.com/iu/api/res/1.2/xbNhQyTn4f2i8tNS3ymM.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26701.png - 0 - O - - WR - - 1 - - 87.6 - 9.5 - 4.0 - 0.97 - - - week - 1 - 95 - 0 - - - - 380.p.30136 - 30136 - - Evan Engram - Evan - Engram - Evan - Engram - - Q - Questionable - nfl.p.30136 - nfl.t.19 - New York Giants - NYG - - 9 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/fqQajnLE2zJb5H4tbNcquw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30136.png - small - - https://s.yimg.com/iu/api/res/1.2/fqQajnLE2zJb5H4tbNcquw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30136.png - 0 - O - - TE - - 1 - - 55.9 - 6.3 - 7.7 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.26813 - 26813 - - Rex Burkhead - Rex - Burkhead - Rex - Burkhead - - Q - Questionable - nfl.p.26813 - nfl.t.17 - New England Patriots - NE - - 11 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/aOXJZRwLpMdsFRsorWgE3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26813.png - small - - https://s.yimg.com/iu/api/res/1.2/aOXJZRwLpMdsFRsorWgE3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26813.png - 0 - O - - RB - - 1 - 1 - - 84.3 - 9.1 - 5.6 - 1.00 - - - week - 1 - 92 - 0 - - - - 380.p.27548 - 27548 - - Brandin Cooks - Brandin - Cooks - Brandin - Cooks - - nfl.p.27548 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/udeSo916KhtqKtspogvA5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27548.png - small - - https://s.yimg.com/iu/api/res/1.2/udeSo916KhtqKtspogvA5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27548.png - 0 - O - - WR - - 1 - - 60.8 - 6.7 - 7.9 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.24057 - 24057 - - Emmanuel Sanders - Emmanuel - Sanders - Emmanuel - Sanders - - nfl.p.24057 - nfl.t.7 - Denver Broncos - Den - - 10 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/t7XX7mAvBq0OoiFxbbYhiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24057.png - small - - https://s.yimg.com/iu/api/res/1.2/t7XX7mAvBq0OoiFxbbYhiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24057.png - 0 - O - - WR - - - 92.2 - 10.0 - 2.9 - 0.99 - - - week - 1 - 94 - 0 - - - - 380.p.8285 - 8285 - - Greg Olsen - Greg - Olsen - Greg - Olsen - - nfl.p.8285 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/7bePkncqcSPTKCZQBiM_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8285.png - small - - https://s.yimg.com/iu/api/res/1.2/7bePkncqcSPTKCZQBiM_Dw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8285.png - 0 - O - - TE - - - 54.5 - 6.1 - 7.3 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.9265 - 9265 - - Matthew Stafford - Matthew - Stafford - Matthew - Stafford - - nfl.p.9265 - nfl.t.8 - Detroit Lions - Det - - 6 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/ZQUxiYCjYPtIf_MzwAFrXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/9265.png - small - - https://s.yimg.com/iu/api/res/1.2/ZQUxiYCjYPtIf_MzwAFrXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/9265.png - 0 - O - - QB - - - 73.4 - 8.1 - 2.9 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.25812 - 25812 - - Kirk Cousins - Kirk - Cousins - Kirk - Cousins - - nfl.p.25812 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/eXzP3puQYCKN9lpWfDh.9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25812.png - small - - https://s.yimg.com/iu/api/res/1.2/eXzP3puQYCKN9lpWfDh.9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25812.png - 0 - O - - QB - - - 66.8 - 7.3 - 4.0 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.28493 - 28493 - - Jamison Crowder - Jamison - Crowder - Jamison - Crowder - - Q - Questionable - nfl.p.28493 - nfl.t.28 - Washington Redskins - Was - - 4 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/Vo5nwoKc6XkXbLqa9eVBRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28493.png - small - - https://s.yimg.com/iu/api/res/1.2/Vo5nwoKc6XkXbLqa9eVBRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28493.png - 0 - O - - WR - - - 96.0 - 10.4 - 2.1 - 0.99 - - - week - 1 - 89 - 0 - - - - 380.p.27585 - 27585 - - Carlos Hyde - Carlos - Hyde - Carlos - Hyde - - nfl.p.27585 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/3W_Nk4gsLy75XhxxYW8I2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27585.png - small - - https://s.yimg.com/iu/api/res/1.2/3W_Nk4gsLy75XhxxYW8I2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27585.png - 0 - O - - RB - - - 94.7 - 10.2 - 3.1 - 0.94 - - - week - 1 - 92 - 0 - - - - 380.p.27789 - 27789 - - Trey Burton - Trey - Burton - Trey - Burton - - nfl.p.27789 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/OfFTLRXAEUohs7CbFWcoZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27789.png - small - - https://s.yimg.com/iu/api/res/1.2/OfFTLRXAEUohs7CbFWcoZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27789.png - 0 - O - - TE - - - 74.8 - 8.2 - 3.6 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.24815 - 24815 - - Mark Ingram - Mark - Ingram - Mark - Ingram - - SUSP - Suspended - nfl.p.24815 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/kk7Qy84wLeV3AQ2gy4KcDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24815.png - small - - https://s.yimg.com/iu/api/res/1.2/kk7Qy84wLeV3AQ2gy4KcDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24815.png - 0 - O - - RB - - 1 - - 71.8 - 7.8 - 14.9 - 1.00 - - - week - 1 - 93 - 0 - - - - 380.p.8266 - 8266 - - Marshawn Lynch - Marshawn - Lynch - Marshawn - Lynch - - nfl.p.8266 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 24 - RB - - https://s.yimg.com/iu/api/res/1.2/pmnVAoiOtU9NPn70pc0rTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8266.png - small - - https://s.yimg.com/iu/api/res/1.2/pmnVAoiOtU9NPn70pc0rTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8266.png - 0 - O - - RB - - - 77.1 - 8.4 - 5.0 - 1.00 - - - week - 1 - 95 - 0 - - - - 380.p.6763 - 6763 - - Philip Rivers - Philip - Rivers - Philip - Rivers - - nfl.p.6763 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 17 - QB - - https://s.yimg.com/iu/api/res/1.2/_ZDEtpn311Lhx6pZCAsH5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/6763.png - small - - https://s.yimg.com/iu/api/res/1.2/_ZDEtpn311Lhx6pZCAsH5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/6763.png - 0 - O - - QB - - 1 - - 96.8 - 10.4 - 1.8 - 0.99 - - - week - 1 - 94 - 0 - - - - 380.p.25883 - 25883 - - Alfred Morris - Alfred - Morris - Alfred - Morris - - nfl.p.25883 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/ySgpQVF9IkcaXifT_Pk_vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25883.png - small - - https://s.yimg.com/iu/api/res/1.2/ySgpQVF9IkcaXifT_Pk_vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25883.png - 0 - O - - RB - - 1 - 1 - - 88.0 - 9.5 - 3.9 - 0.18 - - - week - 1 - 74 - 0 - - - - 380.p.26664 - 26664 - - Robert Woods - Robert - Woods - Robert - Woods - - nfl.p.26664 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/eX1MUgLLhKyWb6PaqBQNxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26664.png - small - - https://s.yimg.com/iu/api/res/1.2/eX1MUgLLhKyWb6PaqBQNxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26664.png - 0 - O - - WR - - 1 - - 82.1 - 8.9 - 3.8 - 1.00 - - - week - 1 - 94 - 0 - - - - 380.p.29785 - 29785 - - Robby Anderson - Robby - Anderson - Robby - Anderson - - nfl.p.29785 - nfl.t.20 - New York Jets - NYJ - - 11 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/CM1J33Rc6ndztf3z6g9C9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29785.png - small - - https://s.yimg.com/iu/api/res/1.2/CM1J33Rc6ndztf3z6g9C9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29785.png - 0 - O - - WR - - 1 - - 98.9 - 10.6 - 2.2 - 0.98 - - - week - 1 - 90 - 0 - - - - 380.p.9274 - 9274 - - Michael Crabtree - Michael - Crabtree - Michael - Crabtree - - nfl.p.9274 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/ilSvAyEPPmVP8q3IsBYbwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9274.png - small - - https://s.yimg.com/iu/api/res/1.2/ilSvAyEPPmVP8q3IsBYbwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9274.png - 0 - O - - WR - - - 89.3 - 9.6 - 3.3 - 1.00 - - - week - 1 - 93 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27590 - 27590 - - Jimmy Garoppolo - Jimmy - Garoppolo - Jimmy - Garoppolo - - nfl.p.27590 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 10 - QB - - https://s.yimg.com/iu/api/res/1.2/0MFDYZUKoA7bCDSAa_lS2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27590.png - small - - https://s.yimg.com/iu/api/res/1.2/0MFDYZUKoA7bCDSAa_lS2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27590.png - 0 - O - - QB - - 1 - - 77.3 - 8.4 - 3.7 - 1.00 - - - week - 1 - 96 - 0 - - - - 380.p.7924 - 7924 - - Delanie Walker - Delanie - Walker - Delanie - Walker - - Q - Questionable - nfl.p.7924 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/ZjiyLeiS95ElocmqoGy4ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7924.png - small - - https://s.yimg.com/iu/api/res/1.2/ZjiyLeiS95ElocmqoGy4ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7924.png - 0 - O - - TE - - 1 - - 70.8 - 7.8 - 3.5 - 1.00 - - - week - 1 - 97 - 0 - - - - 380.p.30182 - 30182 - - Cooper Kupp - Cooper - Kupp - Cooper - Kupp - - nfl.p.30182 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/sX9bAb9.y0VsP5.QDxjZQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30182.png - small - - https://s.yimg.com/iu/api/res/1.2/sX9bAb9.y0VsP5.QDxjZQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30182.png - 0 - O - - WR - - 1 - - 101.2 - 10.9 - 1.9 - 0.99 - - - week - 1 - 90 - 0 - - - - 380.p.24830 - 24830 - - Kyle Rudolph - Kyle - Rudolph - Kyle - Rudolph - - nfl.p.24830 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/dwCSiJplgUMtrXBQofumzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24830.png - small - - https://s.yimg.com/iu/api/res/1.2/dwCSiJplgUMtrXBQofumzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24830.png - 0 - O - - TE - - - 67.0 - 7.4 - 4.1 - 1.00 - - - week - 1 - 98 - 0 - - - - 380.p.6770 - 6770 - - Ben Roethlisberger - Ben - Roethlisberger - Ben - Roethlisberger - - nfl.p.6770 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/3Bc6.N_r0C.D7QSKM1Od6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/6770.png - small - - https://s.yimg.com/iu/api/res/1.2/3Bc6.N_r0C.D7QSKM1Od6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/6770.png - 0 - O - - QB - - 1 - - 95.2 - 10.3 - 2.2 - 1.00 - - - week - 1 - 96 - 0 - - - - 380.p.30362 - 30362 - - Chris Carson - Chris - Carson - Chris - Carson - - nfl.p.30362 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/LuTNb3HJYss4pEGP9pg1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30362.png - small - - https://s.yimg.com/iu/api/res/1.2/LuTNb3HJYss4pEGP9pg1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30362.png - 0 - O - - RB - - 1 - 1 - - 100.8 - 10.9 - 3.5 - 0.66 - - - week - 1 - 87 - 0 - - - - 380.p.28429 - 28429 - - Devin Funchess - Devin - Funchess - Devin - Funchess - - nfl.p.28429 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/6sbfX5xXtjrdm2_vs8irNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28429.png - small - - https://s.yimg.com/iu/api/res/1.2/6sbfX5xXtjrdm2_vs8irNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28429.png - 0 - O - - WR - - - 88.1 - 9.6 - 3.1 - 1.00 - - - week - 1 - 93 - 0 - - - - 380.p.29255 - 29255 - - Will Fuller V - Will - Fuller V - Will - Fuller V - - Q - Questionable - nfl.p.29255 - nfl.t.34 - Houston Texans - Hou - - 10 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/Orbt3ffkhT2UYqZvBv7yHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29255.png - small - - https://s.yimg.com/iu/api/res/1.2/Orbt3ffkhT2UYqZvBv7yHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29255.png - 0 - O - - WR - - 1 - - 96.9 - 10.5 - 2.5 - 0.99 - - - week - 1 - 90 - 0 - - - - 380.p.31013 - 31013 - - Kerryon Johnson - Kerryon - Johnson - Kerryon - Johnson - - nfl.p.31013 - nfl.t.8 - Detroit Lions - Det - - 6 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/6ef5LP.I7uNo0TPFk43cXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31013.png - small - - https://s.yimg.com/iu/api/res/1.2/6ef5LP.I7uNo0TPFk43cXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31013.png - 0 - O - - RB - - 1 - - 99.9 - 10.8 - 2.4 - 0.84 - - - week - 1 - 85 - 0 - - - - 380.p.27532 - 27532 - - Sammy Watkins - Sammy - Watkins - Sammy - Watkins - - nfl.p.27532 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/ivubI7j.Qh_trMyVWZe03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27532.png - small - - https://s.yimg.com/iu/api/res/1.2/ivubI7j.Qh_trMyVWZe03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27532.png - 0 - O - - WR - - 1 - - 94.7 - 10.2 - 2.9 - 0.99 - - - week - 1 - 91 - 0 - - - - 380.p.28461 - 28461 - - Tevin Coleman - Tevin - Coleman - Tevin - Coleman - - nfl.p.28461 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/ovDweK4b1hvJitxLj7DN9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28461.png - small - - https://s.yimg.com/iu/api/res/1.2/ovDweK4b1hvJitxLj7DN9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28461.png - 0 - O - - RB - - 1 - - 95.6 - 10.3 - 3.6 - 1.00 - - - week - 1 - 90 - 0 - - - - 380.p.30123 - 30123 - - Patrick Mahomes - Patrick - Mahomes - Patrick - Mahomes - - nfl.p.30123 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 15 - QB - - https://s.yimg.com/iu/api/res/1.2/UnyIrSTTy4_UZ0LpRTGGAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30123.png - small - - https://s.yimg.com/iu/api/res/1.2/UnyIrSTTy4_UZ0LpRTGGAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30123.png - 0 - O - - QB - - 1 - - 110.2 - 11.8 - 1.9 - 0.98 - - - week - 1 - 88 - 0 - - - - 380.p.30247 - 30247 - - Jamaal Williams - Jamaal - Williams - Jamaal - Williams - - nfl.p.30247 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/1r1ONFHOZ7tv5zI5yaERtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30247.png - small - - https://s.yimg.com/iu/api/res/1.2/1r1ONFHOZ7tv5zI5yaERtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30247.png - 0 - O - - RB - - 1 - - 109.3 - 11.7 - 3.3 - 0.69 - - - week - 1 - 89 - 0 - - - - 380.p.8780 - 8780 - - Matt Ryan - Matt - Ryan - Matt - Ryan - - nfl.p.8780 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 2 - QB - - https://s.yimg.com/iu/api/res/1.2/coF5q51jsTQgOGJ0a4zw6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8780.png - small - - https://s.yimg.com/iu/api/res/1.2/coF5q51jsTQgOGJ0a4zw6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8780.png - 0 - O - - QB - - 1 - - 105.8 - 11.4 - 1.8 - 0.99 - - - week - 1 - 91 - 0 - - - - 380.p.29236 - 29236 - - Carson Wentz - Carson - Wentz - Carson - Wentz - - Q - Questionable - nfl.p.29236 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 11 - QB - - https://s.yimg.com/iu/api/res/1.2/AeYytqY0uavg5ruI0QNN5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29236.png - small - - https://s.yimg.com/iu/api/res/1.2/AeYytqY0uavg5ruI0QNN5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29236.png - 0 - O - - QB - - 1 - 1 - - 69.5 - 7.6 - 5.1 - 1.00 - - - week - 1 - 96 - 0 - - - - 380.p.8982 - 8982 - - Pierre Garcon - Pierre - Garcon - Pierre - Garcon - - nfl.p.8982 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/ee68_ChnY6WMAFU.cO_jKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/8982.png - small - - https://s.yimg.com/iu/api/res/1.2/ee68_ChnY6WMAFU.cO_jKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/8982.png - 0 - O - - WR - - 1 - - 104.7 - 11.2 - 1.8 - 0.98 - - - week - 1 - 86 - 0 - - - - 380.p.28390 - 28390 - - Marcus Mariota - Marcus - Mariota - Marcus - Mariota - - nfl.p.28390 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/Mu1YjIlPcdNP3iG0bV6XbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28390.png - small - - https://s.yimg.com/iu/api/res/1.2/Mu1YjIlPcdNP3iG0bV6XbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28390.png - 0 - O - - QB - - 1 - - 118.3 - 12.6 - 1.4 - 0.89 - - - week - 1 - 74 - 0 - - - - 380.p.30142 - 30142 - - David Njoku - David - Njoku - David - Njoku - - nfl.p.30142 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/_gNsXEJ8GwlmpVtHVAM6qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30142.png - small - - https://s.yimg.com/iu/api/res/1.2/_gNsXEJ8GwlmpVtHVAM6qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30142.png - 0 - O - - TE - - 1 - - 104.0 - 11.2 - 1.8 - 0.96 - - - week - 1 - 91 - 0 - - - - 380.p.26708 - 26708 - - Jordan Reed - Jordan - Reed - Jordan - Reed - - Q - Questionable - nfl.p.26708 - nfl.t.28 - Washington Redskins - Was - - 4 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lzCNZyaLMfF3bEsbouurMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26708.png - small - - https://s.yimg.com/iu/api/res/1.2/lzCNZyaLMfF3bEsbouurMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26708.png - 0 - O - - TE - - 1 - - 102.8 - 11.0 - 2.4 - 1.00 - - - week - 1 - 93 - 0 - - - - 380.p.28014 - 28014 - - Isaiah Crowell - Isaiah - Crowell - Isaiah - Crowell - - Q - Questionable - nfl.p.28014 - nfl.t.20 - New York Jets - NYJ - - 11 - - 20 - RB - - https://s.yimg.com/iu/api/res/1.2/VCIGdDIA1GUOi1urBU0j_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28014.png - small - - https://s.yimg.com/iu/api/res/1.2/VCIGdDIA1GUOi1urBU0j_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28014.png - 0 - O - - RB - - - 113.0 - 12.1 - 2.2 - 0.92 - - - week - 1 - 78 - 0 - - - - 380.p.25711 - 25711 - - Andrew Luck - Andrew - Luck - Andrew - Luck - - Q - Questionable - nfl.p.25711 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 12 - QB - - https://s.yimg.com/iu/api/res/1.2/4eu6wobfGQsFlAEIYsmW0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25711.png - small - - https://s.yimg.com/iu/api/res/1.2/4eu6wobfGQsFlAEIYsmW0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25711.png - 0 - O - - QB - - 1 - - 108.6 - 11.6 - 2.6 - 0.98 - - - week - 1 - 90 - 0 - - - - 380.p.29235 - 29235 - - Jared Goff - Jared - Goff - Jared - Goff - - nfl.p.29235 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 16 - QB - - https://s.yimg.com/iu/api/res/1.2/4XqYvRO__esyRDKT9tDlew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29235.png - small - - https://s.yimg.com/iu/api/res/1.2/4XqYvRO__esyRDKT9tDlew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29235.png - 0 - O - - QB - - - 106.4 - 11.4 - 1.8 - 0.97 - - - week - 1 - 86 - 0 - - - - 380.p.29560 - 29560 - - Peyton Barber - Peyton - Barber - Peyton - Barber - - nfl.p.29560 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/pix0536YvETYs6EXgksSMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29560.png - small - - https://s.yimg.com/iu/api/res/1.2/pix0536YvETYs6EXgksSMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29560.png - 0 - O - - RB - - - 114.5 - 12.3 - 2.9 - 0.50 - - - week - 1 - 78 - 0 - - - - 380.p.30259 - 30259 - - George Kittle - George - Kittle - George - Kittle - - Q - Questionable - nfl.p.30259 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/mALnZ42dZZVOkuAiuDXDBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30259.png - small - - https://s.yimg.com/iu/api/res/1.2/mALnZ42dZZVOkuAiuDXDBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30259.png - 0 - O - - TE - - 1 - - 119.6 - 12.8 - 1.4 - 0.98 - - - week - 1 - 79 - 0 - - - - 380.p.31001 - 31001 - - Sony Michel - Sony - Michel - Sony - Michel - - Q - Questionable - nfl.p.31001 - nfl.t.17 - New England Patriots - NE - - 11 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/TSCn0y2Ir4GGCeAzdgT3BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31001.png - small - - https://s.yimg.com/iu/api/res/1.2/TSCn0y2Ir4GGCeAzdgT3BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31001.png - 0 - O - - RB - - 1 - - 98.7 - 10.6 - 3.5 - 0.98 - - - week - 1 - 84 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27299 - 27299 - - Jack Doyle - Jack - Doyle - Jack - Doyle - - nfl.p.27299 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/41a29h_zb4ySzDv51QPXpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27299.png - small - - https://s.yimg.com/iu/api/res/1.2/41a29h_zb4ySzDv51QPXpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27299.png - 0 - O - - TE - - - 121.7 - 13.0 - 1.3 - 0.93 - - - week - 1 - 82 - 0 - - - - 380.p.7177 - 7177 - - Alex Smith - Alex - Smith - Alex - Smith - - nfl.p.7177 - nfl.t.28 - Washington Redskins - Was - - 4 - - 11 - QB - - https://s.yimg.com/iu/api/res/1.2/UglxfS.D76lSsfmPWANI9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7177.png - small - - https://s.yimg.com/iu/api/res/1.2/UglxfS.D76lSsfmPWANI9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7177.png - 0 - O - - QB - - - 127.6 - 13.6 - 1.2 - 0.68 - - - week - 1 - 64 - 0 - - - - 380.p.28465 - 28465 - - Duke Johnson Jr. - Duke - Johnson Jr. - Duke - Johnson Jr. - - nfl.p.28465 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 29 - RB - - https://s.yimg.com/iu/api/res/1.2/_SNldqJV95w66gzNvNAVbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28465.png - small - - https://s.yimg.com/iu/api/res/1.2/_SNldqJV95w66gzNvNAVbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28465.png - 0 - O - - RB - - - 124.0 - 13.3 - 1.4 - 0.61 - - - week - 1 - 69 - 0 - - - - 380.p.25755 - 25755 - - Alshon Jeffery - Alshon - Jeffery - Alshon - Jeffery - - O - Out - nfl.p.25755 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/.opDpnZ8H5ql4tnOyvuRnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25755.png - small - - https://s.yimg.com/iu/api/res/1.2/.opDpnZ8H5ql4tnOyvuRnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25755.png - 0 - O - - WR - - 1 - 1 - - 75.4 - 8.1 - 14.1 - 0.99 - - - week - 1 - 91 - 0 - - - - 380.p.26777 - 26777 - - Chris Thompson - Chris - Thompson - Chris - Thompson - - Q - Questionable - nfl.p.26777 - nfl.t.28 - Washington Redskins - Was - - 4 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/sB2yg8lvZ8jQ1qAqSpm4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26777.png - small - - https://s.yimg.com/iu/api/res/1.2/sB2yg8lvZ8jQ1qAqSpm4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26777.png - 0 - O - - RB - - 1 - - 115.1 - 12.3 - 2.3 - 0.72 - - - week - 1 - 77 - 0 - - - - 380.p.30132 - 30132 - - O.J. Howard - O.J. - Howard - O.J. - Howard - - nfl.p.30132 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/bffbxj0DEczf6aQDD5LHww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30132.png - small - - https://s.yimg.com/iu/api/res/1.2/bffbxj0DEczf6aQDD5LHww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30132.png - 0 - O - - TE - - 1 - - 124.8 - 13.3 - 1.2 - 0.93 - - - week - 1 - 73 - 0 - - - - 380.p.8813 - 8813 - - Jordy Nelson - Jordy - Nelson - Jordy - Nelson - - nfl.p.8813 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 82 - WR - - https://s.yimg.com/iu/api/res/1.2/zMfM_xE9blYBtn4gEnuGbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8813.png - small - - https://s.yimg.com/iu/api/res/1.2/zMfM_xE9blYBtn4gEnuGbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8813.png - 0 - O - - WR - - 1 - - 107.4 - 11.5 - 1.9 - 0.96 - - - week - 1 - 88 - 0 - - - - 380.p.100030 - 100030 - - Jacksonville - Jacksonville - - Jacksonville - - - nfl.p.100030 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - - DEF - - https://s.yimg.com/xe/ipt/50x50w.3.gif - small - - https://s.yimg.com/xe/ipt/50x50w.3.gif - 0 - DT - - DEF - - - 64.2 - 7.2 - 6.4 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.8261 - 8261 - - Adrian Peterson - Adrian - Peterson - Adrian - Peterson - - nfl.p.8261 - nfl.t.28 - Washington Redskins - Was - - 4 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/4nr3gWj1x1MA__zBdA7hYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/8261.png - small - - https://s.yimg.com/iu/api/res/1.2/4nr3gWj1x1MA__zBdA7hYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/8261.png - 0 - O - - RB - - - 106.9 - 11.4 - 4.0 - 0.41 - - - week - 1 - 84 - 0 - - - - 380.p.30232 - 30232 - - Tarik Cohen - Tarik - Cohen - Tarik - Cohen - - nfl.p.30232 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 29 - RB - - https://s.yimg.com/iu/api/res/1.2/5MFySd5xS5VNnt1tM5w42w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30232.png - small - - https://s.yimg.com/iu/api/res/1.2/5MFySd5xS5VNnt1tM5w42w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30232.png - 0 - O - - RB - - - 113.7 - 12.2 - 2.2 - 0.91 - - - week - 1 - 81 - 0 - - - - 380.p.29369 - 29369 - - Dak Prescott - Dak - Prescott - Dak - Prescott - - nfl.p.29369 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/DjGt5oReh_6c3E23BlfdCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29369.png - small - - https://s.yimg.com/iu/api/res/1.2/DjGt5oReh_6c3E23BlfdCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29369.png - 0 - O - - QB - - - 120.0 - 12.7 - 1.4 - 0.78 - - - week - 1 - 67 - 0 - - - - 380.p.30997 - 30997 - - Rashaad Penny - Rashaad - Penny - Rashaad - Penny - - Q - Questionable - nfl.p.30997 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 20 - RB - - https://s.yimg.com/iu/api/res/1.2/MPhFYae2WetO7k8.6Ugcag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30997.png - small - - https://s.yimg.com/iu/api/res/1.2/MPhFYae2WetO7k8.6Ugcag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30997.png - 0 - O - - RB - - 1 - 1 - - 89.8 - 9.7 - 5.5 - 0.85 - - - week - 1 - 76 - 0 - - - - 380.p.100016 - 100016 - - Minnesota - Minnesota - - Minnesota - - - nfl.p.100016 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - - DEF - - https://s.yimg.com/xe/ipt/50x50w.6.gif - small - - https://s.yimg.com/xe/ipt/50x50w.6.gif - 0 - DT - - DEF - - - 73.7 - 8.2 - 3.2 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.100014 - 100014 - - Los Angeles - Los Angeles - - Los Angeles - - - nfl.p.100014 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/stl.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/stl.gif - 0 - DT - - DEF - - - 75.2 - 8.3 - 3.3 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.28408 - 28408 - - Nelson Agholor - Nelson - Agholor - Nelson - Agholor - - nfl.p.28408 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/dTRTrsE83Y7miPtMN3IhLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28408.png - small - - https://s.yimg.com/iu/api/res/1.2/dTRTrsE83Y7miPtMN3IhLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28408.png - 0 - O - - WR - - - 111.3 - 11.9 - 1.9 - 0.94 - - - week - 1 - 87 - 0 - - - - 380.p.30295 - 30295 - - Aaron Jones - Aaron - Jones - Aaron - Jones - - SUSP - Suspended - nfl.p.30295 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/T1hXEPELtOZ.QBxPnmGmZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30295.png - small - - https://s.yimg.com/iu/api/res/1.2/T1hXEPELtOZ.QBxPnmGmZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30295.png - 0 - O - - RB - - - 114.6 - 12.3 - 2.2 - 0.69 - - - week - 1 - 63 - 0 - - - - 380.p.29274 - 29274 - - Sterling Shepard - Sterling - Shepard - Sterling - Shepard - - nfl.p.29274 - nfl.t.19 - New York Giants - NYG - - 9 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/BxiV3.IOcfRr8KjwpvTitw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29274.png - small - - https://s.yimg.com/iu/api/res/1.2/BxiV3.IOcfRr8KjwpvTitw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29274.png - 0 - O - - WR - - - 119.3 - 12.7 - 1.4 - 0.87 - - - week - 1 - 81 - 0 - - - - 380.p.27531 - 27531 - - Blake Bortles - Blake - Bortles - Blake - Bortles - - nfl.p.27531 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/CLyHEw1SFR4alskKnV3S2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27531.png - small - - https://s.yimg.com/iu/api/res/1.2/CLyHEw1SFR4alskKnV3S2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27531.png - 0 - O - - QB - - 1 - - 133.7 - 14.2 - 1.0 - 0.23 - - - week - 1 - 34 - 0 - - - - 380.p.26767 - 26767 - - Kenny Stills - Kenny - Stills - Kenny - Stills - - nfl.p.26767 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/Y0RE4fVkXiL4RbMuJInSAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26767.png - small - - https://s.yimg.com/iu/api/res/1.2/Y0RE4fVkXiL4RbMuJInSAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26767.png - 0 - O - - WR - - 1 - - 129.5 - 13.8 - 1.3 - 0.45 - - - week - 1 - 69 - 0 - - - - 380.p.100024 - 100024 - - Los Angeles - Los Angeles - - Los Angeles - - - nfl.p.100024 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sdg3.jpg - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sdg3.jpg - 0 - DT - - DEF - - - 90.7 - 9.8 - 1.5 - 1.00 - - - week - 1 - 95 - 0 - - - - 380.p.100021 - 100021 - - Philadelphia - Philadelphia - - Philadelphia - - - nfl.p.100021 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/phi.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/phi.gif - 0 - DT - - DEF - - - 77.0 - 8.4 - 3.0 - 1.00 - - - week - 1 - 99 - 0 - - - - 380.p.26644 - 26644 - - Tyler Eifert - Tyler - Eifert - Tyler - Eifert - - nfl.p.26644 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/0FuGdzmO79n2Msec33SjPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26644.png - small - - https://s.yimg.com/iu/api/res/1.2/0FuGdzmO79n2Msec33SjPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26644.png - 0 - O - - TE - - 1 - - 127.9 - 13.7 - 1.3 - 0.58 - - - week - 1 - 59 - 0 - - - - 380.p.100034 - 100034 - - Houston - Houston - - Houston - - - nfl.p.100034 - nfl.t.34 - Houston Texans - Hou - - 10 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/hou.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/hou.gif - 0 - DT - - DEF - - - 95.9 - 10.3 - 1.3 - 1.00 - - - week - 1 - 91 - 0 - - - - 380.p.30494 - 30494 - - Ricky Seals-Jones - Ricky - Seals-Jones - Ricky - Seals-Jones - - nfl.p.30494 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/bND.02fQBrB8Rux7XKC2hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30494.png - small - - https://s.yimg.com/iu/api/res/1.2/bND.02fQBrB8Rux7XKC2hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30494.png - 0 - O - - TE - - - 135.3 - 14.4 - 1.0 - 0.21 - - - week - 1 - 29 - 0 - - - - 380.p.27564 - 27564 - - Derek Carr - Derek - Carr - Derek - Carr - - nfl.p.27564 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/RF7iK0ySPE8Wv13FgcsUXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27564.png - small - - https://s.yimg.com/iu/api/res/1.2/RF7iK0ySPE8Wv13FgcsUXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27564.png - 0 - O - - QB - - - 122.3 - 12.9 - 1.4 - 0.35 - - - week - 1 - 55 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26483 - 26483 - - Case Keenum - Case - Keenum - Case - Keenum - - nfl.p.26483 - nfl.t.7 - Denver Broncos - Den - - 10 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/BUXP5k3yZBJAfBPzyRz_aA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26483.png - small - - https://s.yimg.com/iu/api/res/1.2/BUXP5k3yZBJAfBPzyRz_aA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26483.png - 0 - O - - QB - - - 123.3 - 13.0 - 1.6 - 0.07 - - - week - 1 - 25 - 0 - - - - 380.p.9353 - 9353 - - Jared Cook - Jared - Cook - Jared - Cook - - nfl.p.9353 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/VZwIb4N5ZqAb4YmDQDGpOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/9353.png - small - - https://s.yimg.com/iu/api/res/1.2/VZwIb4N5ZqAb4YmDQDGpOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/9353.png - 0 - O - - TE - - - 131.8 - 14.0 - 1.0 - 0.53 - - - week - 1 - 49 - 0 - - - - 380.p.26878 - 26878 - - C.J. Anderson - C.J. - Anderson - C.J. - Anderson - - nfl.p.26878 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 20 - RB - - https://s.yimg.com/iu/api/res/1.2/zxHaXosadYBGp82TLAXRag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26878.png - small - - https://s.yimg.com/iu/api/res/1.2/zxHaXosadYBGp82TLAXRag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26878.png - 0 - O - - RB - - - 116.9 - 12.5 - 1.2 - 0.70 - - - week - 1 - 53 - 0 - - - - 380.p.6760 - 6760 - - Eli Manning - Eli - Manning - Eli - Manning - - nfl.p.6760 - nfl.t.19 - New York Giants - NYG - - 9 - - 10 - QB - - https://s.yimg.com/iu/api/res/1.2/lOklWrqYBjnaZlskIr687Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/6760.png - small - - https://s.yimg.com/iu/api/res/1.2/lOklWrqYBjnaZlskIr687Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/6760.png - 0 - O - - QB - - - 122.4 - 12.8 - 1.4 - 0.09 - - - week - 1 - 28 - 0 - - - - 380.p.9496 - 9496 - - Julian Edelman - Julian - Edelman - Julian - Edelman - - SUSP - Suspended - nfl.p.9496 - nfl.t.17 - New England Patriots - NE - - 11 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/ly.hX8jWwo2V33RokR2F2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9496.png - small - - https://s.yimg.com/iu/api/res/1.2/ly.hX8jWwo2V33RokR2F2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9496.png - 0 - O - - WR - - - 109.0 - 11.7 - 4.2 - 0.83 - - - week - 1 - 85 - 0 - - - - 380.p.28267 - 28267 - - Cameron Brate - Cameron - Brate - Cameron - Brate - - nfl.p.28267 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/l2TZ58LJQYC4PjfdJDibyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28267.png - small - - https://s.yimg.com/iu/api/res/1.2/l2TZ58LJQYC4PjfdJDibyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28267.png - 0 - O - - TE - - - 132.4 - 14.1 - 1.0 - 0.64 - - - week - 1 - 48 - 0 - - - - 380.p.24822 - 24822 - - Andy Dalton - Andy - Dalton - Andy - Dalton - - nfl.p.24822 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 14 - QB - - https://s.yimg.com/iu/api/res/1.2/sBCjEOpb3HMcxuR6Oqezpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24822.png - small - - https://s.yimg.com/iu/api/res/1.2/sBCjEOpb3HMcxuR6Oqezpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24822.png - 0 - O - - QB - - 1 - - 123.9 - 13.2 - 1.8 - 0.03 - - - week - 1 - 25 - 0 - - - - 380.p.7867 - 7867 - - Stephen Gostkowski - Stephen - Gostkowski - Stephen - Gostkowski - - nfl.p.7867 - nfl.t.17 - New England Patriots - NE - - 11 - - 3 - K - - https://s.yimg.com/iu/api/res/1.2/Q6H82tU1YcRPsEDiHovfjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7867.png - small - - https://s.yimg.com/iu/api/res/1.2/Q6H82tU1YcRPsEDiHovfjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7867.png - 0 - K - - K - - - 79.6 - 8.7 - 2.6 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.25881 - 25881 - - Greg Zuerlein - Greg - Zuerlein - Greg - Zuerlein - - nfl.p.25881 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/24NsaQu4derknKAx3py1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25881.png - small - - https://s.yimg.com/iu/api/res/1.2/24NsaQu4derknKAx3py1fA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25881.png - 0 - K - - K - - - 82.1 - 8.9 - 3.1 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.31008 - 31008 - - Ronald Jones II - Ronald - Jones II - Ronald - Jones II - - nfl.p.31008 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/5sJNrjdFkeB2_jGH8BrUXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31008.png - small - - https://s.yimg.com/iu/api/res/1.2/5sJNrjdFkeB2_jGH8BrUXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31008.png - 0 - O - - RB - - 1 - 1 - - 90.4 - 9.8 - 4.3 - 0.92 - - - week - 1 - 71 - 0 - - - - 380.p.30209 - 30209 - - Kenny Golladay - Kenny - Golladay - Kenny - Golladay - - nfl.p.30209 - nfl.t.8 - Detroit Lions - Det - - 6 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/jhLMUbmqVjiQk9JALAGLHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30209.png - small - - https://s.yimg.com/iu/api/res/1.2/jhLMUbmqVjiQk9JALAGLHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30209.png - 0 - O - - WR - - - 131.2 - 13.9 - 1.3 - 0.24 - - - week - 1 - 55 - 0 - - - - 380.p.100007 - 100007 - - Denver - Denver - - Denver - - - nfl.p.100007 - nfl.t.7 - Denver Broncos - Den - - 10 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/den.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/den.gif - 0 - DT - - DEF - - - 92.7 - 10.0 - 1.5 - 1.00 - - - week - 1 - 94 - 0 - - - - 380.p.26534 - 26534 - - Justin Tucker - Justin - Tucker - Justin - Tucker - - nfl.p.26534 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 9 - K - - https://s.yimg.com/iu/api/res/1.2/h52EDMeyrKH.Pq1Qmiww1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26534.png - small - - https://s.yimg.com/iu/api/res/1.2/h52EDMeyrKH.Pq1Qmiww1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26534.png - 0 - K - - K - - - 87.9 - 9.5 - 2.2 - 1.00 - - - week - 1 - 100 - 0 - - - - 380.p.100018 - 100018 - - New Orleans - New Orleans - - New Orleans - - - nfl.p.100018 - nfl.t.18 - New Orleans Saints - NO - - 6 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nor.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nor.gif - 0 - DT - - DEF - - - 124.4 - 13.3 - 1.1 - 0.91 - - - week - 1 - 86 - 0 - - - - 380.p.24961 - 24961 - - Charles Clay - Charles - Clay - Charles - Clay - - nfl.p.24961 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/Y1g0DSGq_5EWFtXNDCONXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24961.png - small - - https://s.yimg.com/iu/api/res/1.2/Y1g0DSGq_5EWFtXNDCONXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24961.png - 0 - O - - TE - - 1 - - 135.4 - 14.4 - 1.0 - 0.37 - - - week - 1 - 33 - 0 - - - - 380.p.30115 - 30115 - - Mitchell Trubisky - Mitchell - Trubisky - Mitchell - Trubisky - - nfl.p.30115 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 10 - QB - - https://s.yimg.com/iu/api/res/1.2/U6L3PP_USuoJFsCi9THiBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30115.png - small - - https://s.yimg.com/iu/api/res/1.2/U6L3PP_USuoJFsCi9THiBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30115.png - 0 - O - - QB - - - 123.8 - 13.1 - 1.3 - 0.05 - - - week - 1 - 19 - 0 - - - - 380.p.27566 - 27566 - - Austin Seferian-Jenkins - Austin - Seferian-Jenkins - Austin - Seferian-Jenkins - - nfl.p.27566 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/jL3Pzua38ywIAELlsyEH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27566.png - small - - https://s.yimg.com/iu/api/res/1.2/jL3Pzua38ywIAELlsyEH4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27566.png - 0 - O - - TE - - 1 - - 133.0 - 14.1 - 1.0 - 0.28 - - - week - 1 - 32 - 0 - - - - 380.p.30120 - 30120 - - Mike Williams - Mike - Williams - Mike - Williams - - nfl.p.30120 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/VMXJS63UyLPpIBYbGewZfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/30120.png - small - - https://s.yimg.com/iu/api/res/1.2/VMXJS63UyLPpIBYbGewZfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/30120.png - 0 - O - - WR - - - 127.5 - 13.6 - 1.3 - 0.43 - - - week - 1 - 63 - 0 - - - - 380.p.30396 - 30396 - - Keelan Cole - Keelan - Cole - Keelan - Cole - - nfl.p.30396 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/YFnDQszcrskZUThcqZBfhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30396.png - small - - https://s.yimg.com/iu/api/res/1.2/YFnDQszcrskZUThcqZBfhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30396.png - 0 - O - - WR - - 1 - - 128.2 - 13.8 - 1.7 - 0.12 - - - week - 1 - 52 - 0 - - - - 380.p.24913 - 24913 - - Bilal Powell - Bilal - Powell - Bilal - Powell - - nfl.p.24913 - nfl.t.20 - New York Jets - NYJ - - 11 - - 29 - RB - - https://s.yimg.com/iu/api/res/1.2/OUdgDLdiF4ziJqxgboj71g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24913.png - small - - https://s.yimg.com/iu/api/res/1.2/OUdgDLdiF4ziJqxgboj71g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24913.png - 0 - O - - RB - - - 124.9 - 13.5 - 1.7 - 0.36 - - - week - 1 - 57 - 0 - - - - 380.p.100033 - 100033 - - Baltimore - Baltimore - - Baltimore - - - nfl.p.100033 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/bal_2.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/bal_2.gif - 0 - DT - - DEF - - - 117.8 - 12.6 - 1.3 - 0.98 - - - week - 1 - 90 - 0 - - - - 380.p.27538 - 27538 - - Eric Ebron - Eric - Ebron - Eric - Ebron - - nfl.p.27538 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/yWT2IW_S4aXHXnMZy5OIYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27538.png - small - - https://s.yimg.com/iu/api/res/1.2/yWT2IW_S4aXHXnMZy5OIYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27538.png - 0 - O - - TE - - 1 - - 130.2 - 13.9 - 1.1 - 0.30 - - - week - 1 - 35 - 0 - - - - 380.p.25937 - 25937 - - Rishard Matthews - Rishard - Matthews - Rishard - Matthews - - nfl.p.25937 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/d6EnYIkl2OHiWGvFAu2Qww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25937.png - small - - https://s.yimg.com/iu/api/res/1.2/d6EnYIkl2OHiWGvFAu2Qww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25937.png - 0 - O - - WR - - 1 - - 133.5 - 14.1 - 1.2 - 0.10 - - - week - 1 - 46 - 0 - - - - 380.p.6791 - 6791 - - Benjamin Watson - Benjamin - Watson - Benjamin - Watson - - nfl.p.6791 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/rjlCNl0lO3rxyLpXRnevIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/6791.png - small - - https://s.yimg.com/iu/api/res/1.2/rjlCNl0lO3rxyLpXRnevIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/6791.png - 0 - O - - TE - - - 124.7 - 13.1 - 1.2 - 0.34 - - - week - 1 - 40 - 0 - - - - 380.p.28457 - 28457 - - Tyler Lockett - Tyler - Lockett - Tyler - Lockett - - Q - Questionable - nfl.p.28457 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/zSIXGouEisBQ4yLMW4ryoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28457.png - small - - https://s.yimg.com/iu/api/res/1.2/zSIXGouEisBQ4yLMW4ryoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28457.png - 0 - O - - WR - - 1 - - 128.0 - 13.6 - 1.3 - 0.11 - - - week - 1 - 49 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.6243 - 6243 - - Matt Bryant - Matt - Bryant - Matt - Bryant - - nfl.p.6243 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 3 - K - - https://s.yimg.com/iu/api/res/1.2/uce9jN3A6Ia0iDKuVQYQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6243.png - small - - https://s.yimg.com/iu/api/res/1.2/uce9jN3A6Ia0iDKuVQYQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6243.png - 0 - K - - K - - 1 - - 99.3 - 10.7 - 1.3 - 1.00 - - - week - 1 - 96 - 0 - - - - 380.p.30552 - 30552 - - Matt Breida - Matt - Breida - Matt - Breida - - nfl.p.30552 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/M7okLbxnAHW3T1tAxwgLRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30552.png - small - - https://s.yimg.com/iu/api/res/1.2/M7okLbxnAHW3T1tAxwgLRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30552.png - 0 - O - - RB - - 1 - - 122.8 - 13.5 - 2.3 - 0.07 - - - week - 1 - 50 - 0 - - - - 380.p.27556 - 27556 - - Kelvin Benjamin - Kelvin - Benjamin - Kelvin - Benjamin - - nfl.p.27556 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/OaHSO4tyII786rIEb5aMzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27556.png - small - - https://s.yimg.com/iu/api/res/1.2/OaHSO4tyII786rIEb5aMzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27556.png - 0 - O - - WR - - 1 - - 125.8 - 13.4 - 1.5 - 0.47 - - - week - 1 - 63 - 0 - - - - 380.p.29754 - 29754 - - Wil Lutz - Wil - Lutz - Wil - Lutz - - nfl.p.29754 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 3 - K - - https://s.yimg.com/iu/api/res/1.2/swUZv.ipQOoeV9joqxaq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29754.png - small - - https://s.yimg.com/iu/api/res/1.2/swUZv.ipQOoeV9joqxaq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29754.png - 0 - K - - K - - - 109.9 - 11.7 - 1.3 - 0.99 - - - week - 1 - 95 - 0 - - - - 380.p.26804 - 26804 - - Latavius Murray - Latavius - Murray - Latavius - Murray - - nfl.p.26804 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/Gp4J4YaIPHTAl0SrPzlehA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26804.png - small - - https://s.yimg.com/iu/api/res/1.2/Gp4J4YaIPHTAl0SrPzlehA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26804.png - 0 - O - - RB - - - 123.2 - 13.1 - 1.6 - 0.24 - - - week - 1 - 55 - 0 - - - - 380.p.29315 - 29315 - - Austin Hooper - Austin - Hooper - Austin - Hooper - - nfl.p.29315 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/IEkLdCzgFs1OPM0y4ST9MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29315.png - small - - https://s.yimg.com/iu/api/res/1.2/IEkLdCzgFs1OPM0y4ST9MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29315.png - 0 - O - - TE - - 1 - - 128.8 - 13.6 - 1.1 - 0.14 - - - week - 1 - 21 - 0 - - - - 380.p.28389 - 28389 - - Jameis Winston - Jameis - Winston - Jameis - Winston - - SUSP - Suspended - nfl.p.28389 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/_yL1UaLXLCRI7BWXMSfWNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28389.png - small - - https://s.yimg.com/iu/api/res/1.2/_yL1UaLXLCRI7BWXMSfWNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28389.png - 0 - O - - QB - - 1 - - 128.8 - 13.8 - 1.9 - 0.22 - - - week - 1 - 15 - 0 - - - - 380.p.24967 - 24967 - - Tyrod Taylor - Tyrod - Taylor - Tyrod - Taylor - - Q - Questionable - nfl.p.24967 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/GmeIMgcT_Am2miv0KXmXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24967.png - small - - https://s.yimg.com/iu/api/res/1.2/GmeIMgcT_Am2miv0KXmXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24967.png - 0 - O - - QB - - 1 - - 119.9 - 12.9 - 2.0 - 0.03 - - - week - 1 - 12 - 0 - - - - 380.p.100023 - 100023 - - Pittsburgh - Pittsburgh - - Pittsburgh - - - nfl.p.100023 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/pit.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/pit.gif - 0 - DT - - DEF - - - 123.3 - 13.2 - 1.2 - 0.94 - - - week - 1 - 80 - 0 - - - - 380.p.30707 - 30707 - - Corey Clement - Corey - Clement - Corey - Clement - - nfl.p.30707 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/iBWjHdI1KdxwEDDiBqzF8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30707.png - small - - https://s.yimg.com/iu/api/res/1.2/iBWjHdI1KdxwEDDiBqzF8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30707.png - 0 - O - - RB - - - 124.4 - 13.7 - 1.4 - 0.06 - - - week - 1 - 26 - 0 - - - - 380.p.100003 - 100003 - - Chicago - Chicago - - Chicago - - - nfl.p.100003 - nfl.t.3 - Chicago Bears - Chi - - 5 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/chi.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/chi.gif - 0 - DT - - DEF - - - 136.3 - 14.4 - 1.1 - 0.48 - - - week - 1 - 48 - 0 - - - - 380.p.30256 - 30256 - - Marlon Mack - Marlon - Mack - Marlon - Mack - - Q - Questionable - nfl.p.30256 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/97UXNpctEzWEBwpaNj78Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30256.png - small - - https://s.yimg.com/iu/api/res/1.2/97UXNpctEzWEBwpaNj78Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30256.png - 0 - O - - RB - - 1 - - 111.2 - 12.0 - 2.7 - 0.50 - - - week - 1 - 56 - 0 - - - - 380.p.100017 - 100017 - - New England - New England - - New England - - - nfl.p.100017 - nfl.t.17 - New England Patriots - NE - - 11 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nwe.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nwe.gif - 0 - DT - - DEF - - - 129.8 - 13.8 - 1.1 - 0.90 - - - week - 1 - 72 - 0 - - - - 380.p.30266 - 30266 - - Jake Elliott - Jake - Elliott - Jake - Elliott - - nfl.p.30266 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/GVxwPPgCYcnCvwNM4_N4Ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30266.png - small - - https://s.yimg.com/iu/api/res/1.2/GVxwPPgCYcnCvwNM4_N4Ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30266.png - 0 - K - - K - - - 112.2 - 11.9 - 1.3 - 0.98 - - - week - 1 - 91 - 0 - - - - 380.p.31051 - 31051 - - Michael Gallup - Michael - Gallup - Michael - Gallup - - nfl.p.31051 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/7_jXOt39kp.uBCpGizIdFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31051.png - small - - https://s.yimg.com/iu/api/res/1.2/7_jXOt39kp.uBCpGizIdFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31051.png - 0 - O - - WR - - 1 - - 126.3 - 13.6 - 1.6 - 0.09 - - - week - 1 - 34 - 0 - - - - 380.p.24851 - 24851 - - Randall Cobb - Randall - Cobb - Randall - Cobb - - nfl.p.24851 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/ii90s0RqoVHmhYb9vrtMNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24851.png - small - - https://s.yimg.com/iu/api/res/1.2/ii90s0RqoVHmhYb9vrtMNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24851.png - 0 - O - - WR - - 1 - - 123.0 - 13.0 - 1.6 - 0.46 - - - week - 1 - 66 - 0 - - - - 380.p.25718 - 25718 - - Ryan Tannehill - Ryan - Tannehill - Ryan - Tannehill - - nfl.p.25718 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 17 - QB - - https://s.yimg.com/iu/api/res/1.2/78RYJzWY1HHVvBefsgoCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25718.png - small - - https://s.yimg.com/iu/api/res/1.2/78RYJzWY1HHVvBefsgoCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25718.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.100001 - 100001 - - Atlanta - Atlanta - - Atlanta - - - nfl.p.100001 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/atl_2.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/atl_2.gif - 0 - DT - - DEF - - - 142.4 - 15.0 - 1.0 - 0.47 - - - week - 1 - 35 - 0 - - - - 380.p.30994 - 30994 - - D.J. Moore - D.J. - Moore - D.J. - Moore - - nfl.p.30994 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/OG__AINCx5x099VgZUezag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30994.png - small - - https://s.yimg.com/iu/api/res/1.2/OG__AINCx5x099VgZUezag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30994.png - 0 - O - - WR - - - 127.9 - 13.6 - 1.5 - 0.24 - - - week - 1 - 47 - 0 - - - - 380.p.29256 - 29256 - - Josh Doctson - Josh - Doctson - Josh - Doctson - - nfl.p.29256 - nfl.t.28 - Washington Redskins - Was - - 4 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/hbQ95b6oS9Cjni0LEJOHgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29256.png - small - - https://s.yimg.com/iu/api/res/1.2/hbQ95b6oS9Cjni0LEJOHgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29256.png - 0 - O - - WR - - - 130.9 - 13.9 - 1.3 - 0.16 - - - week - 1 - 44 - 0 - - - - 380.p.27619 - 27619 - - John Brown - John - Brown - John - Brown - - nfl.p.27619 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/OJQBgzjXrevUMDpmpPSRNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27619.png - small - - https://s.yimg.com/iu/api/res/1.2/OJQBgzjXrevUMDpmpPSRNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27619.png - 0 - O - - WR - - - 128.4 - 14.1 - 1.1 - 0.02 - - - week - 1 - 19 - 0 - - - - 380.p.30197 - 30197 - - Chris Godwin - Chris - Godwin - Chris - Godwin - - nfl.p.30197 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/aFJFMx8KyU0te_0amUkcJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30197.png - small - - https://s.yimg.com/iu/api/res/1.2/aFJFMx8KyU0te_0amUkcJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30197.png - 0 - O - - WR - - 1 - 1 - - 130.3 - 14.2 - 1.3 - 0.05 - - - week - 1 - 31 - 0 - - - - 380.p.26678 - 26678 - - Vance McDonald - Vance - McDonald - Vance - McDonald - - Q - Questionable - nfl.p.26678 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/MSbkJDHLBlIHAm5G1tE_FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26678.png - small - - https://s.yimg.com/iu/api/res/1.2/MSbkJDHLBlIHAm5G1tE_FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26678.png - 0 - O - - TE - - 1 - 1 - - 127.3 - 13.3 - 1.1 - 0.11 - - - week - 1 - 17 - 0 - - - - 380.p.8565 - 8565 - - Matt Prater - Matt - Prater - Matt - Prater - - nfl.p.8565 - nfl.t.8 - Detroit Lions - Det - - 6 - - 5 - K - - https://s.yimg.com/iu/api/res/1.2/GFdwIxp81DIP3WadC9PX.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8565.png - small - - https://s.yimg.com/iu/api/res/1.2/GFdwIxp81DIP3WadC9PX.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8565.png - 0 - K - - K - - - 121.0 - 12.8 - 1.1 - 0.91 - - - week - 1 - 82 - 0 - - - - 380.p.28691 - 28691 - - Tyrell Williams - Tyrell - Williams - Tyrell - Williams - - Q - Questionable - nfl.p.28691 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/JMyytcHlsucBnHT.MaOcyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28691.png - small - - https://s.yimg.com/iu/api/res/1.2/JMyytcHlsucBnHT.MaOcyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28691.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 13 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.100029 - 100029 - - Carolina - Carolina - - Carolina - - - nfl.p.100029 - nfl.t.29 - Carolina Panthers - Car - - 4 - - - DEF - - https://s.yimg.com/cv/ip/ap/default/120210/50x50w_car_1.gif - small - - https://s.yimg.com/cv/ip/ap/default/120210/50x50w_car_1.gif - 0 - DT - - DEF - - - 135.9 - 14.5 - 1.0 - 0.76 - - - week - 1 - 53 - 0 - - - - 380.p.31139 - 31139 - - Jordan Wilkins - Jordan - Wilkins - Jordan - Wilkins - - nfl.p.31139 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 20 - RB - - https://s.yimg.com/iu/api/res/1.2/CiaVVKNaYfl0JBsHCp0IqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31139.png - small - - https://s.yimg.com/iu/api/res/1.2/CiaVVKNaYfl0JBsHCp0IqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31139.png - 0 - O - - RB - - 1 - - 129.5 - 14.6 - 1.4 - 0.04 - - - week - 1 - 31 - 0 - - - - 380.p.28697 - 28697 - - Cameron Meredith - Cameron - Meredith - Cameron - Meredith - - nfl.p.28697 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/wXS4R9z2V6m25Zs47vgJXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/28697.png - small - - https://s.yimg.com/iu/api/res/1.2/wXS4R9z2V6m25Zs47vgJXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/28697.png - 0 - O - - WR - - 1 - - 130.5 - 13.8 - 1.3 - 0.09 - - - week - 1 - 30 - 0 - - - - 380.p.31012 - 31012 - - Mike Gesicki - Mike - Gesicki - Mike - Gesicki - - nfl.p.31012 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/LruBdtdWWzvGdXx.rAjyDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31012.png - small - - https://s.yimg.com/iu/api/res/1.2/LruBdtdWWzvGdXx.rAjyDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31012.png - 0 - O - - TE - - 1 - - 127.3 - 13.4 - 1.2 - 0.04 - - - week - 1 - 12 - 0 - - - - 380.p.31021 - 31021 - - Anthony Miller - Anthony - Miller - Anthony - Miller - - nfl.p.31021 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/p3fSCXpFs2MQdjonoJ1erQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31021.png - small - - https://s.yimg.com/iu/api/res/1.2/p3fSCXpFs2MQdjonoJ1erQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31021.png - 0 - O - - WR - - - 127.7 - 14.0 - 1.6 - 0.06 - - - week - 1 - 23 - 0 - - - - 380.p.100009 - 100009 - - Green Bay - Green Bay - - Green Bay - - - nfl.p.100009 - nfl.t.9 - Green Bay Packers - GB - - 7 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/gnb.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/gnb.gif - 0 - DT - - DEF - - - 142.8 - 15.0 - 1.0 - 0.37 - - - week - 1 - 29 - 0 - - - - 380.p.9348 - 9348 - - Mike Wallace - Mike - Wallace - Mike - Wallace - - nfl.p.9348 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/XXwLi1jMUni2UxqxSvqG_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9348.png - small - - https://s.yimg.com/iu/api/res/1.2/XXwLi1jMUni2UxqxSvqG_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9348.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.27658 - 27658 - - James White - James - White - James - White - - nfl.p.27658 - nfl.t.17 - New England Patriots - NE - - 11 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/J7opn7TL5WiIcnnbkkX56Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27658.png - small - - https://s.yimg.com/iu/api/res/1.2/J7opn7TL5WiIcnnbkkX56Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27658.png - 0 - O - - RB - - - 121.5 - 13.1 - 1.6 - 0.13 - - - week - 1 - 48 - 0 - - - - 380.p.30223 - 30223 - - Dede Westbrook - Dede - Westbrook - Dede - Westbrook - - nfl.p.30223 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/iBPDVkDKvqX8VvPTC6r1nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30223.png - small - - https://s.yimg.com/iu/api/res/1.2/iBPDVkDKvqX8VvPTC6r1nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30223.png - 0 - O - - WR - - 1 - - 128.3 - 14.3 - 1.3 - 0.03 - - - week - 1 - 18 - 0 - - - - 380.p.31005 - 31005 - - Nick Chubb - Nick - Chubb - Nick - Chubb - - nfl.p.31005 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 24 - RB - - https://s.yimg.com/iu/api/res/1.2/EjRTp3lMK1ZuKhwTqRvUSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31005.png - small - - https://s.yimg.com/iu/api/res/1.2/EjRTp3lMK1ZuKhwTqRvUSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31005.png - 0 - O - - RB - - - 121.4 - 13.0 - 1.9 - 0.41 - - - week - 1 - 56 - 0 - - - - 380.p.28188 - 28188 - - Chris Boswell - Chris - Boswell - Chris - Boswell - - nfl.p.28188 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 9 - K - - https://s.yimg.com/iu/api/res/1.2/6LIV2GxEAGbcE.yoh2a5og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28188.png - small - - https://s.yimg.com/iu/api/res/1.2/6LIV2GxEAGbcE.yoh2a5og--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28188.png - 0 - K - - K - - - 127.8 - 13.4 - 1.1 - 0.75 - - - week - 1 - 81 - 0 - - - - 380.p.26660 - 26660 - - Giovani Bernard - Giovani - Bernard - Giovani - Bernard - - nfl.p.26660 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/iGLxlIewg42mTSyTPlwkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26660.png - small - - https://s.yimg.com/iu/api/res/1.2/iGLxlIewg42mTSyTPlwkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26660.png - 0 - O - - RB - - 1 - - 127.0 - 13.9 - 1.1 - 0.05 - - - week - 1 - 31 - 0 - - - - 380.p.30346 - 30346 - - Harrison Butker - Harrison - Butker - Harrison - Butker - - nfl.p.30346 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 7 - K - - https://s.yimg.com/iu/api/res/1.2/Ml5GP2gnCOpcuLkUyWtouA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30346.png - small - - https://s.yimg.com/iu/api/res/1.2/Ml5GP2gnCOpcuLkUyWtouA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30346.png - 0 - K - - K - - - 123.0 - 13.0 - 1.2 - 0.91 - - - week - 1 - 80 - 0 - - - - 380.p.27874 - 27874 - - Allen Hurns - Allen - Hurns - Allen - Hurns - - nfl.p.27874 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/33rkbOtO_UFWs.41bBc7_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27874.png - small - - https://s.yimg.com/iu/api/res/1.2/33rkbOtO_UFWs.41bBc7_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27874.png - 0 - O - - WR - - - 126.6 - 13.5 - 1.4 - 0.10 - - - week - 1 - 36 - 0 - - - - 380.p.30122 - 30122 - - John Ross - John - Ross - John - Ross - - nfl.p.30122 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/rZmWkdjA7slTmWxO3QsBYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30122.png - small - - https://s.yimg.com/iu/api/res/1.2/rZmWkdjA7slTmWxO3QsBYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30122.png - 0 - O - - WR - - 1 - - 126.8 - 13.6 - 1.2 - 0.04 - - - week - 1 - 23 - 0 - - - - 380.p.100022 - 100022 - - Arizona - Arizona - - Arizona - - - nfl.p.100022 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ari_3.jpg - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ari_3.jpg - 0 - DT - - DEF - - - 143.7 - 15.2 - 1.0 - 0.29 - - - week - 1 - 21 - 0 - - - - 380.p.7520 - 7520 - - Robbie Gould - Robbie - Gould - Robbie - Gould - - nfl.p.7520 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 9 - K - - https://s.yimg.com/iu/api/res/1.2/3f9hrkScGHYTNRiyFZYZ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/7520.png - small - - https://s.yimg.com/iu/api/res/1.2/3f9hrkScGHYTNRiyFZYZ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/7520.png - 0 - K - - K - - - 135.7 - 14.2 - 1.2 - 0.46 - - - week - 1 - 52 - 0 - - - - 380.p.30258 - 30258 - - Jake Butt - Jake - Butt - Jake - Butt - - nfl.p.30258 - nfl.t.7 - Denver Broncos - Den - - 10 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/1pDSMU.QWR_bhbigc3vY6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30258.png - small - - https://s.yimg.com/iu/api/res/1.2/1pDSMU.QWR_bhbigc3vY6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30258.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.24318 - 24318 - - LeGarrette Blount - LeGarrette - Blount - LeGarrette - Blount - - nfl.p.24318 - nfl.t.8 - Detroit Lions - Det - - 6 - - 29 - RB - - https://s.yimg.com/iu/api/res/1.2/XMlqNWHN.AO0hQszQ3ssMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24318.png - small - - https://s.yimg.com/iu/api/res/1.2/XMlqNWHN.AO0hQszQ3ssMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24318.png - 0 - O - - RB - - - 121.4 - 13.0 - 1.7 - 0.20 - - - week - 1 - 40 - 0 - - - - 380.p.8447 - 8447 - - Mason Crosby - Mason - Crosby - Mason - Crosby - - nfl.p.8447 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 2 - K - - https://s.yimg.com/iu/api/res/1.2/ZU1dFb9kPX660y0CyQBUJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8447.png - small - - https://s.yimg.com/iu/api/res/1.2/ZU1dFb9kPX660y0CyQBUJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8447.png - 0 - K - - K - - - 134.1 - 14.0 - 1.1 - 0.40 - - - week - 1 - 53 - 0 - - - - 380.p.9037 - 9037 - - Danny Amendola - Danny - Amendola - Danny - Amendola - - nfl.p.9037 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/VrFLN.6lCNsrQj.N6oXOTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9037.png - small - - https://s.yimg.com/iu/api/res/1.2/VrFLN.6lCNsrQj.N6oXOTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9037.png - 0 - O - - WR - - 1 - - 122.9 - 12.9 - 1.2 - 0.07 - - - week - 1 - 28 - 0 - - - - 380.p.27737 - 27737 - - Quincy Enunwa - Quincy - Enunwa - Quincy - Enunwa - - nfl.p.27737 - nfl.t.20 - New York Jets - NYJ - - 11 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/np8EH2VInJGQjF98PImZWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27737.png - small - - https://s.yimg.com/iu/api/res/1.2/np8EH2VInJGQjF98PImZWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27737.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.28482 - 28482 - - Ty Montgomery - Ty - Montgomery - Ty - Montgomery - - nfl.p.28482 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 88 - RB - - https://s.yimg.com/iu/api/res/1.2/NDXFhG1lL6MUtvcjSyjmdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28482.png - small - - https://s.yimg.com/iu/api/res/1.2/NDXFhG1lL6MUtvcjSyjmdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28482.png - 0 - O - - RB - - 1 - - 122.1 - 13.2 - 1.4 - 0.11 - - - week - 1 - 31 - 0 - - - - 380.p.100004 - 100004 - - Cincinnati - Cincinnati - - Cincinnati - - - nfl.p.100004 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cin_2.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cin_2.gif - 0 - DT - - DEF - - - 144.1 - 15.0 - 1.0 - 0.07 - - - week - 1 - 10 - 0 - - - - 380.p.9526 - 9526 - - Graham Gano - Graham - Gano - Graham - Gano - - nfl.p.9526 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 9 - K - - https://s.yimg.com/iu/api/res/1.2/MIeKU1N8aj510yrY97xbDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9526.png - small - - https://s.yimg.com/iu/api/res/1.2/MIeKU1N8aj510yrY97xbDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9526.png - 0 - K - - K - - - 135.8 - 14.1 - 1.5 - 0.12 - - - week - 1 - 23 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29370 - 29370 - - Devontae Booker - Devontae - Booker - Devontae - Booker - - nfl.p.29370 - nfl.t.7 - Denver Broncos - Den - - 10 - - 23 - RB - - https://s.yimg.com/iu/api/res/1.2/jipwk_O7AtLUKrCsYo3_yA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29370.png - small - - https://s.yimg.com/iu/api/res/1.2/jipwk_O7AtLUKrCsYo3_yA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29370.png - 0 - O - - RB - - - 126.7 - 13.9 - 1.4 - 0.05 - - - week - 1 - 21 - 0 - - - - 380.p.25793 - 25793 - - Mohamed Sanu - Mohamed - Sanu - Mohamed - Sanu - - nfl.p.25793 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/OSci6bqT9H94bO2Iim6GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25793.png - small - - https://s.yimg.com/iu/api/res/1.2/OSci6bqT9H94bO2Iim6GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25793.png - 0 - O - - WR - - 1 - - 124.2 - 13.0 - 1.4 - 0.08 - - - week - 1 - 26 - 0 - - - - 380.p.8826 - 8826 - - DeSean Jackson - DeSean - Jackson - DeSean - Jackson - - nfl.p.8826 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/h0EwwKA.ipLJB2nce6IMSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8826.png - small - - https://s.yimg.com/iu/api/res/1.2/h0EwwKA.ipLJB2nce6IMSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8826.png - 0 - O - - WR - - - 128.1 - 13.7 - 1.3 - 0.09 - - - week - 1 - 26 - 0 - - - - 380.p.27573 - 27573 - - Paul Richardson Jr. - Paul - Richardson Jr. - Paul - Richardson Jr. - - nfl.p.27573 - nfl.t.28 - Washington Redskins - Was - - 4 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/p0pw3Ouuz.6KnXCr3451AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27573.png - small - - https://s.yimg.com/iu/api/res/1.2/p0pw3Ouuz.6KnXCr3451AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27573.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 12 - 0 - - - - 380.p.9520 - 9520 - - Ryan Succop - Ryan - Succop - Ryan - Succop - - nfl.p.9520 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/vlGbjekwfCpr4azMvF1IpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9520.png - small - - https://s.yimg.com/iu/api/res/1.2/vlGbjekwfCpr4azMvF1IpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9520.png - 0 - K - - K - - - 135.6 - 14.0 - 1.0 - 0.07 - - - week - 1 - 17 - 0 - - - - 380.p.28402 - 28402 - - DeVante Parker - DeVante - Parker - DeVante - Parker - - Q - Questionable - nfl.p.28402 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/LJXTrfrwf8zMgDzoEQPruQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28402.png - small - - https://s.yimg.com/iu/api/res/1.2/LJXTrfrwf8zMgDzoEQPruQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28402.png - 0 - O - - WR - - 1 - 1 - - 120.9 - 12.9 - 1.5 - 0.43 - - - week - 1 - 44 - 0 - - - - 380.p.8795 - 8795 - - Joe Flacco - Joe - Flacco - Joe - Flacco - - nfl.p.8795 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/fX6EGr0s4AIr8Zt6neNm7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8795.png - small - - https://s.yimg.com/iu/api/res/1.2/fX6EGr0s4AIr8Zt6neNm7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8795.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.100019 - 100019 - - New York - New York - - New York - - - nfl.p.100019 - nfl.t.19 - New York Giants - NYG - - 9 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyg_2.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyg_2.gif - 0 - DT - - DEF - - - 132.4 - 13.9 - 1.0 - 0.04 - - - week - 1 - 7 - 0 - - - - 380.p.30996 - 30996 - - Calvin Ridley - Calvin - Ridley - Calvin - Ridley - - nfl.p.30996 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/GNTR5ZhV7XSk5.CCqC293A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30996.png - small - - https://s.yimg.com/iu/api/res/1.2/GNTR5ZhV7XSk5.CCqC293A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30996.png - 0 - O - - WR - - 1 - - 124.7 - 13.3 - 1.4 - 0.17 - - - week - 1 - 35 - 0 - - - - 380.p.27120 - 27120 - - Brandon McManus - Brandon - McManus - Brandon - McManus - - nfl.p.27120 - nfl.t.7 - Denver Broncos - Den - - 10 - - 8 - K - - https://s.yimg.com/iu/api/res/1.2/hwqKXjWMUwdQFxgwbTs1Vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27120.png - small - - https://s.yimg.com/iu/api/res/1.2/hwqKXjWMUwdQFxgwbTs1Vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27120.png - 0 - K - - K - - - 132.2 - 13.8 - 1.3 - 0.07 - - - week - 1 - 16 - 0 - - - - 380.p.30218 - 30218 - - James Conner - James - Conner - James - Conner - - nfl.p.30218 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/wm5pof1sEIESaW9wa6w8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30218.png - small - - https://s.yimg.com/iu/api/res/1.2/wm5pof1sEIESaW9wa6w8Xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30218.png - 0 - O - - RB - - 1 - - 127.0 - 14.0 - 2.0 - 0.05 - - - week - 1 - 44 - 0 - - - - 380.p.6663 - 6663 - - Antonio Gates - Antonio - Gates - Antonio - Gates - - nfl.p.6663 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/d5369QD8XmbBbkY.8DUzmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/6663.png - small - - https://s.yimg.com/iu/api/res/1.2/d5369QD8XmbBbkY.8DUzmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/6663.png - 0 - O - - TE - - 1 - 1 - - 121.9 - 12.8 - 1.1 - 0.02 - - - week - 1 - 9 - 0 - - - - 380.p.100026 - 100026 - - Seattle - Seattle - - Seattle - - - nfl.p.100026 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sea.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sea.gif - 0 - DT - - DEF - - - 125.1 - 13.4 - 1.1 - 0.39 - - - week - 1 - 21 - 0 - - - - 380.p.26822 - 26822 - - Theo Riddick - Theo - Riddick - Theo - Riddick - - nfl.p.26822 - nfl.t.8 - Detroit Lions - Det - - 6 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/qiu078pJcfSP8sJeqSYYzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26822.png - small - - https://s.yimg.com/iu/api/res/1.2/qiu078pJcfSP8sJeqSYYzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26822.png - 0 - O - - RB - - - 128.3 - 14.1 - 1.5 - 0.06 - - - week - 1 - 26 - 0 - - - - 380.p.24400 - 24400 - - Chris Ivory - Chris - Ivory - Chris - Ivory - - nfl.p.24400 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/oYXyli3A9cuppQSGsNUggw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24400.png - small - - https://s.yimg.com/iu/api/res/1.2/oYXyli3A9cuppQSGsNUggw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24400.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.30973 - 30973 - - Sam Darnold - Sam - Darnold - Sam - Darnold - - nfl.p.30973 - nfl.t.20 - New York Jets - NYJ - - 11 - - 14 - QB - - https://s.yimg.com/iu/api/res/1.2/w.oTL.R5bWC5VzHTuyU1YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30973.png - small - - https://s.yimg.com/iu/api/res/1.2/w.oTL.R5bWC5VzHTuyU1YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30973.png - 0 - O - - QB - - 1 - - 119.4 - 12.5 - 1.1 - 0.02 - - - week - 1 - 9 - 0 - - - - 380.p.100008 - 100008 - - Detroit - Detroit - - Detroit - - - nfl.p.100008 - nfl.t.8 - Detroit Lions - Det - - 6 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/det2.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/det2.gif - 0 - DT - - DEF - - - 135.5 - 14.5 - 1.1 - 0.07 - - - week - 1 - 38 - 0 - - - - 380.p.30213 - 30213 - - Jonnu Smith - Jonnu - Smith - Jonnu - Smith - - nfl.p.30213 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/AARgiLCwUr9.gnCnlsMIuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30213.png - small - - https://s.yimg.com/iu/api/res/1.2/AARgiLCwUr9.gnCnlsMIuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30213.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30995 - 30995 - - Hayden Hurst - Hayden - Hurst - Hayden - Hurst - - O - Out - nfl.p.30995 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/FbeWqEXbdH9TBJZqk0gZ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30995.png - small - - https://s.yimg.com/iu/api/res/1.2/FbeWqEXbdH9TBJZqk0gZ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30995.png - 0 - O - - TE - - - 127.9 - 13.5 - 1.4 - 0.03 - - - week - 1 - 4 - 0 - - - - 380.p.26817 - 26817 - - Spencer Ware - Spencer - Ware - Spencer - Ware - - nfl.p.26817 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/2h2uwgux2YUHi5dVzRHxKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26817.png - small - - https://s.yimg.com/iu/api/res/1.2/2h2uwgux2YUHi5dVzRHxKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26817.png - 0 - O - - RB - - 1 - - 127.8 - 14.4 - 1.3 - 0.03 - - - week - 1 - 14 - 0 - - - - 380.p.23976 - 23976 - - Sam Bradford - Sam - Bradford - Sam - Bradford - - nfl.p.23976 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/0b.jpvIxow7sf7CHav3sVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23976.png - small - - https://s.yimg.com/iu/api/res/1.2/0b.jpvIxow7sf7CHav3sVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23976.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.31010 - 31010 - - Courtland Sutton - Courtland - Sutton - Courtland - Sutton - - nfl.p.31010 - nfl.t.7 - Denver Broncos - Den - - 10 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/_9fpTovrEXhgUF5mEKhd.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31010.png - small - - https://s.yimg.com/iu/api/res/1.2/_9fpTovrEXhgUF5mEKhd.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31010.png - 0 - O - - WR - - - 125.9 - 13.6 - 1.2 - 0.02 - - - week - 1 - 11 - 0 - - - - 380.p.100012 - 100012 - - Kansas City - Kansas City - - Kansas City - - - nfl.p.100012 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/kan.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/kan.gif - 0 - DT - - DEF - - - 138.5 - 14.8 - 1.0 - 0.49 - - - week - 1 - 21 - 0 - - - - 380.p.100025 - 100025 - - San Francisco - San Francisco - - San Francisco - - - nfl.p.100025 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sfo.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/sfo.gif - 0 - DT - - DEF - - - 124.5 - 13.1 - 1.1 - 0.02 - - - week - 1 - 3 - 0 - - - - 380.p.30157 - 30157 - - Gerald Everett - Gerald - Everett - Gerald - Everett - - Q - Questionable - nfl.p.30157 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/UjSrmPWQiVTMw8MWYZ1JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30157.png - small - - https://s.yimg.com/iu/api/res/1.2/UjSrmPWQiVTMw8MWYZ1JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30157.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.100028 - 100028 - - Washington - Washington - - Washington - - - nfl.p.100028 - nfl.t.28 - Washington Redskins - Was - - 4 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/was.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/was.gif - 0 - DT - - DEF - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.29719 - 29719 - - Geronimo Allison - Geronimo - Allison - Geronimo - Allison - - nfl.p.29719 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/Cmpu5Zjd3WdaAz8BPrlWlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29719.png - small - - https://s.yimg.com/iu/api/res/1.2/Cmpu5Zjd3WdaAz8BPrlWlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29719.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - 380.p.29789 - 29789 - - Stephen Anderson - Stephen - Anderson - Stephen - Anderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29789 - nfl.t.34 - Houston Texans - Hou - - 10 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/L2Txr2Yy5dlPuurEx7OYtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29789.png - small - - https://s.yimg.com/iu/api/res/1.2/L2Txr2Yy5dlPuurEx7OYtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29789.png - 0 - O - - TE - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7755 - 7755 - - Vernon Davis - Vernon - Davis - Vernon - Davis - - nfl.p.7755 - nfl.t.28 - Washington Redskins - Was - - 4 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/rpQ9RVc9S3vSyzrXTZm7QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7755.png - small - - https://s.yimg.com/iu/api/res/1.2/rpQ9RVc9S3vSyzrXTZm7QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7755.png - 0 - O - - TE - - - 122.9 - 12.8 - 1.3 - 0.04 - - - week - 1 - 8 - 0 - - - - 380.p.30971 - 30971 - - Baker Mayfield - Baker - Mayfield - Baker - Mayfield - - nfl.p.30971 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/hjwLK2PVXyuFHf_9LoK6ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30971.png - small - - https://s.yimg.com/iu/api/res/1.2/hjwLK2PVXyuFHf_9LoK6ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30971.png - 0 - O - - QB - - 1 - - 117.8 - 12.3 - 1.9 - 0.04 - - - week - 1 - 12 - 0 - - - - 380.p.30423 - 30423 - - Austin Ekeler - Austin - Ekeler - Austin - Ekeler - - nfl.p.30423 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/MwGqRHLe0hjm8oZtQdQGcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30423.png - small - - https://s.yimg.com/iu/api/res/1.2/MwGqRHLe0hjm8oZtQdQGcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30423.png - 0 - O - - RB - - 1 - - 129.7 - 14.9 - 1.5 - 0.02 - - - week - 1 - 17 - 0 - - - - 380.p.28548 - 28548 - - Jesse James - Jesse - James - Jesse - James - - Q - Questionable - nfl.p.28548 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/mlI_74b3eM6p0PG6sB95BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28548.png - small - - https://s.yimg.com/iu/api/res/1.2/mlI_74b3eM6p0PG6sB95BA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28548.png - 0 - O - - TE - - 1 - - 119.9 - 12.5 - 5.9 - 0.03 - - - week - 1 - 3 - 0 - - - - 380.p.8263 - 8263 - - Ted Ginn Jr. - Ted - Ginn Jr. - Ted - Ginn Jr. - - nfl.p.8263 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/h4t6EKxGKWrawJy3.r5LTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/8263.png - small - - https://s.yimg.com/iu/api/res/1.2/h4t6EKxGKWrawJy3.r5LTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/8263.png - 0 - O - - WR - - - 124.2 - 13.0 - 1.1 - 0.04 - - - week - 1 - 16 - 0 - - - - 380.p.30185 - 30185 - - Taywan Taylor - Taywan - Taylor - Taywan - Taylor - - nfl.p.30185 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/KEEM9KZTzTwcjhcepRtWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30185.png - small - - https://s.yimg.com/iu/api/res/1.2/KEEM9KZTzTwcjhcepRtWgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30185.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.28847 - 28847 - - Corey Grant - Corey - Grant - Corey - Grant - - nfl.p.28847 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/93a2uaYO6hZber7afxDZEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28847.png - small - - https://s.yimg.com/iu/api/res/1.2/93a2uaYO6hZber7afxDZEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28847.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31137 - 31137 - - Daniel Carlson - Daniel - Carlson - Daniel - Carlson - - nfl.p.31137 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 7 - K - - https://s.yimg.com/iu/api/res/1.2/68HyMksD6chOhQFUKdWBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31137.png - small - - https://s.yimg.com/iu/api/res/1.2/68HyMksD6chOhQFUKdWBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31137.png - 0 - K - - K - - - 131.5 - 13.8 - 1.6 - 0.14 - - - week - 1 - 41 - 0 - - - - 380.p.100005 - 100005 - - Cleveland - Cleveland - - Cleveland - - - nfl.p.100005 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cle.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/cle.gif - 0 - DT - - DEF - - - 128.1 - 13.4 - 1.0 - 0.04 - - - week - 1 - 6 - 0 - - - - 380.p.29390 - 29390 - - Jonathan Williams - Jonathan - Williams - Jonathan - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29390 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/ykn3fTWxGNVCVJ5aiTO0xQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29390.png - small - - https://s.yimg.com/iu/api/res/1.2/ykn3fTWxGNVCVJ5aiTO0xQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29390.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27709 - 27709 - - Alfred Blue - Alfred - Blue - Alfred - Blue - - nfl.p.27709 - nfl.t.34 - Houston Texans - Hou - - 10 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/7AoIXZNB3bDgkJJ.m.x7Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27709.png - small - - https://s.yimg.com/iu/api/res/1.2/7AoIXZNB3bDgkJJ.m.x7Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27709.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.3727 - 3727 - - Adam Vinatieri - Adam - Vinatieri - Adam - Vinatieri - - nfl.p.3727 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/LlabrCmQU.wqG3KhnUOEdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/3727.png - small - - https://s.yimg.com/iu/api/res/1.2/LlabrCmQU.wqG3KhnUOEdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/3727.png - 0 - K - - K - - - 125.2 - 13.0 - 1.4 - 0.09 - - - week - 1 - 20 - 0 - - - - 380.p.27583 - 27583 - - Jeremy Hill - Jeremy - Hill - Jeremy - Hill - - nfl.p.27583 - nfl.t.17 - New England Patriots - NE - - 11 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/0OKFsxLSSXYdvAY3m5hD9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27583.1.png - small - - https://s.yimg.com/iu/api/res/1.2/0OKFsxLSSXYdvAY3m5hD9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27583.1.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.29792 - 29792 - - Ka'imi Fairbairn - Ka'imi - Fairbairn - Ka'imi - Fairbairn - - nfl.p.29792 - nfl.t.34 - Houston Texans - Hou - - 10 - - 7 - K - - https://s.yimg.com/iu/api/res/1.2/RXZLzByOu5brkOI0rhd3Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29792.png - small - - https://s.yimg.com/iu/api/res/1.2/RXZLzByOu5brkOI0rhd3Cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29792.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.28685 - 28685 - - Josh Lambo - Josh - Lambo - Josh - Lambo - - nfl.p.28685 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/SsjPoijMAmqaEnJBa0lP5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28685.png - small - - https://s.yimg.com/iu/api/res/1.2/SsjPoijMAmqaEnJBa0lP5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28685.png - 0 - K - - K - - - 136.4 - 14.1 - 1.2 - 0.08 - - - week - 1 - 16 - 0 - - - - 380.p.31145 - 31145 - - John Kelly - John - Kelly - John - Kelly - - nfl.p.31145 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/weuizI8IW6QN5rfIvidhqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31145.png - small - - https://s.yimg.com/iu/api/res/1.2/weuizI8IW6QN5rfIvidhqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31145.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.7241 - 7241 - - Frank Gore - Frank - Gore - Frank - Gore - - nfl.p.7241 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 21 - RB - - https://s.yimg.com/iu/api/res/1.2/4sclXShgyZcuuMMzzg3ogg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7241.png - small - - https://s.yimg.com/iu/api/res/1.2/4sclXShgyZcuuMMzzg3ogg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7241.png - 0 - O - - RB - - 1 - - 121.2 - 13.0 - 1.2 - 0.02 - - - week - 1 - 9 - 0 - - - - 380.p.23999 - 23999 - - Dez Bryant - Dez - Bryant - Dez - Bryant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.23999 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/p5xjvUVWrPnKoGQgNHy34A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/23999.png - small - - https://s.yimg.com/iu/api/res/1.2/p5xjvUVWrPnKoGQgNHy34A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/23999.png - 0 - O - - WR - - 1 - - 120.4 - 13.0 - 5.3 - 0.26 - - - week - 1 - 30 - 0 - - - - 380.p.8790 - 8790 - - Jonathan Stewart - Jonathan - Stewart - Jonathan - Stewart - - nfl.p.8790 - nfl.t.19 - New York Giants - NYG - - 9 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/AiyaUENDWbYLUuackdHmVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8790.png - small - - https://s.yimg.com/iu/api/res/1.2/AiyaUENDWbYLUuackdHmVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8790.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.6405 - 6405 - - Jason Witten - Jason - Witten - Jason - Witten - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.6405 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/YLfUMGClhJoiZBtm8jPpew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/6405.png - small - - https://s.yimg.com/iu/api/res/1.2/YLfUMGClhJoiZBtm8jPpew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/6405.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26787 - 26787 - - Mike Gillislee - Mike - Gillislee - Mike - Gillislee - - nfl.p.26787 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/_E94OcDFQtS9Fgxb6LgY4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26787.png - small - - https://s.yimg.com/iu/api/res/1.2/_E94OcDFQtS9Fgxb6LgY4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26787.png - 0 - O - - RB - - 1 - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.5967 - 5967 - - Josh McCown - Josh - McCown - Josh - McCown - - nfl.p.5967 - nfl.t.20 - New York Jets - NYJ - - 11 - - 15 - QB - - https://s.yimg.com/iu/api/res/1.2/d3V0Rqi5rFDdS5e7Zt6b8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5967.png - small - - https://s.yimg.com/iu/api/res/1.2/d3V0Rqi5rFDdS5e7Zt6b8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/5967.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.25991 - 25991 - - Jermaine Kearse - Jermaine - Kearse - Jermaine - Kearse - - Q - Questionable - nfl.p.25991 - nfl.t.20 - New York Jets - NYJ - - 11 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/RvAYccK6dDrnBRXFxTfWVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25991.png - small - - https://s.yimg.com/iu/api/res/1.2/RvAYccK6dDrnBRXFxTfWVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25991.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.9444 - 9444 - - Zach Miller - Zach - Miller - Zach - Miller - - IR - Injured Reserve - nfl.p.9444 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/CGStzRb1N.iCo4LvapW38w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/9444.png - small - - https://s.yimg.com/iu/api/res/1.2/CGStzRb1N.iCo4LvapW38w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/9444.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30592 - 30592 - - Patrick Ricard - Patrick - Ricard - Patrick - Ricard - - nfl.p.30592 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 42 - DE - - https://s.yimg.com/iu/api/res/1.2/.WA2MUbzz3E2tAo9Cs_7Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30592.png - small - - https://s.yimg.com/iu/api/res/1.2/.WA2MUbzz3E2tAo9Cs_7Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30592.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 55 - 0 - - - - 380.p.28169 - 28169 - - Orleans Darkwa - Orleans - Darkwa - Orleans - Darkwa - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28169 - nfl.t.19 - New York Giants - NYG - - 9 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/2z50BTVd5yLPrpbDNpqxJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28169.png - small - - https://s.yimg.com/iu/api/res/1.2/2z50BTVd5yLPrpbDNpqxJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28169.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25810 - 25810 - - Travis Benjamin - Travis - Benjamin - Travis - Benjamin - - nfl.p.25810 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/Z7R8xbPfeYRm2TZPnDr2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25810.png - small - - https://s.yimg.com/iu/api/res/1.2/Z7R8xbPfeYRm2TZPnDr2RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25810.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28473 - 28473 - - Tyler Kroft - Tyler - Kroft - Tyler - Kroft - - nfl.p.28473 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/972IfJ4auFsVubPe7hCIsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28473.png - small - - https://s.yimg.com/iu/api/res/1.2/972IfJ4auFsVubPe7hCIsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28473.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28378 - 28378 - - Jason Myers - Jason - Myers - Jason - Myers - - nfl.p.28378 - nfl.t.20 - New York Jets - NYJ - - 11 - - 2 - K - - https://s.yimg.com/iu/api/res/1.2/EZiP5hu7z578kJiM0pUAVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28378.png - small - - https://s.yimg.com/iu/api/res/1.2/EZiP5hu7z578kJiM0pUAVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28378.png - 0 - K - - K - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24916 - 24916 - - Julius Thomas - Julius - Thomas - Julius - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24916 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/r9dw5zP0Sjlp0co0AP6cpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/24916.png - small - - https://s.yimg.com/iu/api/res/1.2/r9dw5zP0Sjlp0co0AP6cpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/24916.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25741 - 25741 - - Doug Martin - Doug - Martin - Doug - Martin - - nfl.p.25741 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/TxPXrE4E49Y1lolLDEBPSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25741.png - small - - https://s.yimg.com/iu/api/res/1.2/TxPXrE4E49Y1lolLDEBPSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25741.png - 0 - O - - RB - - 1 - - 126.8 - 14.1 - 1.3 - 0.03 - - - week - 1 - 12 - 0 - - - - 380.p.9066 - 9066 - - Stephen Hauschka - Stephen - Hauschka - Stephen - Hauschka - - nfl.p.9066 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/vho1OdxrheXvPzDfSHZNYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9066.png - small - - https://s.yimg.com/iu/api/res/1.2/vho1OdxrheXvPzDfSHZNYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9066.png - 0 - K - - K - - - 124.6 - 13.0 - 1.2 - 0.02 - - - week - 1 - 5 - 0 - - - - 380.p.26253 - 26253 - - Garrett Celek - Garrett - Celek - Garrett - Celek - - nfl.p.26253 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/mxFD3ch3juzDVhtfSCZU2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26253.png - small - - https://s.yimg.com/iu/api/res/1.2/mxFD3ch3juzDVhtfSCZU2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26253.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25744 - 25744 - - Coby Fleener - Coby - Fleener - Coby - Fleener - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25744 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/VWsuXKih6gWUaJxR6c3Ohg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/25744.png - small - - https://s.yimg.com/iu/api/res/1.2/VWsuXKih6gWUaJxR6c3Ohg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/25744.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28046 - 28046 - - Albert Wilson - Albert - Wilson - Albert - Wilson - - nfl.p.28046 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/KsiYxf3NSAd9jUrXZwAL3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28046.png - small - - https://s.yimg.com/iu/api/res/1.2/KsiYxf3NSAd9jUrXZwAL3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28046.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26800 - 26800 - - Dustin Hopkins - Dustin - Hopkins - Dustin - Hopkins - - nfl.p.26800 - nfl.t.28 - Washington Redskins - Was - - 4 - - 3 - K - - https://s.yimg.com/iu/api/res/1.2/HCSp8jyVRpGIZXz2WgZmug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26800.png - small - - https://s.yimg.com/iu/api/res/1.2/HCSp8jyVRpGIZXz2WgZmug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26800.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.30278 - 30278 - - Jamal Agnew - Jamal - Agnew - Jamal - Agnew - - nfl.p.30278 - nfl.t.8 - Detroit Lions - Det - - 6 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 52 - 0 - - - - 380.p.28442 - 28442 - - Ameer Abdullah - Ameer - Abdullah - Ameer - Abdullah - - nfl.p.28442 - nfl.t.8 - Detroit Lions - Det - - 6 - - 21 - RB - - https://s.yimg.com/iu/api/res/1.2/qRFP9T7jrDt6dsA90oh0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28442.png - small - - https://s.yimg.com/iu/api/res/1.2/qRFP9T7jrDt6dsA90oh0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28442.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.9283 - 9283 - - Jeremy Maclin - Jeremy - Maclin - Jeremy - Maclin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9283 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/zlzIl1wUnTOUWEqHGYxmKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9283.png - small - - https://s.yimg.com/iu/api/res/1.2/zlzIl1wUnTOUWEqHGYxmKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9283.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28513 - 28513 - - Javorius Allen - Javorius - Allen - Javorius - Allen - - nfl.p.28513 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 37 - RB - - https://s.yimg.com/iu/api/res/1.2/w.ayhSWpiAYDqPX0s3K31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28513.png - small - - https://s.yimg.com/iu/api/res/1.2/w.ayhSWpiAYDqPX0s3K31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28513.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.24053 - 24053 - - Brandon LaFell - Brandon - LaFell - Brandon - LaFell - - nfl.p.24053 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/qGOnOaiLeAGtePt.nx7gOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24053.png - small - - https://s.yimg.com/iu/api/res/1.2/qGOnOaiLeAGtePt.nx7gOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24053.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29694 - 29694 - - Rob Kelley - Rob - Kelley - Rob - Kelley - - nfl.p.29694 - nfl.t.28 - Washington Redskins - Was - - 4 - - 20 - RB - - https://s.yimg.com/iu/api/res/1.2/JrEUw32doE_iyCtsoO16Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29694.png - small - - https://s.yimg.com/iu/api/res/1.2/JrEUw32doE_iyCtsoO16Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29694.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30158 - 30158 - - Adam Shaheen - Adam - Shaheen - Adam - Shaheen - - IR - Injured Reserve - ankle - nfl.p.30158 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/J7xULkZEoZXKx8Tfaf5hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30158.png - small - - https://s.yimg.com/iu/api/res/1.2/J7xULkZEoZXKx8Tfaf5hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30158.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25295 - 25295 - - Nick Bellore - Nick - Bellore - Nick - Bellore - - nfl.p.25295 - nfl.t.8 - Detroit Lions - Det - - 6 - - 43 - LB - - https://s.yimg.com/iu/api/res/1.2/WIt9Z0Hjd5rzkcF8Xd55Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/25295.png - small - - https://s.yimg.com/iu/api/res/1.2/WIt9Z0Hjd5rzkcF8Xd55Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/25295.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 48 - 0 - - - - 380.p.4269 - 4269 - - Phil Dawson - Phil - Dawson - Phil - Dawson - - nfl.p.4269 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/G8JqLUBx.psySWykdB_D2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/4269.png - small - - https://s.yimg.com/iu/api/res/1.2/G8JqLUBx.psySWykdB_D2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/4269.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.26824 - 26824 - - Ryan Griffin - Ryan - Griffin - Ryan - Griffin - - nfl.p.26824 - nfl.t.34 - Houston Texans - Hou - - 10 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/9hwZF.DLYTCjU2.25jsevA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26824.png - small - - https://s.yimg.com/iu/api/res/1.2/9hwZF.DLYTCjU2.25jsevA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26824.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27618 - 27618 - - Donte Moncrief - Donte - Moncrief - Donte - Moncrief - - nfl.p.27618 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/I0uXMVfzv3.zjvgSfqPZKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27618.png - small - - https://s.yimg.com/iu/api/res/1.2/I0uXMVfzv3.zjvgSfqPZKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27618.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 17 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29249 - 29249 - - Corey Coleman - Corey - Coleman - Corey - Coleman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29249 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/ZzbB.wBWSM.d24b1OnTgKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29249.png - small - - https://s.yimg.com/iu/api/res/1.2/ZzbB.wBWSM.d24b1OnTgKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29249.png - 0 - O - - WR - - 1 - - 130.5 - 13.7 - 1.1 - 0.03 - - - week - 1 - 5 - 0 - - - - 380.p.25730 - 25730 - - Kendall Wright - Kendall - Wright - Kendall - Wright - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25730 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/1FyDlBLh5aUh9MHO9VXANw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25730.png - small - - https://s.yimg.com/iu/api/res/1.2/1FyDlBLh5aUh9MHO9VXANw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25730.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30217 - 30217 - - C.J. Beathard - C.J. - Beathard - C.J. - Beathard - - nfl.p.30217 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/TEXtAAOA6U1AmxJEXM6.0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30217.png - small - - https://s.yimg.com/iu/api/res/1.2/TEXtAAOA6U1AmxJEXM6.0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30217.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27646 - 27646 - - Martavis Bryant - Martavis - Bryant - Martavis - Bryant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27646 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/.P_p0cpVMxIdMqdwjuQtYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27646.png - small - - https://s.yimg.com/iu/api/res/1.2/.P_p0cpVMxIdMqdwjuQtYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27646.png - 0 - O - - WR - - 1 - - 126.6 - 13.4 - 1.9 - 0.09 - - - week - 1 - 7 - 0 - - - - 380.p.30227 - 30227 - - Samaje Perine - Samaje - Perine - Samaje - Perine - - nfl.p.30227 - nfl.t.28 - Washington Redskins - Was - - 4 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/gQ2dhEnCfKcFnHQpf5GocA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30227.png - small - - https://s.yimg.com/iu/api/res/1.2/gQ2dhEnCfKcFnHQpf5GocA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30227.png - 0 - O - - RB - - - 123.5 - 13.5 - 1.2 - 0.02 - - - week - 1 - 3 - 0 - - - - 380.p.7777 - 7777 - - Marcedes Lewis - Marcedes - Lewis - Marcedes - Lewis - - nfl.p.7777 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/W0JS.Hufxa09Vs_MWZhp8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7777.png - small - - https://s.yimg.com/iu/api/res/1.2/W0JS.Hufxa09Vs_MWZhp8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7777.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27622 - 27622 - - Terrance West - Terrance - West - Terrance - West - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27622 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/AUYGNZMnGwHSGqzttX5e3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27622.png - small - - https://s.yimg.com/iu/api/res/1.2/AUYGNZMnGwHSGqzttX5e3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27622.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26784 - 26784 - - Tavarres King - Tavarres - King - Tavarres - King - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26784 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/gaaffHoXKUoikawyD0M9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26784.png - small - - https://s.yimg.com/iu/api/res/1.2/gaaffHoXKUoikawyD0M9YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26784.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28705 - 28705 - - Bryce Callahan - Bryce - Callahan - Bryce - Callahan - - nfl.p.28705 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/BWW3g3lO3ByGan4u16zKBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28705.png - small - - https://s.yimg.com/iu/api/res/1.2/BWW3g3lO3ByGan4u16zKBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28705.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 44 - 0 - - - - 380.p.28547 - 28547 - - J.J. Nelson - J.J. - Nelson - J.J. - Nelson - - nfl.p.28547 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/ArfrherYRx0cVN5U35NqqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28547.png - small - - https://s.yimg.com/iu/api/res/1.2/ArfrherYRx0cVN5U35NqqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28547.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.100027 - 100027 - - Tampa Bay - Tampa Bay - - Tampa Bay - - - nfl.p.100027 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/tam.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/tam.gif - 0 - DT - - DEF - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25681 - 25681 - - Terrelle Pryor Sr. - Terrelle - Pryor Sr. - Terrelle - Pryor Sr. - - nfl.p.25681 - nfl.t.20 - New York Jets - NYJ - - 11 - - 1 - WR - - https://s.yimg.com/iu/api/res/1.2/sM1Ge6xr.11RtU5KWhPZ6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25681.png - small - - https://s.yimg.com/iu/api/res/1.2/sM1Ge6xr.11RtU5KWhPZ6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25681.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.28424 - 28424 - - T.J. Yeldon - T.J. - Yeldon - T.J. - Yeldon - - nfl.p.28424 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 24 - RB - - https://s.yimg.com/iu/api/res/1.2/zzXxwWKtsoPlk6GZ_aK4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28424.png - small - - https://s.yimg.com/iu/api/res/1.2/zzXxwWKtsoPlk6GZ_aK4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28424.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.100006 - 100006 - - Dallas - Dallas - - Dallas - - - nfl.p.100006 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/dal.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/dal.gif - 0 - DT - - DEF - - - 122.9 - 12.9 - 1.2 - 0.06 - - - week - 1 - 7 - 0 - - - - 380.p.7883 - 7883 - - Kyle Williams - Kyle - Williams - Kyle - Williams - - Q - Questionable - nfl.p.7883 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/ke.Qiwpfb_VJEw2mK1p9pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7883.png - small - - https://s.yimg.com/iu/api/res/1.2/ke.Qiwpfb_VJEw2mK1p9pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7883.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 40 - 0 - - - - 380.p.28204 - 28204 - - Marcus Williams - Marcus - Williams - Marcus - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28204 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/aemgbMUVfbjCwbMTZwasKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28204.1.png - small - - https://s.yimg.com/iu/api/res/1.2/aemgbMUVfbjCwbMTZwasKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28204.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 32 - 0 - - - - 380.p.25907 - 25907 - - Nate Ebner - Nate - Ebner - Nate - Ebner - - nfl.p.25907 - nfl.t.17 - New England Patriots - NE - - 11 - - 43 - S - - https://s.yimg.com/iu/api/res/1.2/Os6RMd3zX4c9B0opp56Gmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25907.png - small - - https://s.yimg.com/iu/api/res/1.2/Os6RMd3zX4c9B0opp56Gmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25907.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 32 - 0 - - - - 380.p.25120 - 25120 - - Dontrelle Inman - Dontrelle - Inman - Dontrelle - Inman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25120 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/njshG06ZRMWrdcnlnxx1WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25120.png - small - - https://s.yimg.com/iu/api/res/1.2/njshG06ZRMWrdcnlnxx1WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25120.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24685 - 24685 - - Marcus Sherels - Marcus - Sherels - Marcus - Sherels - - Q - Questionable - nfl.p.24685 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/QP_qX8GDf5Sj09_m1BquYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24685.png - small - - https://s.yimg.com/iu/api/res/1.2/QP_qX8GDf5Sj09_m1BquYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24685.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 28 - 0 - - - - 380.p.30131 - 30131 - - Adoree' Jackson - Adoree' - Jackson - Adoree' - Jackson - - nfl.p.30131 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/avA0KdjRTuV_LfkmmlqWXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30131.png - small - - https://s.yimg.com/iu/api/res/1.2/avA0KdjRTuV_LfkmmlqWXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30131.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 49 - 0 - - - - 380.p.26222 - 26222 - - Robert Golden - Robert - Golden - Robert - Golden - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26222 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/TnVIEbPEcrSTEYJasJXPvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26222.png - small - - https://s.yimg.com/iu/api/res/1.2/TnVIEbPEcrSTEYJasJXPvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26222.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 19 - 0 - - - - 380.p.25721 - 25721 - - Dontari Poe - Dontari - Poe - Dontari - Poe - - nfl.p.25721 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/kwAFJmsHJ.lX0wsRkZ0ebg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25721.png - small - - https://s.yimg.com/iu/api/res/1.2/kwAFJmsHJ.lX0wsRkZ0ebg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25721.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 31 - 0 - - - - 380.p.27345 - 27345 - - Jeff Heath - Jeff - Heath - Jeff - Heath - - nfl.p.27345 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/Co5BJg5khp0EZDf9GJuaNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27345.png - small - - https://s.yimg.com/iu/api/res/1.2/Co5BJg5khp0EZDf9GJuaNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27345.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 36 - 0 - - - - 380.p.28103 - 28103 - - Chandler Catanzaro - Chandler - Catanzaro - Chandler - Catanzaro - - nfl.p.28103 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 7 - K - - https://s.yimg.com/iu/api/res/1.2/ZMs2joKniKcdapIt2kjVlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28103.png - small - - https://s.yimg.com/iu/api/res/1.2/ZMs2joKniKcdapIt2kjVlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28103.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28801 - 28801 - - Jermaine Whitehead - Jermaine - Whitehead - Jermaine - Whitehead - - nfl.p.28801 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/tPtFCvF5rQ1bV7RB71699g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28801.png - small - - https://s.yimg.com/iu/api/res/1.2/tPtFCvF5rQ1bV7RB71699g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28801.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 20 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29070 - 29070 - - Adam Humphries - Adam - Humphries - Adam - Humphries - - nfl.p.29070 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/1QbA2YYTkfOX4PDz_z9UZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29070.png - small - - https://s.yimg.com/iu/api/res/1.2/1QbA2YYTkfOX4PDz_z9UZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29070.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27074 - 27074 - - Jaron Brown - Jaron - Brown - Jaron - Brown - - nfl.p.27074 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/2I_KSWgrW87yXYq3ptkLDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27074.png - small - - https://s.yimg.com/iu/api/res/1.2/2I_KSWgrW87yXYq3ptkLDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27074.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.100010 - 100010 - - Tennessee - Tennessee - - Tennessee - - - nfl.p.100010 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ten.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ten.gif - 0 - DT - - DEF - - - 135.2 - 14.0 - 1.1 - 0.11 - - - week - 1 - 15 - 0 - - - - 380.p.27680 - 27680 - - Nat Berhe - Nat - Berhe - Nat - Berhe - - nfl.p.27680 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/7UbgXShECRva3uAfjHOs4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27680.png - small - - https://s.yimg.com/iu/api/res/1.2/7UbgXShECRva3uAfjHOs4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27680.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 16 - 0 - - - - 380.p.26060 - 26060 - - Cole Beasley - Cole - Beasley - Cole - Beasley - - nfl.p.26060 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/36NrtgiabTTWLTtdeHVjgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26060.png - small - - https://s.yimg.com/iu/api/res/1.2/36NrtgiabTTWLTtdeHVjgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26060.png - 0 - O - - WR - - - 119.8 - 12.5 - 1.3 - 0.03 - - - week - 1 - 8 - 0 - - - - 380.p.29077 - 29077 - - Quinton Dunbar - Quinton - Dunbar - Quinton - Dunbar - - nfl.p.29077 - nfl.t.28 - Washington Redskins - Was - - 4 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/4Nu73M5iNLMWo5aSWwy4Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29077.png - small - - https://s.yimg.com/iu/api/res/1.2/4Nu73M5iNLMWo5aSWwy4Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29077.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 18 - 0 - - - - 380.p.24908 - 24908 - - Chris Prosinski - Chris - Prosinski - Chris - Prosinski - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24908 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 43 - S - - https://s.yimg.com/iu/api/res/1.2/Id1lvVA7jrWt1h1xBWnt6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24908.png - small - - https://s.yimg.com/iu/api/res/1.2/Id1lvVA7jrWt1h1xBWnt6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24908.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 12 - 0 - - - - 380.p.26871 - 26871 - - Daimion Stafford - Daimion - Stafford - Daimion - Stafford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26871 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/fODtGpnrfoMvancn5Rpi7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26871.png - small - - https://s.yimg.com/iu/api/res/1.2/fODtGpnrfoMvancn5Rpi7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26871.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.7864 - 7864 - - Will Blackmon - Will - Blackmon - Will - Blackmon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7864 - nfl.t.28 - Washington Redskins - Was - - 4 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/xAI_vWDq0M2C2ZXCyWsfDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7864.png - small - - https://s.yimg.com/iu/api/res/1.2/xAI_vWDq0M2C2ZXCyWsfDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7864.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - 380.p.8894 - 8894 - - Quintin Demps - Quintin - Demps - Quintin - Demps - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8894 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/C_5xtgJIrSEaIiDIy_hkOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/8894.png - small - - https://s.yimg.com/iu/api/res/1.2/C_5xtgJIrSEaIiDIy_hkOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/8894.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.23980 - 23980 - - Eric Berry - Eric - Berry - Eric - Berry - - Q - Questionable - nfl.p.23980 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/4j05_jO5oqv6aOT7_FvQuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/23980.png - small - - https://s.yimg.com/iu/api/res/1.2/4j05_jO5oqv6aOT7_FvQuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/23980.png - 0 - DP - - S - - 1 - 1 - - - - - - - - - - - - week - 1 - 21 - 0 - - - - 380.p.26978 - 26978 - - Steven Terrell - Steven - Terrell - Steven - Terrell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26978 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 45 - S - - https://s.yimg.com/iu/api/res/1.2/vlNtgYCVAHETSK8GfRCTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26978.png - small - - https://s.yimg.com/iu/api/res/1.2/vlNtgYCVAHETSK8GfRCTmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26978.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.29286 - 29286 - - Su'a Cravens - Su'a - Cravens - Su'a - Cravens - - IR - Injured Reserve - undisclosed - nfl.p.29286 - nfl.t.7 - Denver Broncos - Den - - 10 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/yxHVwXDzi1Jn_AOQe5TSLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29286.png - small - - https://s.yimg.com/iu/api/res/1.2/yxHVwXDzi1Jn_AOQe5TSLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29286.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.26873 - 26873 - - Don Jones - Don - Jones - Don - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26873 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/FUu5B_eEcW3O2pf58qiTcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26873.png - small - - https://s.yimg.com/iu/api/res/1.2/FUu5B_eEcW3O2pf58qiTcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26873.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.24112 - 24112 - - Kendrick Lewis - Kendrick - Lewis - Kendrick - Lewis - - nfl.p.24112 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 28 - S - - https://s.yimg.com/iu/api/res/1.2/EE627cbmfqEmpma4beaIEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24112.png - small - - https://s.yimg.com/iu/api/res/1.2/EE627cbmfqEmpma4beaIEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24112.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.27000 - 27000 - - Jordan Dangerfield - Jordan - Dangerfield - Jordan - Dangerfield - - nfl.p.27000 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/e08SnzD9sFbbqPzMY1xzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27000.png - small - - https://s.yimg.com/iu/api/res/1.2/e08SnzD9sFbbqPzMY1xzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27000.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.26288 - 26288 - - Kelcie McCray - Kelcie - McCray - Kelcie - McCray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26288 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/b9HuyGdrj1y9PkD9xipY6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26288.png - small - - https://s.yimg.com/iu/api/res/1.2/b9HuyGdrj1y9PkD9xipY6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26288.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.29653 - 29653 - - Sharrod Neasman - Sharrod - Neasman - Sharrod - Neasman - - Q - Questionable - undisclosed - nfl.p.29653 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 28 - DB,S - - https://s.yimg.com/iu/api/res/1.2/iOTEdOU1SPKXmPRJrOdkcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29653.png - small - - https://s.yimg.com/iu/api/res/1.2/iOTEdOU1SPKXmPRJrOdkcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29653.png - 0 - DP - - DB - S - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.31024 - 31024 - - Jessie Bates III - Jessie - Bates III - Jessie - Bates III - - nfl.p.31024 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 30 - DB,S - - https://s.yimg.com/iu/api/res/1.2/qA9WgB3IhhFd0R39yLL4QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31024.png - small - - https://s.yimg.com/iu/api/res/1.2/qA9WgB3IhhFd0R39yLL4QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31024.png - 0 - DP - - DB - S - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.30824 - 30824 - - Orion Stewart - Orion - Stewart - Orion - Stewart - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30824 - nfl.t.19 - New York Giants - NYG - - 9 - - 45 - DB,S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31122 - 31122 - - Dane Cruikshank - Dane - Cruikshank - Dane - Cruikshank - - nfl.p.31122 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 29 - DB,S - - https://s.yimg.com/iu/api/res/1.2/KoPcXmnH5fIc9dGLzrBPrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31122.png - small - - https://s.yimg.com/iu/api/res/1.2/KoPcXmnH5fIc9dGLzrBPrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31122.png - 0 - DP - - DB - S - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.30631 - 30631 - - Rickey Jefferson - Rickey - Jefferson - Rickey - Jefferson - - IR - Injured Reserve - torn ACL - nfl.p.30631 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 46 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.28828 - 28828 - - Damian Parms - Damian - Parms - Damian - Parms - - IR - Injured Reserve - shoulder - nfl.p.28828 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 25 - S - - https://s.yimg.com/iu/api/res/1.2/fWy23w6FPL9wvwPPHnKqMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28828.png - small - - https://s.yimg.com/iu/api/res/1.2/fWy23w6FPL9wvwPPHnKqMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28828.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31359 - 31359 - - Chris Lammons - Chris - Lammons - Chris - Lammons - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31359 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31038 - 31038 - - Justin Reid - Justin - Reid - Justin - Reid - - nfl.p.31038 - nfl.t.34 - Houston Texans - Hou - - 10 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/E3k6UyWicJRfLX6G1hef0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31038.png - small - - https://s.yimg.com/iu/api/res/1.2/E3k6UyWicJRfLX6G1hef0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31038.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31258 - 31258 - - Godwin Igwebuike - Godwin - Igwebuike - Godwin - Igwebuike - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31258 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 34 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28830 - 28830 - - Robenson Therezie - Robenson - Therezie - Robenson - Therezie - - IR - Injured Reserve - undisclosed - nfl.p.28830 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 40 - S - - https://s.yimg.com/iu/api/res/1.2/W0ySvJyVOSGrr14pbdgy_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28830.png - small - - https://s.yimg.com/iu/api/res/1.2/W0ySvJyVOSGrr14pbdgy_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28830.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31713 - 31713 - - Tyrin Holloway - Tyrin - Holloway - Tyrin - Holloway - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31713 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 45 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28532 - 28532 - - Mykkele Thompson - Mykkele - Thompson - Mykkele - Thompson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28532 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 28 - S - - https://s.yimg.com/iu/api/res/1.2/ca4vaxCZkVOzX33ltuU4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28532.png - small - - https://s.yimg.com/iu/api/res/1.2/ca4vaxCZkVOzX33ltuU4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28532.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.27596 - 27596 - - Dezmen Southward - Dezmen - Southward - Dezmen - Southward - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27596 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/b9UPX6DDaFnFOYxVU36oSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27596.1.png - small - - https://s.yimg.com/iu/api/res/1.2/b9UPX6DDaFnFOYxVU36oSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27596.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.30461 - 30461 - - Jordan Moore - Jordan - Moore - Jordan - Moore - - IR - Injured Reserve - undisclosed - nfl.p.30461 - nfl.t.7 - Denver Broncos - Den - - 10 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/Jg0qeNqAbVPD.IOO3_pOog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30461.png - small - - https://s.yimg.com/iu/api/res/1.2/Jg0qeNqAbVPD.IOO3_pOog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30461.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31065 - 31065 - - Tarvarius Moore - Tarvarius - Moore - Tarvarius - Moore - - nfl.p.31065 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/wg_ih6mbp1aSQ5XfDq7lng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31065.png - small - - https://s.yimg.com/iu/api/res/1.2/wg_ih6mbp1aSQ5XfDq7lng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31065.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28468 - 28468 - - Alex Carter - Alex - Carter - Alex - Carter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28468 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/BIQz4XAG0AVDFGHghdik6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28468.png - small - - https://s.yimg.com/iu/api/res/1.2/BIQz4XAG0AVDFGHghdik6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28468.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31384 - 31384 - - Corey Griffin - Corey - Griffin - Corey - Griffin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31384 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 46 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31737 - 31737 - - Chucky Williams - Chucky - Williams - Chucky - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31737 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30987 - 30987 - - Derwin James - Derwin - James - Derwin - James - - nfl.p.30987 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/5jmzC6TvOgR405uBJham6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30987.png - small - - https://s.yimg.com/iu/api/res/1.2/5jmzC6TvOgR405uBJham6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30987.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 16 - 0 - - - - 380.p.25091 - 25091 - - Jeron Johnson - Jeron - Johnson - Jeron - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25091 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/Q.7Qox9_KGGYY31DJWHF.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/25091.png - small - - https://s.yimg.com/iu/api/res/1.2/Q.7Qox9_KGGYY31DJWHF.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/25091.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30690 - 30690 - - Chanceller James - Chanceller - James - Chanceller - James - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30690 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 43 - S - - https://s.yimg.com/iu/api/res/1.2/_qtC.7x2VRt7W3lfi1HnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30690.png - small - - https://s.yimg.com/iu/api/res/1.2/_qtC.7x2VRt7W3lfi1HnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30690.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30838 - 30838 - - Tyson Graham - Tyson - Graham - Tyson - Graham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30838 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 32 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31433 - 31433 - - Raven Greene - Raven - Greene - Raven - Greene - - nfl.p.31433 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31562 - 31562 - - Trayvon Henderson - Trayvon - Henderson - Trayvon - Henderson - - IR - Injured Reserve - knee - nfl.p.31562 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31723 - 31723 - - Dallin Leavitt - Dallin - Leavitt - Dallin - Leavitt - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31723 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 45 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30998 - 30998 - - Terrell Edmunds - Terrell - Edmunds - Terrell - Edmunds - - nfl.p.30998 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 34 - S - - https://s.yimg.com/iu/api/res/1.2/DlPODbDenUpX5QIXE2UVCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30998.png - small - - https://s.yimg.com/iu/api/res/1.2/DlPODbDenUpX5QIXE2UVCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30998.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28153 - 28153 - - Kenny Ladler - Kenny - Ladler - Kenny - Ladler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28153 - nfl.t.28 - Washington Redskins - Was - - 4 - - 48 - S - - https://s.yimg.com/iu/api/res/1.2/QpLe1bTynLJJ8.RH4V7aaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/28153.png - small - - https://s.yimg.com/iu/api/res/1.2/QpLe1bTynLJJ8.RH4V7aaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/28153.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28636 - 28636 - - Ryan Murphy - Ryan - Murphy - Ryan - Murphy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28636 - nfl.t.19 - New York Giants - NYG - - 9 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/X4YAk9FNgR2MFuErpL31lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28636.png - small - - https://s.yimg.com/iu/api/res/1.2/X4YAk9FNgR2MFuErpL31lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28636.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31548 - 31548 - - Sean Chandler - Sean - Chandler - Sean - Chandler - - nfl.p.31548 - nfl.t.19 - New York Giants - NYG - - 9 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30358 - 30358 - - Jack Tocho - Jack - Tocho - Jack - Tocho - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30358 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29933 - 29933 - - Rolan Milligan - Rolan - Milligan - Rolan - Milligan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29933 - nfl.t.8 - Detroit Lions - Det - - 6 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/YM3uJ.2X_R45RkncXo7MLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29933.png - small - - https://s.yimg.com/iu/api/res/1.2/YM3uJ.2X_R45RkncXo7MLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29933.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30673 - 30673 - - Damarius Travis - Damarius - Travis - Damarius - Travis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30673 - nfl.t.17 - New England Patriots - NE - - 11 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/sZsGua7j.lMZLHKQJ2EayA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30673.png - small - - https://s.yimg.com/iu/api/res/1.2/sZsGua7j.lMZLHKQJ2EayA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30673.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30825 - 30825 - - Dymonte Thomas - Dymonte - Thomas - Dymonte - Thomas - - nfl.p.30825 - nfl.t.7 - Denver Broncos - Den - - 10 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30807 - 30807 - - T.J. Mutcherson - T.J. - Mutcherson - T.J. - Mutcherson - - IR - Injured Reserve - undisclosed - nfl.p.30807 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31733 - 31733 - - Steven Parker - Steven - Parker - Steven - Parker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31733 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31582 - 31582 - - Jeremy Reaves - Jeremy - Reaves - Jeremy - Reaves - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31582 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31237 - 31237 - - Tray Matthews - Tray - Matthews - Tray - Matthews - - IR - Injured Reserve - nfl.p.31237 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30750 - 30750 - - Denzel Johnson - Denzel - Johnson - Denzel - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30750 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31587 - 31587 - - Dominick Sanders - Dominick - Sanders - Dominick - Sanders - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31587 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31273 - 31273 - - C.J. Reavis - C.J. - Reavis - C.J. - Reavis - - Q - Questionable - nfl.p.31273 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30687 - 30687 - - Jordan Sterns - Jordan - Sterns - Jordan - Sterns - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30687 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 46 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31154 - 31154 - - Marcell Harris - Marcell - Harris - Marcell - Harris - - IR - Injured Reserve - Achilles - nfl.p.31154 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 49 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30331 - 30331 - - Leon McQuay III - Leon - McQuay III - Leon - McQuay III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30331 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 34 - S - - https://s.yimg.com/iu/api/res/1.2/ELCSZJ94uRk_hK6KeUH8pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30331.png - small - - https://s.yimg.com/iu/api/res/1.2/ELCSZJ94uRk_hK6KeUH8pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30331.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29829 - 29829 - - A.J. Hendy - A.J. - Hendy - A.J. - Hendy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29829 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 45 - S - - https://s.yimg.com/iu/api/res/1.2/XaZLyMVbp1_uUUVeeqeSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29829.1.png - small - - https://s.yimg.com/iu/api/res/1.2/XaZLyMVbp1_uUUVeeqeSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29829.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31296 - 31296 - - Tyree Robinson - Tyree - Robinson - Tyree - Robinson - - nfl.p.31296 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30169 - 30169 - - Obi Melifonwu - Obi - Melifonwu - Obi - Melifonwu - - IR - Injured Reserve - nfl.p.30169 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/doveszM9UUK4RIGB.XlIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30169.png - small - - https://s.yimg.com/iu/api/res/1.2/doveszM9UUK4RIGB.XlIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30169.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31306 - 31306 - - A.J. Howard - A.J. - Howard - A.J. - Howard - - undisclosed - nfl.p.31306 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31160 - 31160 - - DeShon Elliott - DeShon - Elliott - DeShon - Elliott - - IR - Injured Reserve - undisclosed - nfl.p.31160 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31052 - 31052 - - Tracy Walker - Tracy - Walker - Tracy - Walker - - nfl.p.31052 - nfl.t.8 - Detroit Lions - Det - - 6 - - 47 - S - - https://s.yimg.com/iu/api/res/1.2/ZmMsfngpLdTDpGKo6ARSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31052.png - small - - https://s.yimg.com/iu/api/res/1.2/ZmMsfngpLdTDpGKo6ARSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31052.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29833 - 29833 - - Tyvis Powell - Tyvis - Powell - Tyvis - Powell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29833 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/ZVH6FWmF_I_zh3wNQin97w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29833.png - small - - https://s.yimg.com/iu/api/res/1.2/ZVH6FWmF_I_zh3wNQin97w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29833.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31644 - 31644 - - Anthony Sherrils - Anthony - Sherrils - Anthony - Sherrils - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31644 - nfl.t.8 - Detroit Lions - Det - - 6 - - - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31318 - 31318 - - Jonathan Owens - Jonathan - Owens - Jonathan - Owens - - IR - Injured Reserve - undisclosed - nfl.p.31318 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30578 - 30578 - - Demetrious Cox - Demetrious - Cox - Demetrious - Cox - - PUP-P - Physically Unable to Perform (Preseason) - nfl.p.30578 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28492 - 28492 - - James Sample - James - Sample - James - Sample - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28492 - nfl.t.28 - Washington Redskins - Was - - 4 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/qEugH2TrA7GpBpBfs8bzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28492.1.png - small - - https://s.yimg.com/iu/api/res/1.2/qEugH2TrA7GpBpBfs8bzZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28492.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31395 - 31395 - - Quin Blanding - Quin - Blanding - Quin - Blanding - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31395 - nfl.t.28 - Washington Redskins - Was - - 4 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30713 - 30713 - - Tre Sullivan - Tre - Sullivan - Tre - Sullivan - - nfl.p.30713 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31652 - 31652 - - A.J. Moore Jr. - A.J. - Moore Jr. - A.J. - Moore Jr. - - nfl.p.31652 - nfl.t.34 - Houston Texans - Hou - - 10 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29604 - 29604 - - Stefan McClure - Stefan - McClure - Stefan - McClure - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.29604 - nfl.t.8 - Detroit Lions - Det - - 6 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/wHfJxd1nhXyc4kpQHZ_o3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29604.1.png - small - - https://s.yimg.com/iu/api/res/1.2/wHfJxd1nhXyc4kpQHZ_o3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29604.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31079 - 31079 - - Troy Apke - Troy - Apke - Troy - Apke - - nfl.p.31079 - nfl.t.28 - Washington Redskins - Was - - 4 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/QDnorUzoHYqAXs0hpfJxuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31079.png - small - - https://s.yimg.com/iu/api/res/1.2/QDnorUzoHYqAXs0hpfJxuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31079.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30447 - 30447 - - Marcelis Branch - Marcelis - Branch - Marcelis - Branch - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30447 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/uMk5R5kGKU0c96MvJvZMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30447.png - small - - https://s.yimg.com/iu/api/res/1.2/uMk5R5kGKU0c96MvJvZMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30447.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26922 - 26922 - - Marcus Cromartie - Marcus - Cromartie - Marcus - Cromartie - - IR - Injured Reserve - undisclosed - nfl.p.26922 - nfl.t.8 - Detroit Lions - Det - - 6 - - 46 - S - - https://s.yimg.com/iu/api/res/1.2/uK8cVQ5l_H8yCwM5fHsD2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26922.png - small - - https://s.yimg.com/iu/api/res/1.2/uK8cVQ5l_H8yCwM5fHsD2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26922.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31754 - 31754 - - Nate Holley - Nate - Holley - Nate - Holley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31754 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30557 - 30557 - - Malik Golden - Malik - Golden - Malik - Golden - - IR - Injured Reserve - undisclosed - nfl.p.30557 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31087 - 31087 - - Jordan Whitehead - Jordan - Whitehead - Jordan - Whitehead - - nfl.p.31087 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/JV47yqX3ezwzfRYLWqdI8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31087.png - small - - https://s.yimg.com/iu/api/res/1.2/JV47yqX3ezwzfRYLWqdI8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31087.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9596 - 9596 - - Colt Anderson - Colt - Anderson - Colt - Anderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9596 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/L5UgESv5GgjewSMSIMpUKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9596.1.png - small - - https://s.yimg.com/iu/api/res/1.2/L5UgESv5GgjewSMSIMpUKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9596.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31363 - 31363 - - Tigie Sankoh - Tigie - Sankoh - Tigie - Sankoh - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31363 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30652 - 30652 - - Maurice Smith - Maurice - Smith - Maurice - Smith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30652 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28732 - 28732 - - Dean Marlowe - Dean - Marlowe - Dean - Marlowe - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28732 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/k5_UnZpP40He8PsyUGvtKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28732.png - small - - https://s.yimg.com/iu/api/res/1.2/k5_UnZpP40He8PsyUGvtKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28732.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28712 - 28712 - - Ronald Martin - Ronald - Martin - Ronald - Martin - - IR - Injured Reserve - nfl.p.28712 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/6.z.lICL5y5a__B22ewpGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28712.1.png - small - - https://s.yimg.com/iu/api/res/1.2/6.z.lICL5y5a__B22ewpGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28712.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31333 - 31333 - - Terrell Williams - Terrell - Williams - Terrell - Williams - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31333 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 6 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31763 - 31763 - - Brandon Bryant - Brandon - Bryant - Brandon - Bryant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31763 - nfl.t.20 - New York Jets - NYJ - - 11 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29022 - 29022 - - Jameill Showers - Jameill - Showers - Jameill - Showers - - IR - Injured Reserve - torn ACL - nfl.p.29022 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 28 - S - - https://s.yimg.com/iu/api/res/1.2/bh8GYjH9XS5WA7Jgcp2Csw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29022.png - small - - https://s.yimg.com/iu/api/res/1.2/bh8GYjH9XS5WA7Jgcp2Csw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29022.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31729 - 31729 - - Michael Cirino - Michael - Cirino - Michael - Cirino - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31729 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 40 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28148 - 28148 - - L.J. McCray - L.J. - McCray - L.J. - McCray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28148 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/GqPdHaPzX6Gz3diz9MFtHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28148.png - small - - https://s.yimg.com/iu/api/res/1.2/GqPdHaPzX6Gz3diz9MFtHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28148.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31118 - 31118 - - Marcus Allen - Marcus - Allen - Marcus - Allen - - nfl.p.31118 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/NZlkfCCoWng3u0VSwiSZtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31118.png - small - - https://s.yimg.com/iu/api/res/1.2/NZlkfCCoWng3u0VSwiSZtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31118.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30663 - 30663 - - David Jones - David - Jones - David - Jones - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30663 - nfl.t.17 - New England Patriots - NE - - 11 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/AkjtdTJ32DvdzrbtHlGwJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30663.png - small - - https://s.yimg.com/iu/api/res/1.2/AkjtdTJ32DvdzrbtHlGwJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30663.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29577 - 29577 - - Isaiah Johnson - Isaiah - Johnson - Isaiah - Johnson - - nfl.p.29577 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/sf2wjj7MOQ3MHzOFs2cmgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29577.png - small - - https://s.yimg.com/iu/api/res/1.2/sf2wjj7MOQ3MHzOFs2cmgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29577.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31094 - 31094 - - Armani Watts - Armani - Watts - Armani - Watts - - nfl.p.31094 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 25 - S - - https://s.yimg.com/iu/api/res/1.2/8tF9zEZ9KtTNPbXru5VKdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31094.png - small - - https://s.yimg.com/iu/api/res/1.2/8tF9zEZ9KtTNPbXru5VKdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31094.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31731 - 31731 - - Afolabi Laguda - Afolabi - Laguda - Afolabi - Laguda - - IR - Injured Reserve - undisclosed - nfl.p.31731 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31367 - 31367 - - Chris Cooper - Chris - Cooper - Chris - Cooper - - IR - Injured Reserve - undisclosed - nfl.p.31367 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31611 - 31611 - - Damon Webb - Damon - Webb - Damon - Webb - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31611 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29439 - 29439 - - Harlan Miller - Harlan - Miller - Harlan - Miller - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29439 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/px3f0OOlp55NmJDM8n1y3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29439.png - small - - https://s.yimg.com/iu/api/res/1.2/px3f0OOlp55NmJDM8n1y3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29439.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31324 - 31324 - - Zeke Turner - Zeke - Turner - Zeke - Turner - - nfl.p.31324 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 47 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29079 - 29079 - - Travell Dixon - Travell - Dixon - Travell - Dixon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29079 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/I.Ags5OZuYY2ZWXIvwx0rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29079.png - small - - https://s.yimg.com/iu/api/res/1.2/I.Ags5OZuYY2ZWXIvwx0rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29079.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28879 - 28879 - - Isaiah Johnson - Isaiah - Johnson - Isaiah - Johnson - - nfl.p.28879 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/v2xJsT4Z4a4YyGztJoI8ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28879.png - small - - https://s.yimg.com/iu/api/res/1.2/v2xJsT4Z4a4YyGztJoI8ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28879.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31576 - 31576 - - Ryan Neal - Ryan - Neal - Ryan - Neal - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31576 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 40 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31585 - 31585 - - Stephen Roberts - Stephen - Roberts - Stephen - Roberts - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31585 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30678 - 30678 - - Devin Chappell - Devin - Chappell - Devin - Chappell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30678 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 46 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31455 - 31455 - - Micah Hannemann - Micah - Hannemann - Micah - Hannemann - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31455 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31063 - 31063 - - Ronnie Harrison - Ronnie - Harrison - Ronnie - Harrison - - nfl.p.31063 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/bSetFbvHnOmUENzYZaz7lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31063.png - small - - https://s.yimg.com/iu/api/res/1.2/bSetFbvHnOmUENzYZaz7lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31063.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30404 - 30404 - - Charlie Miller - Charlie - Miller - Charlie - Miller - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30404 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30485 - 30485 - - Ironhead Gallon - Ironhead - Gallon - Ironhead - Gallon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30485 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/GwaVUzrIf6cVbj7ovb7rEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30485.png - small - - https://s.yimg.com/iu/api/res/1.2/GwaVUzrIf6cVbj7ovb7rEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30485.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30508 - 30508 - - Fish Smithson - Fish - Smithson - Fish - Smithson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30508 - nfl.t.28 - Washington Redskins - Was - - 4 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27650 - 27650 - - Marqueston Huff - Marqueston - Huff - Marqueston - Huff - - IR - Injured Reserve - undisclosed - nfl.p.27650 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/.YXt2HFCr5HhZuDe1w_Wzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27650.png - small - - https://s.yimg.com/iu/api/res/1.2/.YXt2HFCr5HhZuDe1w_Wzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27650.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31664 - 31664 - - Nick Orr - Nick - Orr - Nick - Orr - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31664 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 46 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29798 - 29798 - - Doug Middleton Jr. - Doug - Middleton Jr. - Doug - Middleton Jr. - - nfl.p.29798 - nfl.t.20 - New York Jets - NYJ - - 11 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/YR87PPQWqdh90qk2t6qsIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29798.1.png - small - - https://s.yimg.com/iu/api/res/1.2/YR87PPQWqdh90qk2t6qsIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29798.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30320 - 30320 - - Brandon Wilson - Brandon - Wilson - Brandon - Wilson - - nfl.p.30320 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 40 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31259 - 31259 - - Josh Liddell - Josh - Liddell - Josh - Liddell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31259 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27710 - 27710 - - Antone Exum Jr. - Antone - Exum Jr. - Antone - Exum Jr. - - nfl.p.27710 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/23D2w.Xte8h1f1ShhJq8cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27710.png - small - - https://s.yimg.com/iu/api/res/1.2/23D2w.Xte8h1f1ShhJq8cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27710.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31381 - 31381 - - Trey Marshall - Trey - Marshall - Trey - Marshall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31381 - nfl.t.7 - Denver Broncos - Den - - 10 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31693 - 31693 - - Tyrice Beverette - Tyrice - Beverette - Tyrice - Beverette - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31693 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.6767 - 6767 - - DeAngelo Hall - DeAngelo - Hall - DeAngelo - Hall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.6767 - nfl.t.28 - Washington Redskins - Was - - 4 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/23sr6BDpt2hT.ElhbFZuIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/6767.png - small - - https://s.yimg.com/iu/api/res/1.2/23sr6BDpt2hT.ElhbFZuIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/6767.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31373 - 31373 - - George Odum - George - Odum - George - Odum - - nfl.p.31373 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31360 - 31360 - - Secdrick Cooper - Secdrick - Cooper - Secdrick - Cooper - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31360 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30460 - 30460 - - Quincy Mauger - Quincy - Mauger - Quincy - Mauger - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30460 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/iQG.9HYPJNneXvtD8UXsNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30460.png - small - - https://s.yimg.com/iu/api/res/1.2/iQG.9HYPJNneXvtD8UXsNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30460.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30981 - 30981 - - Minkah Fitzpatrick - Minkah - Fitzpatrick - Minkah - Fitzpatrick - - nfl.p.30981 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/dgPck9Y64.tvDLnJc6qd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30981.png - small - - https://s.yimg.com/iu/api/res/1.2/dgPck9Y64.tvDLnJc6qd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30981.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30961 - 30961 - - Kacy Rodgers II - Kacy - Rodgers II - Kacy - Rodgers II - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30961 - nfl.t.20 - New York Jets - NYJ - - 11 - - 39 - LB,S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - S - - - - - - - - - - - - - week - 1 - 14 - 0 - - - - 380.p.31089 - 31089 - - Kyzir White - Kyzir - White - Kyzir - White - - nfl.p.31089 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 44 - LB,S - - https://s.yimg.com/iu/api/res/1.2/XjhB6M3GXZsoPINtk9cEJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31089.png - small - - https://s.yimg.com/iu/api/res/1.2/XjhB6M3GXZsoPINtk9cEJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31089.png - 0 - DP - - LB - S - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31469 - 31469 - - Jason Hall - Jason - Hall - Jason - Hall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31469 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 46 - LB,S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - S - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.28870 - 28870 - - Justin Currie - Justin - Currie - Justin - Currie - - IR - Injured Reserve - undisclosed - nfl.p.28870 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 42 - LB,S - - https://s.yimg.com/iu/api/res/1.2/JS52HtPgNiYln8qCtsWWkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28870.png - small - - https://s.yimg.com/iu/api/res/1.2/JS52HtPgNiYln8qCtsWWkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28870.png - 0 - DP - - LB - S - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - 380.p.29662 - 29662 - - Dominique Alexander - Dominique - Alexander - Dominique - Alexander - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29662 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/NGMM.XaNMb8RHr0TcEBFjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29662.1.png - small - - https://s.yimg.com/iu/api/res/1.2/NGMM.XaNMb8RHr0TcEBFjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29662.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.29403 - 29403 - - Antwione Williams - Antwione - Williams - Antwione - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29403 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/4jcRSJSnMXle6L8LpwBMCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29403.png - small - - https://s.yimg.com/iu/api/res/1.2/4jcRSJSnMXle6L8LpwBMCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29403.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.7769 - 7769 - - Tamba Hali - Tamba - Hali - Tamba - Hali - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7769 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 91 - LB - - https://s.yimg.com/iu/api/res/1.2/AQVO_KLSlcwroiN838j6zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/7769.png - small - - https://s.yimg.com/iu/api/res/1.2/AQVO_KLSlcwroiN838j6zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/7769.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.29424 - 29424 - - Josh Forrest - Josh - Forrest - Josh - Forrest - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29424 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/yOLFFnzwmBIg52F8hjCdRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29424.png - small - - https://s.yimg.com/iu/api/res/1.2/yOLFFnzwmBIg52F8hjCdRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29424.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.26711 - 26711 - - Corey Lemonier - Corey - Lemonier - Corey - Lemonier - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26711 - nfl.t.20 - New York Jets - NYJ - - 11 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/KQDeFzoiZ_mhcVJQEZXpAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26711.png - small - - https://s.yimg.com/iu/api/res/1.2/KQDeFzoiZ_mhcVJQEZXpAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26711.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.27770 - 27770 - - Corey Nelson - Corey - Nelson - Corey - Nelson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27770 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/zlnsg1zV3PeXsJeqE6Vwkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27770.1.png - small - - https://s.yimg.com/iu/api/res/1.2/zlnsg1zV3PeXsJeqE6Vwkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27770.1.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.27259 - 27259 - - Brandon Copeland - Brandon - Copeland - Brandon - Copeland - - nfl.p.27259 - nfl.t.20 - New York Jets - NYJ - - 11 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/EVtCn2OqIITmKit6MGdxNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27259.png - small - - https://s.yimg.com/iu/api/res/1.2/EVtCn2OqIITmKit6MGdxNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27259.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.29336 - 29336 - - Josh Perry - Josh - Perry - Josh - Perry - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29336 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/ZMXtu7ubkjsylLsLsNCq9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29336.png - small - - https://s.yimg.com/iu/api/res/1.2/ZMXtu7ubkjsylLsLsNCq9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29336.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.29456 - 29456 - - Aaron Wallace - Aaron - Wallace - Aaron - Wallace - - nfl.p.29456 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/VOryOTbH.vkJWuB9VHuywQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29456.png - small - - https://s.yimg.com/iu/api/res/1.2/VOryOTbH.vkJWuB9VHuywQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29456.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.27813 - 27813 - - Howard Jones - Howard - Jones - Howard - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27813 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/kUc71H3niUx05UMy5xYGIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27813.png - small - - https://s.yimg.com/iu/api/res/1.2/kUc71H3niUx05UMy5xYGIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27813.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28470 - 28470 - - Lorenzo Mauldin - Lorenzo - Mauldin - Lorenzo - Mauldin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28470 - nfl.t.20 - New York Jets - NYJ - - 11 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/iIXZ84botMmBrJeYp4BWjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28470.1.png - small - - https://s.yimg.com/iu/api/res/1.2/iIXZ84botMmBrJeYp4BWjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28470.1.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.29501 - 29501 - - Jeremy Cash - Jeremy - Cash - Jeremy - Cash - - IR - Injured Reserve - undisclosed - nfl.p.29501 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/MTcZ0ez0RESe0S.ggG.MiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29501.png - small - - https://s.yimg.com/iu/api/res/1.2/MTcZ0ez0RESe0S.ggG.MiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29501.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28075 - 28075 - - Jayrone Elliott - Jayrone - Elliott - Jayrone - Elliott - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28075 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/iKIiR_UvePhiAXPwW9rrYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28075.png - small - - https://s.yimg.com/iu/api/res/1.2/iKIiR_UvePhiAXPwW9rrYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28075.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.25509 - 25509 - - Mark Herzlich - Mark - Herzlich - Mark - Herzlich - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25509 - nfl.t.19 - New York Giants - NYG - - 9 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/XoNXXBudMlTX6zwcS117EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25509.png - small - - https://s.yimg.com/iu/api/res/1.2/XoNXXBudMlTX6zwcS117EA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25509.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28845 - 28845 - - Thurston Armbrister - Thurston - Armbrister - Thurston - Armbrister - - IR - Injured Reserve - undisclosed - nfl.p.28845 - nfl.t.19 - New York Giants - NYG - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/PNTFwctsb6CPOE7EYuG4bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28845.1.png - small - - https://s.yimg.com/iu/api/res/1.2/PNTFwctsb6CPOE7EYuG4bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28845.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24826 - 24826 - - Akeem Ayers - Akeem - Ayers - Akeem - Ayers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24826 - nfl.t.19 - New York Giants - NYG - - 9 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/SDggTDRRr5crILk9ZY4gFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/24826.png - small - - https://s.yimg.com/iu/api/res/1.2/SDggTDRRr5crILk9ZY4gFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/24826.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25508 - 25508 - - Spencer Paysinger - Spencer - Paysinger - Spencer - Paysinger - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25508 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/DAYktoSNyfhjdjpqlBUcbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25508.1.png - small - - https://s.yimg.com/iu/api/res/1.2/DAYktoSNyfhjdjpqlBUcbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25508.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24358 - 24358 - - Albert McClellan - Albert - McClellan - Albert - McClellan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24358 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/ed10720C2xJp9Mw2Yu.Xyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24358.png - small - - https://s.yimg.com/iu/api/res/1.2/ed10720C2xJp9Mw2Yu.Xyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24358.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25697 - 25697 - - Jerrell Freeman - Jerrell - Freeman - Jerrell - Freeman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25697 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/WqlxGveV.etPIr2NYqXXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/25697.png - small - - https://s.yimg.com/iu/api/res/1.2/WqlxGveV.etPIr2NYqXXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/25697.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26743 - 26743 - - Gerald Hodges - Gerald - Hodges - Gerald - Hodges - - nfl.p.26743 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/aggY9vDYExUbU_wyeAj8RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26743.png - small - - https://s.yimg.com/iu/api/res/1.2/aggY9vDYExUbU_wyeAj8RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26743.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.28528 - 28528 - - Ben Heeney - Ben - Heeney - Ben - Heeney - - IR - Injured Reserve - undisclosed - nfl.p.28528 - nfl.t.34 - Houston Texans - Hou - - 10 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/_l5J_1u4m5iC7OXELaVHig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28528.png - small - - https://s.yimg.com/iu/api/res/1.2/_l5J_1u4m5iC7OXELaVHig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28528.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29098 - 29098 - - Justin March-Lillard - Justin - March-Lillard - Justin - March-Lillard - - nfl.p.29098 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/EySr6y3GgmgRm.fjEn7nZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29098.1.png - small - - https://s.yimg.com/iu/api/res/1.2/EySr6y3GgmgRm.fjEn7nZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29098.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.9601 - 9601 - - Dannell Ellerbe - Dannell - Ellerbe - Dannell - Ellerbe - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9601 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/XByQuxtsgeP4gdGhBLmMRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9601.png - small - - https://s.yimg.com/iu/api/res/1.2/XByQuxtsgeP4gdGhBLmMRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9601.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.25736 - 25736 - - Whitney Mercilus - Whitney - Mercilus - Whitney - Mercilus - - nfl.p.25736 - nfl.t.34 - Houston Texans - Hou - - 10 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/2A7rmcB55USpXgGi.jCZXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25736.png - small - - https://s.yimg.com/iu/api/res/1.2/2A7rmcB55USpXgGi.jCZXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25736.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.25940 - 25940 - - Nate Stupar - Nate - Stupar - Nate - Stupar - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25940 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/O1_VgML4csWNxeVCJ3wJ.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25940.png - small - - https://s.yimg.com/iu/api/res/1.2/O1_VgML4csWNxeVCJ3wJ.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25940.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28070 - 28070 - - Shayne Skov - Shayne - Skov - Shayne - Skov - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28070 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/.WakHlkK3396gcqb83ULOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28070.png - small - - https://s.yimg.com/iu/api/res/1.2/.WakHlkK3396gcqb83ULOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28070.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27923 - 27923 - - Kasim Edebali - Kasim - Edebali - Kasim - Edebali - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27923 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/t4nOLiSrT3HxUCWRpvh0bA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27923.png - small - - https://s.yimg.com/iu/api/res/1.2/t4nOLiSrT3HxUCWRpvh0bA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27923.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.23994 - 23994 - - Sean Weatherspoon - Sean - Weatherspoon - Sean - Weatherspoon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.23994 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/urnYcuh1w70ShVA9khirxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23994.png - small - - https://s.yimg.com/iu/api/res/1.2/urnYcuh1w70ShVA9khirxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23994.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25029 - 25029 - - Malcolm Smith - Malcolm - Smith - Malcolm - Smith - - nfl.p.25029 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/ZARn_mWSYdEsaG7FJz3ldg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25029.png - small - - https://s.yimg.com/iu/api/res/1.2/ZARn_mWSYdEsaG7FJz3ldg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25029.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.28809 - 28809 - - Gabe Martin - Gabe - Martin - Gabe - Martin - - IR - Injured Reserve - undisclosed - nfl.p.28809 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/4.xFaDcvVvIieymyt.xrrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28809.png - small - - https://s.yimg.com/iu/api/res/1.2/4.xFaDcvVvIieymyt.xrrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28809.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28935 - 28935 - - Neville Hewitt - Neville - Hewitt - Neville - Hewitt - - nfl.p.28935 - nfl.t.20 - New York Jets - NYJ - - 11 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/.B42PAD6pSuPym3uvxeqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28935.1.png - small - - https://s.yimg.com/iu/api/res/1.2/.B42PAD6pSuPym3uvxeqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28935.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26694 - 26694 - - T.J. McDonald - T.J. - McDonald - T.J. - McDonald - - nfl.p.26694 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/KFTvgfj5f2vEeIrR04HorQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26694.png - small - - https://s.yimg.com/iu/api/res/1.2/KFTvgfj5f2vEeIrR04HorQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26694.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25739 - 25739 - - Harrison Smith - Harrison - Smith - Harrison - Smith - - nfl.p.25739 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/ZA8Qo7TwVoRRpYWiOeeUpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25739.png - small - - https://s.yimg.com/iu/api/res/1.2/ZA8Qo7TwVoRRpYWiOeeUpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25739.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 42 - 0 - - - - 380.p.29514 - 29514 - - Jarrod Wilson - Jarrod - Wilson - Jarrod - Wilson - - nfl.p.29514 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/w9gBlUVV0VYivngeKiADCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29514.1.png - small - - https://s.yimg.com/iu/api/res/1.2/w9gBlUVV0VYivngeKiADCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29514.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24109 - 24109 - - Kam Chancellor - Kam - Chancellor - Kam - Chancellor - - PUP-P - Physically Unable to Perform (Preseason) - nfl.p.24109 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/YWxB3gebEf1YkqpGHFSEYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24109.png - small - - https://s.yimg.com/iu/api/res/1.2/YWxB3gebEf1YkqpGHFSEYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24109.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29298 - 29298 - - Kevin Byard - Kevin - Byard - Kevin - Byard - - nfl.p.29298 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/U.2Iy9y95jUvWIBdYsudCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29298.png - small - - https://s.yimg.com/iu/api/res/1.2/U.2Iy9y95jUvWIBdYsudCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29298.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 39 - 0 - - - - 380.p.24677 - 24677 - - Anthony Levine Sr. - Anthony - Levine Sr. - Anthony - Levine Sr. - - nfl.p.24677 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/fZhZV5fCNL1yV4B.g.vOjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24677.png - small - - https://s.yimg.com/iu/api/res/1.2/fZhZV5fCNL1yV4B.g.vOjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24677.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29363 - 29363 - - Derrick Kindred - Derrick - Kindred - Derrick - Kindred - - nfl.p.29363 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/3E1ZE_2YQluaVaGpkZ4mzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29363.1.png - small - - https://s.yimg.com/iu/api/res/1.2/3E1ZE_2YQluaVaGpkZ4mzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29363.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24139 - 24139 - - Reshad Jones - Reshad - Jones - Reshad - Jones - - nfl.p.24139 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/tvQFR3uLft3oyi25NZjbTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24139.png - small - - https://s.yimg.com/iu/api/res/1.2/tvQFR3uLft3oyi25NZjbTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24139.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 57 - 0 - - - - 380.p.29216 - 29216 - - Dexter McCoil - Dexter - McCoil - Dexter - McCoil - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29216 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 14 - S - - https://s.yimg.com/iu/api/res/1.2/sjP7mDGXq6xWWsmOEAHd3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29216.png - small - - https://s.yimg.com/iu/api/res/1.2/sjP7mDGXq6xWWsmOEAHd3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29216.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28838 - 28838 - - Anthony Harris - Anthony - Harris - Anthony - Harris - - nfl.p.28838 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/rKnh_eTKsGSu5_dhmy7aBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28838.png - small - - https://s.yimg.com/iu/api/res/1.2/rKnh_eTKsGSu5_dhmy7aBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28838.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26703 - 26703 - - J.J. Wilcox - J.J. - Wilcox - J.J. - Wilcox - - nfl.p.26703 - nfl.t.20 - New York Jets - NYJ - - 11 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/EGVbwxbFNgNuuO0JOiUlZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26703.png - small - - https://s.yimg.com/iu/api/res/1.2/EGVbwxbFNgNuuO0JOiUlZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26703.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29720 - 29720 - - Kentrell Brice - Kentrell - Brice - Kentrell - Brice - - nfl.p.29720 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/y3yBsRhrlfzUta7j36IpAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29720.png - small - - https://s.yimg.com/iu/api/res/1.2/y3yBsRhrlfzUta7j36IpAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29720.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29292 - 29292 - - Sean Davis - Sean - Davis - Sean - Davis - - nfl.p.29292 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/ti3XDnfx_tHceOu4t8O5dQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29292.png - small - - https://s.yimg.com/iu/api/res/1.2/ti3XDnfx_tHceOu4t8O5dQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29292.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 12 - 0 - - - - 380.p.28785 - 28785 - - Deshazor Everett - Deshazor - Everett - Deshazor - Everett - - nfl.p.28785 - nfl.t.28 - Washington Redskins - Was - - 4 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/KYl.cVKj2wxujWSvSRyGjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28785.png - small - - https://s.yimg.com/iu/api/res/1.2/KYl.cVKj2wxujWSvSRyGjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28785.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29453 - 29453 - - Will Parks - Will - Parks - Will - Parks - - Q - Questionable - nfl.p.29453 - nfl.t.7 - Denver Broncos - Den - - 10 - - 34 - S - - https://s.yimg.com/iu/api/res/1.2/21Mwaj1Ym41S0L1YXpzJcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29453.1.png - small - - https://s.yimg.com/iu/api/res/1.2/21Mwaj1Ym41S0L1YXpzJcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29453.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28036 - 28036 - - Daniel Sorensen - Daniel - Sorensen - Daniel - Sorensen - - IR - Injured Reserve - undisclosed - nfl.p.28036 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 49 - S - - https://s.yimg.com/iu/api/res/1.2/s7MhfQvNzto8gs4YHrlV4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28036.1.png - small - - https://s.yimg.com/iu/api/res/1.2/s7MhfQvNzto8gs4YHrlV4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28036.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26356 - 26356 - - Rodney McLeod - Rodney - McLeod - Rodney - McLeod - - nfl.p.26356 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/5C1dpMUZbAttbki8qRlnuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26356.png - small - - https://s.yimg.com/iu/api/res/1.2/5C1dpMUZbAttbki8qRlnuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26356.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26680 - 26680 - - D.J. Swearinger - D.J. - Swearinger - D.J. - Swearinger - - nfl.p.26680 - nfl.t.28 - Washington Redskins - Was - - 4 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/2Ji.wanv1PEaQRjz_eFuXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26680.png - small - - https://s.yimg.com/iu/api/res/1.2/2Ji.wanv1PEaQRjz_eFuXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26680.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.27558 - 27558 - - Jimmie Ward - Jimmie - Ward - Jimmie - Ward - - Q - Questionable - nfl.p.27558 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/z0YnKw30RY2CNW.QBiqvmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27558.png - small - - https://s.yimg.com/iu/api/res/1.2/z0YnKw30RY2CNW.QBiqvmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27558.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29952 - 29952 - - Marwin Evans - Marwin - Evans - Marwin - Evans - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29952 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 25 - S - - https://s.yimg.com/iu/api/res/1.2/cqtQGN8jRY7hiAbcOWk77Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29952.png - small - - https://s.yimg.com/iu/api/res/1.2/cqtQGN8jRY7hiAbcOWk77Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29952.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9352 - 9352 - - Lardarius Webb - Lardarius - Webb - Lardarius - Webb - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9352 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/sk7HEBf.pbl3dVaLwGsSXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9352.png - small - - https://s.yimg.com/iu/api/res/1.2/sk7HEBf.pbl3dVaLwGsSXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/9352.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25884 - 25884 - - Keith Tandy - Keith - Tandy - Keith - Tandy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25884 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/aRhxWaik4.HUJ0C5Y2khfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25884.png - small - - https://s.yimg.com/iu/api/res/1.2/aRhxWaik4.HUJ0C5Y2khfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25884.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26734 - 26734 - - Shamarko Thomas - Shamarko - Thomas - Shamarko - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26734 - nfl.t.7 - Denver Broncos - Den - - 10 - - 47 - S - - https://s.yimg.com/iu/api/res/1.2/nx6Xf2DXOZLfFpd640wDCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26734.png - small - - https://s.yimg.com/iu/api/res/1.2/nx6Xf2DXOZLfFpd640wDCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26734.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29251 - 29251 - - Keanu Neal - Keanu - Neal - Keanu - Neal - - nfl.p.29251 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/mswQqZJA3cm20OjlOdkzXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29251.png - small - - https://s.yimg.com/iu/api/res/1.2/mswQqZJA3cm20OjlOdkzXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29251.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 50 - 0 - - - - 380.p.28434 - 28434 - - Jaquiski Tartt - Jaquiski - Tartt - Jaquiski - Tartt - - nfl.p.28434 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/wGXdjQaE8PgRvoeRv5FIcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28434.png - small - - https://s.yimg.com/iu/api/res/1.2/wGXdjQaE8PgRvoeRv5FIcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28434.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.27675 - 27675 - - Ricardo Allen - Ricardo - Allen - Ricardo - Allen - - nfl.p.27675 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/dJqZe4LJKbRGt6Sqd.3iSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27675.png - small - - https://s.yimg.com/iu/api/res/1.2/dJqZe4LJKbRGt6Sqd.3iSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27675.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24326 - 24326 - - Chris Maragos - Chris - Maragos - Chris - Maragos - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.24326 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/Pr.YLqEDdbr1dzmGDlY4Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24326.png - small - - https://s.yimg.com/iu/api/res/1.2/Pr.YLqEDdbr1dzmGDlY4Jg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24326.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26372 - 26372 - - Tashaun Gipson - Tashaun - Gipson - Tashaun - Gipson - - nfl.p.26372 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/EE6iWynQ5EzTZ_pt9A0Acw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26372.1.png - small - - https://s.yimg.com/iu/api/res/1.2/EE6iWynQ5EzTZ_pt9A0Acw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26372.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25090 - 25090 - - Ron Parker - Ron - Parker - Ron - Parker - - nfl.p.25090 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/Ye_l8imspHuH0Eu3BSmbOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25090.1.png - small - - https://s.yimg.com/iu/api/res/1.2/Ye_l8imspHuH0Eu3BSmbOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25090.1.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26917 - 26917 - - Jahleel Addae - Jahleel - Addae - Jahleel - Addae - - nfl.p.26917 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/suwoasbuOI03olSyuYq3uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26917.png - small - - https://s.yimg.com/iu/api/res/1.2/suwoasbuOI03olSyuYq3uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26917.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.9311 - 9311 - - Mike Mitchell - Mike - Mitchell - Mike - Mitchell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9311 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/b63zpUCEjyNmcB2cm28QLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9311.png - small - - https://s.yimg.com/iu/api/res/1.2/b63zpUCEjyNmcB2cm28QLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9311.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24887 - 24887 - - Da'Norris Searcy - Da'Norris - Searcy - Da'Norris - Searcy - - nfl.p.24887 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/SuRoTd9yqIi5pOGM4VKpbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24887.png - small - - https://s.yimg.com/iu/api/res/1.2/SuRoTd9yqIi5pOGM4VKpbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24887.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7121 - 7121 - - Mike Adams - Mike - Adams - Mike - Adams - - nfl.p.7121 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/KqFVzWLcSmq7ZD0wYAVzbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7121.png - small - - https://s.yimg.com/iu/api/res/1.2/KqFVzWLcSmq7ZD0wYAVzbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7121.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29446 - 29446 - - Kavon Frazier - Kavon - Frazier - Kavon - Frazier - - Q - Questionable - nfl.p.29446 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/v8qmq2earicsj_ofipwMdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29446.png - small - - https://s.yimg.com/iu/api/res/1.2/v8qmq2earicsj_ofipwMdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29446.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26782 - 26782 - - Micah Hyde - Micah - Hyde - Micah - Hyde - - nfl.p.26782 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/L69TRYUMNbQf0O33eheaDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26782.png - small - - https://s.yimg.com/iu/api/res/1.2/L69TRYUMNbQf0O33eheaDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26782.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.29086 - 29086 - - Corey Moore - Corey - Moore - Corey - Moore - - nfl.p.29086 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/g.GPKQsQqLqEJAvC7QS5.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29086.png - small - - https://s.yimg.com/iu/api/res/1.2/g.GPKQsQqLqEJAvC7QS5.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29086.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27744 - 27744 - - Andre Hal - Andre - Hal - Andre - Hal - - O - Out - nfl.p.27744 - nfl.t.34 - Houston Texans - Hou - - 10 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/qxmJKMbCiP25DSzhp0cwbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27744.png - small - - https://s.yimg.com/iu/api/res/1.2/qxmJKMbCiP25DSzhp0cwbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27744.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24259 - 24259 - - Rafael Bush - Rafael - Bush - Rafael - Bush - - nfl.p.24259 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/APPcuoiZmh_h87soqOWEsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24259.png - small - - https://s.yimg.com/iu/api/res/1.2/APPcuoiZmh_h87soqOWEsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24259.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9305 - 9305 - - Darius Butler - Darius - Butler - Darius - Butler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9305 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/AjK14_8rt7MpuhabRJ1c_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/9305.png - small - - https://s.yimg.com/iu/api/res/1.2/AjK14_8rt7MpuhabRJ1c_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/9305.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8877 - 8877 - - Tyvon Branch - Tyvon - Branch - Tyvon - Branch - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8877 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/5p4m_brpgwzGmVESs.5y9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8877.png - small - - https://s.yimg.com/iu/api/res/1.2/5p4m_brpgwzGmVESs.5y9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8877.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27180 - 27180 - - Bradley McDougald - Bradley - McDougald - Bradley - McDougald - - Q - Questionable - nfl.p.27180 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/bAUbpw9eE8Q4MgP_8o4cHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27180.png - small - - https://s.yimg.com/iu/api/res/1.2/bAUbpw9eE8Q4MgP_8o4cHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27180.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28530 - 28530 - - Adrian Amos - Adrian - Amos - Adrian - Amos - - nfl.p.28530 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 38 - S - - https://s.yimg.com/iu/api/res/1.2/a.j6TaAC1spHWRU7BTP59g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28530.png - small - - https://s.yimg.com/iu/api/res/1.2/a.j6TaAC1spHWRU7BTP59g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28530.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28497 - 28497 - - Clayton Geathers - Clayton - Geathers - Clayton - Geathers - - nfl.p.28497 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/x0OPLac.3N_avZyCyZGNiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28497.1.png - small - - https://s.yimg.com/iu/api/res/1.2/x0OPLac.3N_avZyCyZGNiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28497.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25758 - 25758 - - Tavon Wilson - Tavon - Wilson - Tavon - Wilson - - nfl.p.25758 - nfl.t.8 - Detroit Lions - Det - - 6 - - 32 - S - - https://s.yimg.com/iu/api/res/1.2/Lcia5dOEYnQawZjURfhm2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25758.png - small - - https://s.yimg.com/iu/api/res/1.2/Lcia5dOEYnQawZjURfhm2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25758.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.24880 - 24880 - - Chris Conte - Chris - Conte - Chris - Conte - - nfl.p.24880 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/6VSrcaNMNmaQfpED0Oq8Nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24880.png - small - - https://s.yimg.com/iu/api/res/1.2/6VSrcaNMNmaQfpED0Oq8Nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24880.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26866 - 26866 - - Kemal Ishmael - Kemal - Ishmael - Kemal - Ishmael - - nfl.p.26866 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/DyHzNodFvjM4UEC1YuTsbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26866.png - small - - https://s.yimg.com/iu/api/res/1.2/DyHzNodFvjM4UEC1YuTsbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26866.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8422 - 8422 - - Corey Graham - Corey - Graham - Corey - Graham - - nfl.p.8422 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 24 - S - - https://s.yimg.com/iu/api/res/1.2/WsF01Xmmba_0bNgu38aKYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8422.1.png - small - - https://s.yimg.com/iu/api/res/1.2/WsF01Xmmba_0bNgu38aKYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8422.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24046 - 24046 - - Morgan Burnett - Morgan - Burnett - Morgan - Burnett - - nfl.p.24046 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/mJSP5GkJZenr5S0ehwMOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24046.png - small - - https://s.yimg.com/iu/api/res/1.2/mJSP5GkJZenr5S0ehwMOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24046.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.29248 - 29248 - - Karl Joseph - Karl - Joseph - Karl - Joseph - - nfl.p.29248 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/eCZDiQ7eW7oYgyJAmILyvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29248.png - small - - https://s.yimg.com/iu/api/res/1.2/eCZDiQ7eW7oYgyJAmILyvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29248.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.28421 - 28421 - - Landon Collins - Landon - Collins - Landon - Collins - - nfl.p.28421 - nfl.t.19 - New York Giants - NYG - - 9 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/UHuO7yrsCIdO6pMZINlINA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28421.png - small - - https://s.yimg.com/iu/api/res/1.2/UHuO7yrsCIdO6pMZINlINA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28421.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 51 - 0 - - - - 380.p.27638 - 27638 - - Maurice Alexander - Maurice - Alexander - Maurice - Alexander - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27638 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/RNCshz1dLtUgjYw3UgSqSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27638.png - small - - https://s.yimg.com/iu/api/res/1.2/RNCshz1dLtUgjYw3UgSqSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27638.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28503 - 28503 - - Ibraheim Campbell - Ibraheim - Campbell - Ibraheim - Campbell - - nfl.p.28503 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/VNt.LAT_LbYpbt6LOlX8Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28503.png - small - - https://s.yimg.com/iu/api/res/1.2/VNt.LAT_LbYpbt6LOlX8Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28503.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26265 - 26265 - - Michael Thomas - Michael - Thomas - Michael - Thomas - - nfl.p.26265 - nfl.t.19 - New York Giants - NYG - - 9 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/HA6_0glcUTe_6pgghn0xhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26265.1.png - small - - https://s.yimg.com/iu/api/res/1.2/HA6_0glcUTe_6pgghn0xhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26265.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9441 - 9441 - - Don Carey - Don - Carey - Don - Carey - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.9441 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/Odz5X0CzwODi9aUaB3AF2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9441.png - small - - https://s.yimg.com/iu/api/res/1.2/Odz5X0CzwODi9aUaB3AF2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9441.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29345 - 29345 - - Miles Killebrew - Miles - Killebrew - Miles - Killebrew - - nfl.p.29345 - nfl.t.8 - Detroit Lions - Det - - 6 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/rF.UC8WYfNIVN0t5ic.DBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29345.png - small - - https://s.yimg.com/iu/api/res/1.2/rF.UC8WYfNIVN0t5ic.DBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29345.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26638 - 26638 - - Kenny Vaccaro - Kenny - Vaccaro - Kenny - Vaccaro - - nfl.p.26638 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 24 - S - - https://s.yimg.com/iu/api/res/1.2/OB28ivj6qcGqMrvLTE2Xzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/26638.png - small - - https://s.yimg.com/iu/api/res/1.2/OB28ivj6qcGqMrvLTE2Xzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/26638.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26656 - 26656 - - Johnathan Cyprien - Johnathan - Cyprien - Johnathan - Cyprien - - IR - Injured Reserve - torn left ACL - nfl.p.26656 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 37 - S - - https://s.yimg.com/iu/api/res/1.2/3hY9rdLCmUJ_obvkE9LV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26656.png - small - - https://s.yimg.com/iu/api/res/1.2/3hY9rdLCmUJ_obvkE9LV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26656.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27081 - 27081 - - Tony Jefferson - Tony - Jefferson - Tony - Jefferson - - nfl.p.27081 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/YejUoMFxQDpiN2EK9Om93w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27081.png - small - - https://s.yimg.com/iu/api/res/1.2/YejUoMFxQDpiN2EK9Om93w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27081.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.26484 - 26484 - - Eddie Pleasant - Eddie - Pleasant - Eddie - Pleasant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26484 - nfl.t.17 - New England Patriots - NE - - 11 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/SuqVtwiL.lnekLQ2oMHDow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26484.1.png - small - - https://s.yimg.com/iu/api/res/1.2/SuqVtwiL.lnekLQ2oMHDow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26484.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9306 - 9306 - - Jairus Byrd - Jairus - Byrd - Jairus - Byrd - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9306 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/Hd9Tajw.rFDb8tgVsEQL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9306.png - small - - https://s.yimg.com/iu/api/res/1.2/Hd9Tajw.rFDb8tgVsEQL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9306.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24603 - 24603 - - Barry Church - Barry - Church - Barry - Church - - nfl.p.24603 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/P3eWw9fYl6qW8HceyUpagg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24603.png - small - - https://s.yimg.com/iu/api/res/1.2/P3eWw9fYl6qW8HceyUpagg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24603.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.26641 - 26641 - - Eric Reid - Eric - Reid - Eric - Reid - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26641 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/q1Ki8rJNQTsilDSYDlNAJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26641.png - small - - https://s.yimg.com/iu/api/res/1.2/q1Ki8rJNQTsilDSYDlNAJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26641.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9298 - 9298 - - Patrick Chung - Patrick - Chung - Patrick - Chung - - nfl.p.9298 - nfl.t.17 - New England Patriots - NE - - 11 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/h6zBojQU1YJSYF6XRjoPRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9298.png - small - - https://s.yimg.com/iu/api/res/1.2/h6zBojQU1YJSYF6XRjoPRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9298.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.26692 - 26692 - - Tyrann Mathieu - Tyrann - Mathieu - Tyrann - Mathieu - - nfl.p.26692 - nfl.t.34 - Houston Texans - Hou - - 10 - - 32 - S - - https://s.yimg.com/iu/api/res/1.2/gm7Y.sNLq3SZPc13sxfrvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26692.png - small - - https://s.yimg.com/iu/api/res/1.2/gm7Y.sNLq3SZPc13sxfrvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26692.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 37 - 0 - - - - 380.p.28585 - 28585 - - Derron Smith - Derron - Smith - Derron - Smith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28585 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/XzhUO3RoMX_gfFhu5I61jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28585.png - small - - https://s.yimg.com/iu/api/res/1.2/XzhUO3RoMX_gfFhu5I61jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28585.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29295 - 29295 - - Vonn Bell - Vonn - Bell - Vonn - Bell - - nfl.p.29295 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 24 - S - - https://s.yimg.com/iu/api/res/1.2/gTBlanZ6hhoXPCr8eP2DSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29295.png - small - - https://s.yimg.com/iu/api/res/1.2/gTBlanZ6hhoXPCr8eP2DSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29295.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.24837 - 24837 - - Marcus Gilchrist - Marcus - Gilchrist - Marcus - Gilchrist - - nfl.p.24837 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/OqpjHm9ONqgW071e7lAezA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24837.png - small - - https://s.yimg.com/iu/api/res/1.2/OqpjHm9ONqgW071e7lAezA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24837.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.25877 - 25877 - - George Iloka - George - Iloka - George - Iloka - - nfl.p.25877 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/Ipi5h5PZn7ZfKCbEz2BNAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25877.png - small - - https://s.yimg.com/iu/api/res/1.2/Ipi5h5PZn7ZfKCbEz2BNAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25877.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27269 - 27269 - - Brynden Trawick - Brynden - Trawick - Brynden - Trawick - - nfl.p.27269 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/23uUWMd1gb0lylmhL12X5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27269.png - small - - https://s.yimg.com/iu/api/res/1.2/23uUWMd1gb0lylmhL12X5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27269.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24012 - 24012 - - Nate Allen - Nate - Allen - Nate - Allen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24012 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/V9p.nrh.6ytDsMysII.Erg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/24012.png - small - - https://s.yimg.com/iu/api/res/1.2/V9p.nrh.6ytDsMysII.Erg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/24012.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29574 - 29574 - - Matthias Farley - Matthias - Farley - Matthias - Farley - - nfl.p.29574 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/tbe796w9URK_AizQNjbkpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29574.png - small - - https://s.yimg.com/iu/api/res/1.2/tbe796w9URK_AizQNjbkpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29574.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29478 - 29478 - - Jayron Kearse - Jayron - Kearse - Jayron - Kearse - - nfl.p.29478 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/SMnnclQdggESxlJJUg6Nng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29478.png - small - - https://s.yimg.com/iu/api/res/1.2/SMnnclQdggESxlJJUg6Nng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29478.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29358 - 29358 - - Deon Bush - Deon - Bush - Deon - Bush - - nfl.p.29358 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/1_HRQKWcJPB5w9axzD1tVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29358.png - small - - https://s.yimg.com/iu/api/res/1.2/1_HRQKWcJPB5w9axzD1tVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29358.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24002 - 24002 - - Devin McCourty - Devin - McCourty - Devin - McCourty - - nfl.p.24002 - nfl.t.17 - New England Patriots - NE - - 11 - - 32 - S - - https://s.yimg.com/iu/api/res/1.2/RV0rSrZMhLsZnPLhb1o7Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24002.png - small - - https://s.yimg.com/iu/api/res/1.2/RV0rSrZMhLsZnPLhb1o7Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24002.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 23 - 0 - - - - 380.p.27629 - 27629 - - Jaylen Watkins - Jaylen - Watkins - Jaylen - Watkins - - IR - Injured Reserve - torn right ACL - nfl.p.27629 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/pkJdzfvDyYJ7H9kmKhu5UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27629.png - small - - https://s.yimg.com/iu/api/res/1.2/pkJdzfvDyYJ7H9kmKhu5UQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27629.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27105 - 27105 - - Cody Davis - Cody - Davis - Cody - Davis - - nfl.p.27105 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/J7w.WoHwczbQmPfPDq9NWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27105.png - small - - https://s.yimg.com/iu/api/res/1.2/J7w.WoHwczbQmPfPDq9NWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27105.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8291 - 8291 - - Eric Weddle - Eric - Weddle - Eric - Weddle - - nfl.p.8291 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 32 - S - - https://s.yimg.com/iu/api/res/1.2/eEQF8yH1FOl8izQ.SXxHdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8291.png - small - - https://s.yimg.com/iu/api/res/1.2/eEQF8yH1FOl8izQ.SXxHdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8291.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.27569 - 27569 - - Lamarcus Joyner - Lamarcus - Joyner - Lamarcus - Joyner - - nfl.p.27569 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/3SIFG7kCpGTMnjezwhtwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27569.png - small - - https://s.yimg.com/iu/api/res/1.2/3SIFG7kCpGTMnjezwhtwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27569.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.29291 - 29291 - - T.J. Green - T.J. - Green - T.J. - Green - - IR - Injured Reserve - undisclosed - nfl.p.29291 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 32 - S - - https://s.yimg.com/iu/api/res/1.2/GBfMy1LIb9SgVWP0f.qRqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29291.1.png - small - - https://s.yimg.com/iu/api/res/1.2/GBfMy1LIb9SgVWP0f.qRqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29291.1.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9376 - 9376 - - Glover Quin - Glover - Quin - Glover - Quin - - nfl.p.9376 - nfl.t.8 - Detroit Lions - Det - - 6 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/obTeHR0wTQjpIYYUk5XP2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9376.png - small - - https://s.yimg.com/iu/api/res/1.2/obTeHR0wTQjpIYYUk5XP2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9376.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.26714 - 26714 - - Duron Harmon - Duron - Harmon - Duron - Harmon - - nfl.p.26714 - nfl.t.17 - New England Patriots - NE - - 11 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/X58nDGoZt1waVKuQqcVwDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/26714.png - small - - https://s.yimg.com/iu/api/res/1.2/X58nDGoZt1waVKuQqcVwDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/26714.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24977 - 24977 - - Colin Jones - Colin - Jones - Colin - Jones - - nfl.p.24977 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/PbVV_AQG3MWxSem0sIx9gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24977.png - small - - https://s.yimg.com/iu/api/res/1.2/PbVV_AQG3MWxSem0sIx9gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24977.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26621 - 26621 - - Chris Banjo - Chris - Banjo - Chris - Banjo - - nfl.p.26621 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/PprhIoPDVMLa6AhdPXH8YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26621.png - small - - https://s.yimg.com/iu/api/res/1.2/PprhIoPDVMLa6AhdPXH8YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26621.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8275 - 8275 - - Reggie Nelson - Reggie - Nelson - Reggie - Nelson - - nfl.p.8275 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/HAI_ok.Kq.m2uRlcxE8UMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8275.png - small - - https://s.yimg.com/iu/api/res/1.2/HAI_ok.Kq.m2uRlcxE8UMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8275.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29332 - 29332 - - Justin Simmons - Justin - Simmons - Justin - Simmons - - nfl.p.29332 - nfl.t.7 - Denver Broncos - Den - - 10 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/UZ4YPb5zjpfuKdMRFV0UnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29332.png - small - - https://s.yimg.com/iu/api/res/1.2/UZ4YPb5zjpfuKdMRFV0UnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29332.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.27656 - 27656 - - Tre Boston - Tre - Boston - Tre - Boston - - nfl.p.27656 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/egO1niwL1MIPiTQXX9T0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27656.png - small - - https://s.yimg.com/iu/api/res/1.2/egO1niwL1MIPiTQXX9T0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27656.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26989 - 26989 - - Rontez Miles - Rontez - Miles - Rontez - Miles - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.26989 - nfl.t.20 - New York Jets - NYJ - - 11 - - 45 - S - - https://s.yimg.com/iu/api/res/1.2/eOiOvBMIULS2f5w9wYqICQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26989.1.png - small - - https://s.yimg.com/iu/api/res/1.2/eOiOvBMIULS2f5w9wYqICQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26989.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28303 - 28303 - - Adrian Phillips - Adrian - Phillips - Adrian - Phillips - - nfl.p.28303 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 31 - S - - https://s.yimg.com/iu/api/res/1.2/.oVFZExSWRHBD_kaBmU8Rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28303.png - small - - https://s.yimg.com/iu/api/res/1.2/.oVFZExSWRHBD_kaBmU8Rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28303.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29841 - 29841 - - Andrew Adams - Andrew - Adams - Andrew - Adams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29841 - nfl.t.19 - New York Giants - NYG - - 9 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/wvrUZ9rtVzawOjMm1OgvqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29841.png - small - - https://s.yimg.com/iu/api/res/1.2/wvrUZ9rtVzawOjMm1OgvqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29841.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29479 - 29479 - - Clayton Fejedelem - Clayton - Fejedelem - Clayton - Fejedelem - - nfl.p.29479 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/c2Zd4pcGS_evrG9iZHj9nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29479.1.png - small - - https://s.yimg.com/iu/api/res/1.2/c2Zd4pcGS_evrG9iZHj9nA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29479.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27549 - 27549 - - Ha Ha Clinton-Dix - Ha Ha - Clinton-Dix - Ha Ha - Clinton-Dix - - nfl.p.27549 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/RnUTagsaLKvFr8.rljiKMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27549.png - small - - https://s.yimg.com/iu/api/res/1.2/RnUTagsaLKvFr8.rljiKMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27549.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 33 - 0 - - - - 380.p.23989 - 23989 - - Earl Thomas - Earl - Thomas - Earl - Thomas - - O - Out - nfl.p.23989 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/e2enV3FGLnUQVehTgy9o0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23989.png - small - - https://s.yimg.com/iu/api/res/1.2/e2enV3FGLnUQVehTgy9o0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23989.png - 0 - DP - - S - - 1 - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.24219 - 24219 - - Kurt Coleman - Kurt - Coleman - Kurt - Coleman - - nfl.p.24219 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/ydFZpHdfS15vHQ9BtvD.ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24219.png - small - - https://s.yimg.com/iu/api/res/1.2/ydFZpHdfS15vHQ9BtvD.ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24219.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.7956 - 7956 - - Antoine Bethea - Antoine - Bethea - Antoine - Bethea - - nfl.p.7956 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/Ubjr6tEGhxzA6fjsldc67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7956.png - small - - https://s.yimg.com/iu/api/res/1.2/Ubjr6tEGhxzA6fjsldc67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7956.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24590 - 24590 - - Darian Stewart - Darian - Stewart - Darian - Stewart - - nfl.p.24590 - nfl.t.7 - Denver Broncos - Den - - 10 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/1EdKZzo6.4o39_6vT41Ksg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24590.png - small - - https://s.yimg.com/iu/api/res/1.2/1EdKZzo6.4o39_6vT41Ksg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24590.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24013 - 24013 - - T.J. Ward - T.J. - Ward - T.J. - Ward - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24013 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 43 - S - - https://s.yimg.com/iu/api/res/1.2/MLFKrk8VYZ3Eel0xZ7u5qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/24013.png - small - - https://s.yimg.com/iu/api/res/1.2/MLFKrk8VYZ3Eel0xZ7u5qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/24013.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28452 - 28452 - - Jordan Richards - Jordan - Richards - Jordan - Richards - - nfl.p.28452 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/Dqoao5yLhJwy4C9_ZqEaQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28452.png - small - - https://s.yimg.com/iu/api/res/1.2/Dqoao5yLhJwy4C9_ZqEaQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28452.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26841 - 26841 - - Jordan Poyer - Jordan - Poyer - Jordan - Poyer - - nfl.p.26841 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/uY5rZtHVOpjoQ9MHF6ID3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26841.1.png - small - - https://s.yimg.com/iu/api/res/1.2/uY5rZtHVOpjoQ9MHF6ID3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26841.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 25 - 0 - - - - 380.p.31085 - 31085 - - Joel Iyiegbuniwe - Joel - Iyiegbuniwe - Joel - Iyiegbuniwe - - nfl.p.31085 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/R4fcLouwX3RFZ5IJCNgQMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31085.png - small - - https://s.yimg.com/iu/api/res/1.2/R4fcLouwX3RFZ5IJCNgQMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31085.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31313 - 31313 - - Mike Needham - Mike - Needham - Mike - Needham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31313 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28798 - 28798 - - Marcus Rush - Marcus - Rush - Marcus - Rush - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28798 - nfl.t.7 - Denver Broncos - Den - - 10 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/VpYHyQeyJwLMTYXTnlNPyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28798.png - small - - https://s.yimg.com/iu/api/res/1.2/VpYHyQeyJwLMTYXTnlNPyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28798.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31480 - 31480 - - Jason Cabinda - Jason - Cabinda - Jason - Cabinda - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31480 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31487 - 31487 - - Raymond Davison III - Raymond - Davison III - Raymond - Davison III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31487 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 60 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30315 - 30315 - - Pita Taumoepenu - Pita - Taumoepenu - Pita - Taumoepenu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30315 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/L0FNDsctudv71DeCMdDa8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30315.png - small - - https://s.yimg.com/iu/api/res/1.2/L0FNDsctudv71DeCMdDa8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30315.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30576 - 30576 - - Brandon Bell - Brandon - Bell - Brandon - Bell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30576 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31563 - 31563 - - Junior Joseph - Junior - Joseph - Junior - Joseph - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31563 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28624 - 28624 - - Mark Nzeocha - Mark - Nzeocha - Mark - Nzeocha - - nfl.p.28624 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/eUO4s1ueQNg2tt3Gmv2Tgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28624.png - small - - https://s.yimg.com/iu/api/res/1.2/eUO4s1ueQNg2tt3Gmv2Tgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28624.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29937 - 29937 - - Pete Robertson - Pete - Robertson - Pete - Robertson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29937 - nfl.t.28 - Washington Redskins - Was - - 4 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/aQE9FWJlJ38f8pWgSpWWCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29937.png - small - - https://s.yimg.com/iu/api/res/1.2/aQE9FWJlJ38f8pWgSpWWCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29937.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31264 - 31264 - - Reggie Hunter - Reggie - Hunter - Reggie - Hunter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31264 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27424 - 27424 - - Freddie Bishop III - Freddie - Bishop III - Freddie - Bishop III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27424 - nfl.t.8 - Detroit Lions - Det - - 6 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/2vkmcsLu47plxcqp_EubPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27424.1.png - small - - https://s.yimg.com/iu/api/res/1.2/2vkmcsLu47plxcqp_EubPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27424.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31300 - 31300 - - Frank Ginda - Frank - Ginda - Frank - Ginda - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31300 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29926 - 29926 - - Micah Awe - Micah - Awe - Micah - Awe - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29926 - nfl.t.20 - New York Jets - NYJ - - 11 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/Y1qz_uBJgSqgdmL6_uYm0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29926.png - small - - https://s.yimg.com/iu/api/res/1.2/Y1qz_uBJgSqgdmL6_uYm0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29926.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31597 - 31597 - - Corey Thompson - Corey - Thompson - Corey - Thompson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31597 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31714 - 31714 - - KeShun Freeman - KeShun - Freeman - KeShun - Freeman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31714 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28599 - 28599 - - Reshard Cliett - Reshard - Cliett - Reshard - Cliett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28599 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 43 - LB - - https://s.yimg.com/iu/api/res/1.2/FPNdWIL8_0x998HWlp5yGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28599.1.png - small - - https://s.yimg.com/iu/api/res/1.2/FPNdWIL8_0x998HWlp5yGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28599.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31742 - 31742 - - Shaheed Salmon - Shaheed - Salmon - Shaheed - Salmon - - NA - Inactive: Coach's Decision or Not on Roster - ankle - nfl.p.31742 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31170 - 31170 - - Foyesade Oluokun - Foyesade - Oluokun - Foyesade - Oluokun - - nfl.p.31170 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30904 - 30904 - - Brady Sheldon - Brady - Sheldon - Brady - Sheldon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30904 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30659 - 30659 - - Brooks Ellis - Brooks - Ellis - Brooks - Ellis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30659 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/i6DIZi9WR0.o5CidQUUmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30659.png - small - - https://s.yimg.com/iu/api/res/1.2/i6DIZi9WR0.o5CidQUUmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30659.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30021 - 30021 - - Kyle Coleman - Kyle - Coleman - Kyle - Coleman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30021 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 96 - LB - - https://s.yimg.com/iu/api/res/1.2/9efpXp0.NgpaLPodR97GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30021.png - small - - https://s.yimg.com/iu/api/res/1.2/9efpXp0.NgpaLPodR97GuA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30021.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27699 - 27699 - - Jordan Tripp - Jordan - Tripp - Jordan - Tripp - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27699 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/OjBZK78rawxrpNZ3k2iDIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27699.png - small - - https://s.yimg.com/iu/api/res/1.2/OjBZK78rawxrpNZ3k2iDIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27699.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30760 - 30760 - - Otha Peters - Otha - Peters - Otha - Peters - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30760 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31720 - 31720 - - Vontae Diggs - Vontae - Diggs - Vontae - Diggs - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31720 - nfl.t.28 - Washington Redskins - Was - - 4 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31218 - 31218 - - Kendall Donnerson - Kendall - Donnerson - Kendall - Donnerson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31218 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 91 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25021 - 25021 - - Andrew Gachkar - Andrew - Gachkar - Andrew - Gachkar - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25021 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/kKXW_6twzut9tnRw8ZOZzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25021.png - small - - https://s.yimg.com/iu/api/res/1.2/kKXW_6twzut9tnRw8ZOZzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25021.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29832 - 29832 - - Farrington Huguenin - Farrington - Huguenin - Farrington - Huguenin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29832 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 41 - LB - - https://s.yimg.com/iu/api/res/1.2/FZmSSWIzpki9L6FIBkG9Ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29832.png - small - - https://s.yimg.com/iu/api/res/1.2/FZmSSWIzpki9L6FIBkG9Ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29832.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31043 - 31043 - - Jerome Baker - Jerome - Baker - Jerome - Baker - - nfl.p.31043 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/oGBi5UHWlDSrGf8J2Aqhfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31043.png - small - - https://s.yimg.com/iu/api/res/1.2/oGBi5UHWlDSrGf8J2Aqhfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31043.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29093 - 29093 - - Andrew East - Andrew - East - Andrew - East - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29093 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/coCBqjDXBYSRde_cEeh5sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29093.png - small - - https://s.yimg.com/iu/api/res/1.2/coCBqjDXBYSRde_cEeh5sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29093.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30387 - 30387 - - Keith Kelsey - Keith - Kelsey - Keith - Kelsey - - IR - Injured Reserve - undisclosed - nfl.p.30387 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/pGX9uUlPU2EUa_sW3Wu4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30387.png - small - - https://s.yimg.com/iu/api/res/1.2/pGX9uUlPU2EUa_sW3Wu4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30387.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28698 - 28698 - - Rick Lovato - Rick - Lovato - Rick - Lovato - - nfl.p.28698 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/sgO4gJ04Nn.sUMWZuuhMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28698.png - small - - https://s.yimg.com/iu/api/res/1.2/sgO4gJ04Nn.sUMWZuuhMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28698.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31292 - 31292 - - Kyle Queiro - Kyle - Queiro - Kyle - Queiro - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31292 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 41 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26897 - 26897 - - John Lotulelei - John - Lotulelei - John - Lotulelei - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26897 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/Zb6DJgG2TOPoDPr3PPf9ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26897.png - small - - https://s.yimg.com/iu/api/res/1.2/Zb6DJgG2TOPoDPr3PPf9ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26897.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31374 - 31374 - - William Ossai - William - Ossai - William - Ossai - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31374 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30635 - 30635 - - Ahmad Thomas - Ahmad - Thomas - Ahmad - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30635 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31679 - 31679 - - D'Juan Hines - D'Juan - Hines - D'Juan - Hines - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31679 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28733 - 28733 - - Arthur Miley - Arthur - Miley - Arthur - Miley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28733 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/gyweImilJLjtBIGklXxPqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28733.png - small - - https://s.yimg.com/iu/api/res/1.2/gyweImilJLjtBIGklXxPqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28733.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31048 - 31048 - - Malik Jefferson - Malik - Jefferson - Malik - Jefferson - - nfl.p.31048 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/PXp4XJkVObi6knXAkFSvtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31048.png - small - - https://s.yimg.com/iu/api/res/1.2/PXp4XJkVObi6knXAkFSvtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31048.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25327 - 25327 - - Jonathan Freeny - Jonathan - Freeny - Jonathan - Freeny - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25327 - nfl.t.8 - Detroit Lions - Det - - 6 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/YM_JH3OvdBDQ7Y2tyAyzIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/25327.png - small - - https://s.yimg.com/iu/api/res/1.2/YM_JH3OvdBDQ7Y2tyAyzIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/25327.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30039 - 30039 - - Darnell Sankey - Darnell - Sankey - Darnell - Sankey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30039 - nfl.t.8 - Detroit Lions - Det - - 6 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31197 - 31197 - - Quentin Poling - Quentin - Poling - Quentin - Poling - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31197 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30361 - 30361 - - Keion Adams - Keion - Adams - Keion - Adams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30361 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 99 - LB - - https://s.yimg.com/iu/api/res/1.2/SSqFaSHkCg1PYmHCgyvQ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30361.png - small - - https://s.yimg.com/iu/api/res/1.2/SSqFaSHkCg1PYmHCgyvQ4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30361.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31761 - 31761 - - Bo Bower - Bo - Bower - Bo - Bower - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31761 - nfl.t.7 - Denver Broncos - Den - - 10 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30345 - 30345 - - Elijah Lee - Elijah - Lee - Elijah - Lee - - nfl.p.30345 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31131 - 31131 - - Jermaine Carter Jr. - Jermaine - Carter Jr. - Jermaine - Carter Jr. - - nfl.p.31131 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/HmaJpYQ8rFb5LmxQFbkYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31131.png - small - - https://s.yimg.com/iu/api/res/1.2/HmaJpYQ8rFb5LmxQFbkYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31131.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31120 - 31120 - - Genard Avery - Genard - Avery - Genard - Avery - - Q - Questionable - nfl.p.31120 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/kJJHPDQpt0.vBsSNKYJsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31120.png - small - - https://s.yimg.com/iu/api/res/1.2/kJJHPDQpt0.vBsSNKYJsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31120.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25857 - 25857 - - Tank Carder - Tank - Carder - Tank - Carder - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25857 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/Q0YcgPH_NGAihy7jTgNIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25857.png - small - - https://s.yimg.com/iu/api/res/1.2/Q0YcgPH_NGAihy7jTgNIHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25857.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31495 - 31495 - - Ben Niemann - Ben - Niemann - Ben - Niemann - - nfl.p.31495 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28487 - 28487 - - P.J. Dawson - P.J. - Dawson - P.J. - Dawson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28487 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/zhu3RcNmxpjJGs1kB.c7gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28487.1.png - small - - https://s.yimg.com/iu/api/res/1.2/zhu3RcNmxpjJGs1kB.c7gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28487.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31230 - 31230 - - Garret Dooley - Garret - Dooley - Garret - Dooley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31230 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30608 - 30608 - - Johnathan Calvin - Johnathan - Calvin - Johnathan - Calvin - - IR - Injured Reserve - undisclosed - nfl.p.30608 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/RMNgrzkoSu8voleQmoVCRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30608.png - small - - https://s.yimg.com/iu/api/res/1.2/RMNgrzkoSu8voleQmoVCRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30608.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31040 - 31040 - - Fred Warner - Fred - Warner - Fred - Warner - - nfl.p.31040 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/hINnhvS4gZy.i_tucyj8wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31040.png - small - - https://s.yimg.com/iu/api/res/1.2/hINnhvS4gZy.i_tucyj8wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31040.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30094 - 30094 - - Jeff Knox - Jeff - Knox - Jeff - Knox - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30094 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31200 - 31200 - - Leon Jacobs - Leon - Jacobs - Leon - Jacobs - - nfl.p.31200 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31440 - 31440 - - Marcus Porter - Marcus - Porter - Marcus - Porter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31440 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31184 - 31184 - - Peter Kalambayi - Peter - Kalambayi - Peter - Kalambayi - - nfl.p.31184 - nfl.t.34 - Houston Texans - Hou - - 10 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9537 - 9537 - - Garrison Sanborn - Garrison - Sanborn - Garrison - Sanborn - - nfl.p.9537 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 89 - LB - - https://s.yimg.com/iu/api/res/1.2/S5GaJTGxVTl.6U17ncglGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9537.1.png - small - - https://s.yimg.com/iu/api/res/1.2/S5GaJTGxVTl.6U17ncglGw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9537.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31191 - 31191 - - Matthew Adams - Matthew - Adams - Matthew - Adams - - nfl.p.31191 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30857 - 30857 - - Matt Galambos - Matt - Galambos - Matt - Galambos - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30857 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 40 - LB - - https://s.yimg.com/iu/api/res/1.2/iHbdTAF82qK_p55mqUkliA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30857.png - small - - https://s.yimg.com/iu/api/res/1.2/iHbdTAF82qK_p55mqUkliA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30857.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31204 - 31204 - - Andre Smith - Andre - Smith - Andre - Smith - - Q - Questionable - nfl.p.31204 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30986 - 30986 - - Tremaine Edmunds - Tremaine - Edmunds - Tremaine - Edmunds - - nfl.p.30986 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/krfj7X4hfMhq_Tog9u_1cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30986.png - small - - https://s.yimg.com/iu/api/res/1.2/krfj7X4hfMhq_Tog9u_1cQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30986.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 12 - 0 - - - - 380.p.31502 - 31502 - - Greer Martini - Greer - Martini - Greer - Martini - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31502 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31802 - 31802 - - Jaboree Williams - Jaboree - Williams - Jaboree - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31802 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31468 - 31468 - - Emmanuel Beal - Emmanuel - Beal - Emmanuel - Beal - - IR - Injured Reserve - undisclosed - nfl.p.31468 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 43 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31299 - 31299 - - Dennis Gardeck - Dennis - Gardeck - Dennis - Gardeck - - nfl.p.31299 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 92 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30471 - 30471 - - Riley Bullough - Riley - Bullough - Riley - Bullough - - IR - Injured Reserve - undisclosed - nfl.p.30471 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27736 - 27736 - - Eric Pinkins - Eric - Pinkins - Eric - Pinkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27736 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/RLcFOHeDSOHXvzZBv101Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27736.png - small - - https://s.yimg.com/iu/api/res/1.2/RLcFOHeDSOHXvzZBv101Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27736.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31696 - 31696 - - Manase Hungalu - Manase - Hungalu - Manase - Hungalu - - IR - Injured Reserve - undisclosed - nfl.p.31696 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 40 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31113 - 31113 - - Ja'Whaun Bentley - Ja'Whaun - Bentley - Ja'Whaun - Bentley - - nfl.p.31113 - nfl.t.17 - New England Patriots - NE - - 11 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/20DncDrYQOnKzOXEV8G4wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31113.png - small - - https://s.yimg.com/iu/api/res/1.2/20DncDrYQOnKzOXEV8G4wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31113.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31187 - 31187 - - Keishawn Bierria - Keishawn - Bierria - Keishawn - Bierria - - nfl.p.31187 - nfl.t.7 - Denver Broncos - Den - - 10 - - 40 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31434 - 31434 - - Naashon Hughes - Naashon - Hughes - Naashon - Hughes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31434 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30103 - 30103 - - Bo Lokombo - Bo - Lokombo - Bo - Lokombo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30103 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/_TSznHxRMBvOpQh1OItskA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30103.png - small - - https://s.yimg.com/iu/api/res/1.2/_TSznHxRMBvOpQh1OItskA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30103.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31568 - 31568 - - Asantay Brown - Asantay - Brown - Asantay - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31568 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31470 - 31470 - - Tanner Carew - Tanner - Carew - Tanner - Carew - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31470 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 63 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31175 - 31175 - - Trevon Young - Trevon - Young - Trevon - Young - - nfl.p.31175 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31792 - 31792 - - A.J. Johnson - A.J. - Johnson - A.J. - Johnson - - nfl.p.31792 - nfl.t.7 - Denver Broncos - Den - - 10 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31717 - 31717 - - Airius Moore - Airius - Moore - Airius - Moore - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31717 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31532 - 31532 - - Matthew Thomas - Matthew - Thomas - Matthew - Thomas - - nfl.p.31532 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31006 - 31006 - - Darius Leonard - Darius - Leonard - Darius - Leonard - - nfl.p.31006 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/0m8gui7EXqZvIA2X3AvtWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31006.png - small - - https://s.yimg.com/iu/api/res/1.2/0m8gui7EXqZvIA2X3AvtWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31006.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31780 - 31780 - - Jonathan Celestin - Jonathan - Celestin - Jonathan - Celestin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31780 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31745 - 31745 - - Kyle Wilson - Kyle - Wilson - Kyle - Wilson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31745 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31615 - 31615 - - Sharif Finch - Sharif - Finch - Sharif - Finch - - nfl.p.31615 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31629 - 31629 - - Al-Rasheed Benton - Al-Rasheed - Benton - Al-Rasheed - Benton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31629 - nfl.t.8 - Detroit Lions - Det - - 6 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27649 - 27649 - - Carl Bradford - Carl - Bradford - Carl - Bradford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27649 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/HSYX3YkryoFicCCcqnS01w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27649.png - small - - https://s.yimg.com/iu/api/res/1.2/HSYX3YkryoFicCCcqnS01w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27649.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29894 - 29894 - - Deon King - Deon - King - Deon - King - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29894 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/o.nw3V.VRABCbhKaWvXMDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29894.png - small - - https://s.yimg.com/iu/api/res/1.2/o.nw3V.VRABCbhKaWvXMDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29894.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25976 - 25976 - - Aaron Brewer - Aaron - Brewer - Aaron - Brewer - - nfl.p.25976 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/beVGdcSWoPeqGpTViIWD2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25976.png - small - - https://s.yimg.com/iu/api/res/1.2/beVGdcSWoPeqGpTViIWD2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25976.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30564 - 30564 - - Donavin Newsom - Donavin - Newsom - Donavin - Newsom - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30564 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/DZoUQyN.T2XsuJl.mg_WLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30564.png - small - - https://s.yimg.com/iu/api/res/1.2/DZoUQyN.T2XsuJl.mg_WLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30564.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30099 - 30099 - - Adam Bighill - Adam - Bighill - Adam - Bighill - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30099 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 99 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31205 - 31205 - - Zaire Franklin - Zaire - Franklin - Zaire - Franklin - - nfl.p.31205 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31290 - 31290 - - Joel Lanning - Joel - Lanning - Joel - Lanning - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31290 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 43 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31571 - 31571 - - Davin Bellamy - Davin - Bellamy - Davin - Bellamy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31571 - nfl.t.34 - Houston Texans - Hou - - 10 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31412 - 31412 - - Colton Jumper - Colton - Jumper - Colton - Jumper - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31412 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31147 - 31147 - - Christian Sam - Christian - Sam - Christian - Sam - - IR - Injured Reserve - undisclosed - nfl.p.31147 - nfl.t.17 - New England Patriots - NE - - 11 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31430 - 31430 - - Parris Bennett - Parris - Bennett - Parris - Bennett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31430 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31614 - 31614 - - Nick DeLuca - Nick - DeLuca - Nick - DeLuca - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31614 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31076 - 31076 - - Josey Jewell - Josey - Jewell - Josey - Jewell - - nfl.p.31076 - nfl.t.7 - Denver Broncos - Den - - 10 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/XKGc10JNOjiwdvloEQ9PPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31076.png - small - - https://s.yimg.com/iu/api/res/1.2/XKGc10JNOjiwdvloEQ9PPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31076.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30783 - 30783 - - Kennan Gilchrist - Kennan - Gilchrist - Kennan - Gilchrist - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30783 - nfl.t.34 - Houston Texans - Hou - - 10 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/a7rU25rJRGtVtBb6R4UFMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30783.png - small - - https://s.yimg.com/iu/api/res/1.2/a7rU25rJRGtVtBb6R4UFMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30783.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31552 - 31552 - - Tae Davis - Tae - Davis - Tae - Davis - - nfl.p.31552 - nfl.t.19 - New York Giants - NYG - - 9 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30347 - 30347 - - Ejuan Price - Ejuan - Price - Ejuan - Price - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30347 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31272 - 31272 - - Andrew Motuapuaka - Andrew - Motuapuaka - Andrew - Motuapuaka - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31272 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30989 - 30989 - - Leighton Vander Esch - Leighton - Vander Esch - Leighton - Vander Esch - - Q - Questionable - nfl.p.30989 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/xiRbexilG_mC9CuGElRfbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30989.png - small - - https://s.yimg.com/iu/api/res/1.2/xiRbexilG_mC9CuGElRfbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30989.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31503 - 31503 - - Frankie Luvu - Frankie - Luvu - Frankie - Luvu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31503 - nfl.t.20 - New York Jets - NYJ - - 11 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30500 - 30500 - - Mike Moore - Mike - Moore - Mike - Moore - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30500 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28902 - 28902 - - Tony Washington - Tony - Washington - Tony - Washington - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28902 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/9TbpK_eNVillm3EU46oz6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28902.1.png - small - - https://s.yimg.com/iu/api/res/1.2/9TbpK_eNVillm3EU46oz6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28902.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30978 - 30978 - - Roquan Smith - Roquan - Smith - Roquan - Smith - - Q - Questionable - nfl.p.30978 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/0A9cDcKNwd5sQeVECkvbUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30978.png - small - - https://s.yimg.com/iu/api/res/1.2/0A9cDcKNwd5sQeVECkvbUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30978.png - 0 - DP - - LB - - 1 - 1 - - - - - - - - - - - - week - 1 - 18 - 0 - - - - 380.p.26979 - 26979 - - Carson Tinker - Carson - Tinker - Carson - Tinker - - nfl.p.26979 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/VXCETfhpj_qcszwenAg8Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26979.1.png - small - - https://s.yimg.com/iu/api/res/1.2/VXCETfhpj_qcszwenAg8Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26979.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31036 - 31036 - - Lorenzo Carter - Lorenzo - Carter - Lorenzo - Carter - - nfl.p.31036 - nfl.t.19 - New York Giants - NYG - - 9 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/IwSvvFvP41xogLVAkVpUXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31036.png - small - - https://s.yimg.com/iu/api/res/1.2/IwSvvFvP41xogLVAkVpUXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31036.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31246 - 31246 - - Mason McKenrick - Mason - McKenrick - Mason - McKenrick - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31246 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31201 - 31201 - - Travin Howard - Travin - Howard - Travin - Howard - - undisclosed - nfl.p.31201 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30417 - 30417 - - Sae Tautu - Sae - Tautu - Sae - Tautu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30417 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28900 - 28900 - - Carlos Thompson - Carlos - Thompson - Carlos - Thompson - - IR - Injured Reserve - undisclosed - nfl.p.28900 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/5MK2ogISZ_db9hgnjmmouQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28900.1.png - small - - https://s.yimg.com/iu/api/res/1.2/5MK2ogISZ_db9hgnjmmouQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28900.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31357 - 31357 - - Richard Jarvis III - Richard - Jarvis III - Richard - Jarvis III - - nfl.p.31357 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31018 - 31018 - - Uchenna Nwosu - Uchenna - Nwosu - Uchenna - Nwosu - - Q - Questionable - nfl.p.31018 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/KxcJUm.vCdc57iWjX8bLzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31018.png - small - - https://s.yimg.com/iu/api/res/1.2/KxcJUm.vCdc57iWjX8bLzg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31018.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30294 - 30294 - - Dylan Donahue - Dylan - Donahue - Dylan - Donahue - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30294 - nfl.t.20 - New York Jets - NYJ - - 11 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30340 - 30340 - - Josh Carraway - Josh - Carraway - Josh - Carraway - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30340 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30785 - 30785 - - Joseph Jones - Joseph - Jones - Joseph - Jones - - nfl.p.30785 - nfl.t.7 - Denver Broncos - Den - - 10 - - 43 - LB - - https://s.yimg.com/iu/api/res/1.2/aUzozvID_sxBLCiIls8R5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30785.png - small - - https://s.yimg.com/iu/api/res/1.2/aUzozvID_sxBLCiIls8R5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30785.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31471 - 31471 - - Warren Long - Warren - Long - Warren - Long - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31471 - nfl.t.19 - New York Giants - NYG - - 9 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31172 - 31172 - - Jack Cichy - Jack - Cichy - Jack - Cichy - - nfl.p.31172 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29727 - 29727 - - Reggie Gilbert - Reggie - Gilbert - Reggie - Gilbert - - nfl.p.29727 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 93 - LB - - https://s.yimg.com/iu/api/res/1.2/2FbT32LWrWRv5SNuS6KyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29727.png - small - - https://s.yimg.com/iu/api/res/1.2/2FbT32LWrWRv5SNuS6KyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29727.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31163 - 31163 - - Chris Covington - Chris - Covington - Chris - Covington - - nfl.p.31163 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31377 - 31377 - - Jeff Holland - Jeff - Holland - Jeff - Holland - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31377 - nfl.t.7 - Denver Broncos - Den - - 10 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28620 - 28620 - - Edmond Robinson - Edmond - Robinson - Edmond - Robinson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28620 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/m15IvKtxqmPtD3CTLG.Jrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28620.png - small - - https://s.yimg.com/iu/api/res/1.2/m15IvKtxqmPtD3CTLG.Jrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28620.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24028 - 24028 - - Jermaine Cunningham - Jermaine - Cunningham - Jermaine - Cunningham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24028 - nfl.t.20 - New York Jets - NYJ - - 11 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/0Qz5jjhFeoK_92JsJWMdcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/24028.png - small - - https://s.yimg.com/iu/api/res/1.2/0Qz5jjhFeoK_92JsJWMdcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/24028.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31533 - 31533 - - Cayson Collins - Cayson - Collins - Cayson - Collins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31533 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31708 - 31708 - - Robert Spillane - Robert - Spillane - Robert - Spillane - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31708 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31398 - 31398 - - Jerod Fernandez - Jerod - Fernandez - Jerod - Fernandez - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31398 - nfl.t.28 - Washington Redskins - Was - - 4 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28565 - 28565 - - Deiontrez Mount - Deiontrez - Mount - Deiontrez - Mount - - IR - Injured Reserve - undisclosed - nfl.p.28565 - nfl.t.7 - Denver Broncos - Den - - 10 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/z6pNG.434CXxoE1sprHusQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28565.png - small - - https://s.yimg.com/iu/api/res/1.2/z6pNG.434CXxoE1sprHusQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28565.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31484 - 31484 - - Olasunkanmi Adeniyi - Olasunkanmi - Adeniyi - Olasunkanmi - Adeniyi - - IR - Injured Reserve - hamstring - nfl.p.31484 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 92 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31058 - 31058 - - Oren Burks - Oren - Burks - Oren - Burks - - Q - Questionable - nfl.p.31058 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/fBcIShe.o71RpmkmAfEfuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31058.png - small - - https://s.yimg.com/iu/api/res/1.2/fBcIShe.o71RpmkmAfEfuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31058.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30556 - 30556 - - Jimmie Gilbert - Jimmie - Gilbert - Jimmie - Gilbert - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30556 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/f7f12sDFMzCR0Tu3CiyxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30556.png - small - - https://s.yimg.com/iu/api/res/1.2/f7f12sDFMzCR0Tu3CiyxPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30556.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25549 - 25549 - - Jake McQuaide - Jake - McQuaide - Jake - McQuaide - - nfl.p.25549 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/vzL4rX34hOeDVp3hTORIYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25549.png - small - - https://s.yimg.com/iu/api/res/1.2/vzL4rX34hOeDVp3hTORIYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25549.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31317 - 31317 - - Matthew Oplinger - Matthew - Oplinger - Matthew - Oplinger - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31317 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30573 - 30573 - - Connor Harris - Connor - Harris - Connor - Harris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30573 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31504 - 31504 - - Anthony Wint - Anthony - Wint - Anthony - Wint - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31504 - nfl.t.20 - New York Jets - NYJ - - 11 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31638 - 31638 - - Chad Meredith - Chad - Meredith - Chad - Meredith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31638 - nfl.t.8 - Detroit Lions - Det - - 6 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31744 - 31744 - - DeMarquis Gates - DeMarquis - Gates - DeMarquis - Gates - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31744 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7512 - 7512 - - L.P. Ladouceur - L.P. - Ladouceur - L.P. - Ladouceur - - nfl.p.7512 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 91 - LB - - https://s.yimg.com/iu/api/res/1.2/GbrMaBBNNOacQFA1Z37lHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/7512.png - small - - https://s.yimg.com/iu/api/res/1.2/GbrMaBBNNOacQFA1Z37lHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/7512.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30954 - 30954 - - Christian Kuntz - Christian - Kuntz - Christian - Kuntz - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30954 - nfl.t.7 - Denver Broncos - Den - - 10 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30514 - 30514 - - Bam Bradley - Bam - Bradley - Bam - Bradley - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.30514 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/dat.ovBOCnrRbEfwaQehbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30514.png - small - - https://s.yimg.com/iu/api/res/1.2/dat.ovBOCnrRbEfwaQehbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30514.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31372 - 31372 - - Skai Moore - Skai - Moore - Skai - Moore - - nfl.p.31372 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29584 - 29584 - - Cassanova McKinzy - Cassanova - McKinzy - Cassanova - McKinzy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29584 - nfl.t.28 - Washington Redskins - Was - - 4 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/ptqw1tIXkGCIuQvE024Dkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29584.png - small - - https://s.yimg.com/iu/api/res/1.2/ptqw1tIXkGCIuQvE024Dkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29584.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30568 - 30568 - - Austin Calitro - Austin - Calitro - Austin - Calitro - - nfl.p.30568 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31305 - 31305 - - Chris Frey - Chris - Frey - Chris - Frey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31305 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30666 - 30666 - - Harvey Langi - Harvey - Langi - Harvey - Langi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30666 - nfl.t.17 - New England Patriots - NE - - 11 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/zEKfuCQhbqFxpCGYrc_.sQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30666.png - small - - https://s.yimg.com/iu/api/res/1.2/zEKfuCQhbqFxpCGYrc_.sQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30666.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26168 - 26168 - - Josh Harris - Josh - Harris - Josh - Harris - - Q - Questionable - nfl.p.26168 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lCnYU.D1HGwD6F736XjfsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26168.png - small - - https://s.yimg.com/iu/api/res/1.2/lCnYU.D1HGwD6F736XjfsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26168.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31753 - 31753 - - Josh Woods - Josh - Woods - Josh - Woods - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31753 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30167 - 30167 - - Raekwon McMillan - Raekwon - McMillan - Raekwon - McMillan - - nfl.p.30167 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/cx3OZlgw79YGB8TVW5l1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30167.png - small - - https://s.yimg.com/iu/api/res/1.2/cx3OZlgw79YGB8TVW5l1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30167.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30881 - 30881 - - Eric Nzeocha - Eric - Nzeocha - Eric - Nzeocha - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30881 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30535 - 30535 - - Garrett Sickels - Garrett - Sickels - Garrett - Sickels - - IR - Injured Reserve - undisclosed - nfl.p.30535 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31790 - 31790 - - Davond Dade - Davond - Dade - Davond - Dade - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31790 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31766 - 31766 - - Ro'Derrick Hoskins - Ro'Derrick - Hoskins - Ro'Derrick - Hoskins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31766 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 63 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29210 - 29210 - - Derrick Mathews - Derrick - Mathews - Derrick - Mathews - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29210 - nfl.t.19 - New York Giants - NYG - - 9 - - 39 - LB - - https://s.yimg.com/iu/api/res/1.2/UteEou2GuRbLRz4KY2hLqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29210.png - small - - https://s.yimg.com/iu/api/res/1.2/UteEou2GuRbLRz4KY2hLqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29210.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31356 - 31356 - - Emmanuel Ellerbee - Emmanuel - Ellerbee - Emmanuel - Ellerbee - - nfl.p.31356 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30470 - 30470 - - Richie Brown Jr. - Richie - Brown Jr. - Richie - Brown Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30470 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31435 - 31435 - - C.J. Johnson - C.J. - Johnson - C.J. - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - hamstring - nfl.p.31435 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31291 - 31291 - - Ed Shockley - Ed - Shockley - Ed - Shockley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31291 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31186 - 31186 - - Azeem Victor - Azeem - Victor - Azeem - Victor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31186 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 43 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31511 - 31511 - - Brett Taylor - Brett - Taylor - Brett - Taylor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31511 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30992 - 30992 - - Rashaan Evans - Rashaan - Evans - Rashaan - Evans - - nfl.p.30992 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/n1n9.RLkOIN9Hoj5CQQnPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30992.png - small - - https://s.yimg.com/iu/api/res/1.2/n1n9.RLkOIN9Hoj5CQQnPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30992.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31235 - 31235 - - Hercules Mata'afa - Hercules - Mata'afa - Hercules - Mata'afa - - IR - Injured Reserve - torn ACL - nfl.p.31235 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30700 - 30700 - - LaTroy Lewis - LaTroy - Lewis - LaTroy - Lewis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30700 - nfl.t.34 - Houston Texans - Hou - - 10 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30499 - 30499 - - Jermaine Grace - Jermaine - Grace - Jermaine - Grace - - nfl.p.30499 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/bnhIgbTfjC7x3WaJVR3tHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30499.png - small - - https://s.yimg.com/iu/api/res/1.2/bnhIgbTfjC7x3WaJVR3tHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30499.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31566 - 31566 - - Chris Worley - Chris - Worley - Chris - Worley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31566 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31472 - 31472 - - Jake Pugh - Jake - Pugh - Jake - Pugh - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31472 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31245 - 31245 - - Alvin Jones - Alvin - Jones - Alvin - Jones - - undisclosed - nfl.p.31245 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31661 - 31661 - - Nyles Morgan - Nyles - Morgan - Nyles - Morgan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31661 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31354 - 31354 - - Emmanuel Smith - Emmanuel - Smith - Emmanuel - Smith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31354 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30722 - 30722 - - Isaiah Irving - Isaiah - Irving - Isaiah - Irving - - nfl.p.30722 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31092 - 31092 - - Kenny Young - Kenny - Young - Kenny - Young - - Q - Questionable - nfl.p.31092 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 40 - LB - - https://s.yimg.com/iu/api/res/1.2/4wqa1Yw.lgrJ9bnw2ljGLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31092.png - small - - https://s.yimg.com/iu/api/res/1.2/4wqa1Yw.lgrJ9bnw2ljGLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31092.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28597 - 28597 - - Obum Gwacham - Obum - Gwacham - Obum - Gwacham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28597 - nfl.t.20 - New York Jets - NYJ - - 11 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/EOf6pT21VJ7EwpTG1_oeCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28597.png - small - - https://s.yimg.com/iu/api/res/1.2/EOf6pT21VJ7EwpTG1_oeCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28597.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31195 - 31195 - - Devante Downs - Devante - Downs - Devante - Downs - - nfl.p.31195 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31355 - 31355 - - Anthony Winbush - Anthony - Winbush - Anthony - Winbush - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31355 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30296 - 30296 - - Ukeme Eligwe - Ukeme - Eligwe - Ukeme - Eligwe - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30296 - nfl.t.19 - New York Giants - NYG - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31117 - 31117 - - Micah Kiser - Micah - Kiser - Micah - Kiser - - nfl.p.31117 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/U_kqwaBTrTjJWgt8HTHycA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31117.png - small - - https://s.yimg.com/iu/api/res/1.2/U_kqwaBTrTjJWgt8HTHycA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31117.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31540 - 31540 - - Mike McCray - Mike - McCray - Mike - McCray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31540 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30815 - 30815 - - Jerrol Garcia-Williams - Jerrol - Garcia-Williams - Jerrol - Garcia-Williams - - IR - Injured Reserve - knee - nfl.p.30815 - nfl.t.7 - Denver Broncos - Den - - 10 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25519 - 25519 - - Bryan Braman - Bryan - Braman - Bryan - Braman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25519 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/EoJRvpTWirfof.bi0jey5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25519.png - small - - https://s.yimg.com/iu/api/res/1.2/EoJRvpTWirfof.bi0jey5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25519.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29473 - 29473 - - Trevor Bates - Trevor - Bates - Trevor - Bates - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29473 - nfl.t.8 - Detroit Lions - Det - - 6 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/I4lL8fmV4Dg9LwSmOrYPaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29473.png - small - - https://s.yimg.com/iu/api/res/1.2/I4lL8fmV4Dg9LwSmOrYPaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29473.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31750 - 31750 - - Chris Board - Chris - Board - Chris - Board - - nfl.p.31750 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30489 - 30489 - - Tre'von Johnson - Tre'von - Johnson - Tre'von - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30489 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/qjg9PyPXAq0lNA2mDYWFhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30489.png - small - - https://s.yimg.com/iu/api/res/1.2/qjg9PyPXAq0lNA2mDYWFhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30489.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29713 - 29713 - - Brandon Chubb - Brandon - Chubb - Brandon - Chubb - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29713 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/9HXO7mL4ULvCNCtY.4Ie8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29713.png - small - - https://s.yimg.com/iu/api/res/1.2/9HXO7mL4ULvCNCtY.4Ie8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29713.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31785 - 31785 - - James Crawford - James - Crawford - James - Crawford - - nfl.p.31785 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31111 - 31111 - - Shaquem Griffin - Shaquem - Griffin - Shaquem - Griffin - - nfl.p.31111 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/VJ8B.byAxgJOI7uS3BWhNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31111.png - small - - https://s.yimg.com/iu/api/res/1.2/VJ8B.byAxgJOI7uS3BWhNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31111.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31167 - 31167 - - Shaun Dion Hamilton - Shaun Dion - Hamilton - Shaun Dion - Hamilton - - nfl.p.31167 - nfl.t.28 - Washington Redskins - Was - - 4 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28006 - 28006 - - Deontae Skinner - Deontae - Skinner - Deontae - Skinner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28006 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/QOdE84fLLerFm8N0bmIHxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28006.png - small - - https://s.yimg.com/iu/api/res/1.2/QOdE84fLLerFm8N0bmIHxw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28006.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31410 - 31410 - - Tegray Scales - Tegray - Scales - Tegray - Scales - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31410 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30803 - 30803 - - Gimel President - Gimel - President - Gimel - President - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30803 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29231 - 29231 - - Drew Ferris - Drew - Ferris - Drew - Ferris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29231 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 41 - LB - - https://s.yimg.com/iu/api/res/1.2/GQGDv6VaG2W3P8if14Thew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29231.png - small - - https://s.yimg.com/iu/api/res/1.2/GQGDv6VaG2W3P8if14Thew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29231.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31070 - 31070 - - Dorian O'Daniel - Dorian - O'Daniel - Dorian - O'Daniel - - nfl.p.31070 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/lzQ9nIaTXQikUeLT8BlKAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31070.png - small - - https://s.yimg.com/iu/api/res/1.2/lzQ9nIaTXQikUeLT8BlKAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31070.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30155 - 30155 - - Marcus Williams - Marcus - Williams - Marcus - Williams - - nfl.p.30155 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 43 - S - - https://s.yimg.com/iu/api/res/1.2/lL5po5Ar_EN.8zWFUUXnKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30155.png - small - - https://s.yimg.com/iu/api/res/1.2/lL5po5Ar_EN.8zWFUUXnKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30155.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 13 - 0 - - - - 380.p.30299 - 30299 - - Chuck Clark - Chuck - Clark - Chuck - Clark - - nfl.p.30299 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/6YL.VeHoxQ6isWXNlRpohQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30299.png - small - - https://s.yimg.com/iu/api/res/1.2/6YL.VeHoxQ6isWXNlRpohQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30299.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29224 - 29224 - - Erik Harris - Erik - Harris - Erik - Harris - - nfl.p.29224 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 25 - S - - https://s.yimg.com/iu/api/res/1.2/8Fe8oADkMrZbYAy3q2nWKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29224.png - small - - https://s.yimg.com/iu/api/res/1.2/8Fe8oADkMrZbYAy3q2nWKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29224.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30262 - 30262 - - Damontae Kazee - Damontae - Kazee - Damontae - Kazee - - nfl.p.30262 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29845 - 29845 - - Trae Elston - Trae - Elston - Trae - Elston - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29845 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/4LBbjpWbrrBSlJt.Mr3y2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29845.png - small - - https://s.yimg.com/iu/api/res/1.2/4LBbjpWbrrBSlJt.Mr3y2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29845.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30149 - 30149 - - Budda Baker - Budda - Baker - Budda - Baker - - nfl.p.30149 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/uet4z27G0b1.awvl33DHHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30149.png - small - - https://s.yimg.com/iu/api/res/1.2/uet4z27G0b1.awvl33DHHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30149.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.30224 - 30224 - - Tedric Thompson - Tedric - Thompson - Tedric - Thompson - - Q - Questionable - nfl.p.30224 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29781 - 29781 - - Charles Washington - Charles - Washington - Charles - Washington - - nfl.p.29781 - nfl.t.8 - Detroit Lions - Det - - 6 - - 45 - S - - https://s.yimg.com/iu/api/res/1.2/A8tREDEvZmpF7lTSB5t5Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29781.png - small - - https://s.yimg.com/iu/api/res/1.2/A8tREDEvZmpF7lTSB5t5Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29781.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30848 - 30848 - - Jamal Carter Sr. - Jamal - Carter Sr. - Jamal - Carter Sr. - - IR - Injured Reserve - torn hamstring - nfl.p.30848 - nfl.t.7 - Denver Broncos - Den - - 10 - - 20 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30163 - 30163 - - Justin Evans - Justin - Evans - Justin - Evans - - Q - Questionable - nfl.p.30163 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 21 - S - - https://s.yimg.com/iu/api/res/1.2/7EcF_22btb9Wc.B5uDlD1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30163.png - small - - https://s.yimg.com/iu/api/res/1.2/7EcF_22btb9Wc.B5uDlD1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30163.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.27607 - 27607 - - Terrence Brooks - Terrence - Brooks - Terrence - Brooks - - nfl.p.27607 - nfl.t.20 - New York Jets - NYJ - - 11 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/kn1omyg36HHsJFJJWOCqFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27607.1.png - small - - https://s.yimg.com/iu/api/res/1.2/kn1omyg36HHsJFJJWOCqFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27607.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30174 - 30174 - - Josh Jones - Josh - Jones - Josh - Jones - - nfl.p.30174 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/Nvv6WB2kjpOYF0ZgzlOSvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30174.png - small - - https://s.yimg.com/iu/api/res/1.2/Nvv6WB2kjpOYF0ZgzlOSvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30174.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.30334 - 30334 - - Shalom Luani - Shalom - Luani - Shalom - Luani - - nfl.p.30334 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 24 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30321 - 30321 - - Rudy Ford - Rudy - Ford - Rudy - Ford - - nfl.p.30321 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 30 - S - - https://s.yimg.com/iu/api/res/1.2/x638J_PnBLcKESqgGqx3AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30321.png - small - - https://s.yimg.com/iu/api/res/1.2/x638J_PnBLcKESqgGqx3AQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30321.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30152 - 30152 - - Marcus Maye - Marcus - Maye - Marcus - Maye - - Q - Questionable - nfl.p.30152 - nfl.t.20 - New York Jets - NYJ - - 11 - - 26 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30226 - 30226 - - Rayshawn Jenkins - Rayshawn - Jenkins - Rayshawn - Jenkins - - nfl.p.30226 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30119 - 30119 - - Jamal Adams - Jamal - Adams - Jamal - Adams - - nfl.p.30119 - nfl.t.20 - New York Jets - NYJ - - 11 - - 33 - S - - https://s.yimg.com/iu/api/res/1.2/jL6qZbxH3ekH80M.olGbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30119.png - small - - https://s.yimg.com/iu/api/res/1.2/jL6qZbxH3ekH80M.olGbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30119.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 13 - 0 - - - - 380.p.29419 - 29419 - - DeAndre Houston-Carson - DeAndre - Houston-Carson - DeAndre - Houston-Carson - - O - Out - nfl.p.29419 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/Bwdz5UE.p5.2Hd623lfWsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29419.png - small - - https://s.yimg.com/iu/api/res/1.2/Bwdz5UE.p5.2Hd623lfWsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29419.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30304 - 30304 - - Xavier Woods - Xavier - Woods - Xavier - Woods - - Q - Questionable - nfl.p.30304 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 25 - S - - https://s.yimg.com/iu/api/res/1.2/_CR2zSRqX2bV_Fq1xeEa1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30304.png - small - - https://s.yimg.com/iu/api/res/1.2/_CR2zSRqX2bV_Fq1xeEa1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30304.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30236 - 30236 - - Montae Nicholson - Montae - Nicholson - Montae - Nicholson - - nfl.p.30236 - nfl.t.28 - Washington Redskins - Was - - 4 - - 35 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28889 - 28889 - - Kurtis Drummond - Kurtis - Drummond - Kurtis - Drummond - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28889 - nfl.t.34 - Houston Texans - Hou - - 10 - - 23 - S - - https://s.yimg.com/iu/api/res/1.2/.O6BtVujeNC9GON2GKeuUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28889.1.png - small - - https://s.yimg.com/iu/api/res/1.2/.O6BtVujeNC9GON2GKeuUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28889.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29305 - 29305 - - Darian Thompson - Darian - Thompson - Darian - Thompson - - IR - Injured Reserve - undisclosed - nfl.p.29305 - nfl.t.19 - New York Giants - NYG - - 9 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/9.1jl5nbCbG5VlrjbtTlBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29305.png - small - - https://s.yimg.com/iu/api/res/1.2/9.1jl5nbCbG5VlrjbtTlBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29305.png - 0 - DP - - S - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30128 - 30128 - - Malik Hooker - Malik - Hooker - Malik - Hooker - - nfl.p.30128 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 29 - S - - https://s.yimg.com/iu/api/res/1.2/41NY6.pFgTimGTV5glCrYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30128.png - small - - https://s.yimg.com/iu/api/res/1.2/41NY6.pFgTimGTV5glCrYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30128.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.29401 - 29401 - - Marqui Christian - Marqui - Christian - Marqui - Christian - - nfl.p.29401 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 41 - S - - https://s.yimg.com/iu/api/res/1.2/SnKQjbFwuAAH9kZPjCcDkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29401.png - small - - https://s.yimg.com/iu/api/res/1.2/SnKQjbFwuAAH9kZPjCcDkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29401.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30208 - 30208 - - Delano Hill - Delano - Hill - Delano - Hill - - nfl.p.30208 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 42 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30225 - 30225 - - Eddie Jackson - Eddie - Jackson - Eddie - Jackson - - nfl.p.30225 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 39 - S - - https://s.yimg.com/iu/api/res/1.2/62HC_UcWQhOy4TCEGVAktg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/30225.png - small - - https://s.yimg.com/iu/api/res/1.2/62HC_UcWQhOy4TCEGVAktg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/30225.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.30204 - 30204 - - John Johnson III - John - Johnson III - John - Johnson III - - nfl.p.30204 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 43 - S - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 14 - 0 - - - - 380.p.28987 - 28987 - - Brandon King - Brandon - King - Brandon - King - - nfl.p.28987 - nfl.t.17 - New England Patriots - NE - - 11 - - 36 - LB,S - - https://s.yimg.com/iu/api/res/1.2/esFQ__vLL2WZltSf8p_fgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28987.png - small - - https://s.yimg.com/iu/api/res/1.2/esFQ__vLL2WZltSf8p_fgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28987.png - 0 - DP - - LB - S - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26887 - 26887 - - Lerentee McCray - Lerentee - McCray - Lerentee - McCray - - nfl.p.26887 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/YH6ajaONzoxnCvLqvrMZLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26887.png - small - - https://s.yimg.com/iu/api/res/1.2/YH6ajaONzoxnCvLqvrMZLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26887.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27275 - 27275 - - Terence Garvin - Terence - Garvin - Terence - Garvin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27275 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/BEp90E4ZIWltUMyWH9Jm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27275.png - small - - https://s.yimg.com/iu/api/res/1.2/BEp90E4ZIWltUMyWH9Jm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27275.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29343 - 29343 - - B.J. Goodson - B.J. - Goodson - B.J. - Goodson - - nfl.p.29343 - nfl.t.19 - New York Giants - NYG - - 9 - - 93 - LB - - https://s.yimg.com/iu/api/res/1.2/X7cJrqPEfvKUOzE5etAQwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29343.png - small - - https://s.yimg.com/iu/api/res/1.2/X7cJrqPEfvKUOzE5etAQwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29343.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24507 - 24507 - - Frank Zombo - Frank - Zombo - Frank - Zombo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24507 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/GcFfasSAp3X9P1QUKWTlWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24507.1.png - small - - https://s.yimg.com/iu/api/res/1.2/GcFfasSAp3X9P1QUKWTlWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24507.1.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25719 - 25719 - - Luke Kuechly - Luke - Kuechly - Luke - Kuechly - - nfl.p.25719 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/xkU_W76wu.1YQOoLO6t_Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25719.png - small - - https://s.yimg.com/iu/api/res/1.2/xkU_W76wu.1YQOoLO6t_Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25719.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 90 - 0 - - - - 380.p.9290 - 9290 - - Clay Matthews - Clay - Matthews - Clay - Matthews - - nfl.p.9290 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/Ic9l5KTx3_6n1U5tnOgUVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9290.png - small - - https://s.yimg.com/iu/api/res/1.2/Ic9l5KTx3_6n1U5tnOgUVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9290.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.27647 - 27647 - - Anthony Hitchens - Anthony - Hitchens - Anthony - Hitchens - - nfl.p.27647 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/FbDnX2xVLfvkgoiq7bxnBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27647.png - small - - https://s.yimg.com/iu/api/res/1.2/FbDnX2xVLfvkgoiq7bxnBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27647.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.27568 - 27568 - - Kyle Van Noy - Kyle - Van Noy - Kyle - Van Noy - - nfl.p.27568 - nfl.t.17 - New England Patriots - NE - - 11 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/uEhXjMz1oxbZmybVni6mIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27568.png - small - - https://s.yimg.com/iu/api/res/1.2/uEhXjMz1oxbZmybVni6mIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27568.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.29448 - 29448 - - Elandon Roberts - Elandon - Roberts - Elandon - Roberts - - nfl.p.29448 - nfl.t.17 - New England Patriots - NE - - 11 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/NvfBb4SuzhG4NyBnSUs7Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29448.png - small - - https://s.yimg.com/iu/api/res/1.2/NvfBb4SuzhG4NyBnSUs7Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29448.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28908 - 28908 - - Mike Hull - Mike - Hull - Mike - Hull - - IR - Injured Reserve - knee - nfl.p.28908 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/qPgu.TahKiQNZr8y7w0P0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28908.1.png - small - - https://s.yimg.com/iu/api/res/1.2/qPgu.TahKiQNZr8y7w0P0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28908.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9543 - 9543 - - Ramon Humber - Ramon - Humber - Ramon - Humber - - nfl.p.9543 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/xrmcD1tmb6RrKPoUpg5J5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9543.1.png - small - - https://s.yimg.com/iu/api/res/1.2/xrmcD1tmb6RrKPoUpg5J5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9543.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.23991 - 23991 - - Derrick Morgan - Derrick - Morgan - Derrick - Morgan - - Q - Questionable - nfl.p.23991 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 91 - LB - - https://s.yimg.com/iu/api/res/1.2/KopGoWqEoro5eivJjlcUfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/23991.png - small - - https://s.yimg.com/iu/api/res/1.2/KopGoWqEoro5eivJjlcUfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/23991.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28607 - 28607 - - Hayes Pullard III - Hayes - Pullard III - Hayes - Pullard III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28607 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/_7UPZgnYkcvNzsN7wpCVQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/28607.png - small - - https://s.yimg.com/iu/api/res/1.2/_7UPZgnYkcvNzsN7wpCVQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/28607.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29321 - 29321 - - Nick Vigil - Nick - Vigil - Nick - Vigil - - nfl.p.29321 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/LUAx4L46Lr.ZSoVrfGslTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29321.1.png - small - - https://s.yimg.com/iu/api/res/1.2/LUAx4L46Lr.ZSoVrfGslTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29321.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.9310 - 9310 - - Connor Barwin - Connor - Barwin - Connor - Barwin - - Q - Questionable - nfl.p.9310 - nfl.t.19 - New York Giants - NYG - - 9 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/KBiue9ygSGsUlNIacN4SKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/9310.png - small - - https://s.yimg.com/iu/api/res/1.2/KBiue9ygSGsUlNIacN4SKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/9310.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.27040 - 27040 - - Paul Worrilow - Paul - Worrilow - Paul - Worrilow - - IR - Injured Reserve - torn right ACL - nfl.p.27040 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/MnrLX5Ax3mOmHCQoYHFdmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27040.png - small - - https://s.yimg.com/iu/api/res/1.2/MnrLX5Ax3mOmHCQoYHFdmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27040.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25850 - 25850 - - Najee Goode - Najee - Goode - Najee - Goode - - nfl.p.25850 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/EXTo0izwYqZsaU5_wtTXQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25850.png - small - - https://s.yimg.com/iu/api/res/1.2/EXTo0izwYqZsaU5_wtTXQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25850.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28411 - 28411 - - Shane Ray - Shane - Ray - Shane - Ray - - nfl.p.28411 - nfl.t.7 - Denver Broncos - Den - - 10 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/4HEvnmLgcjEiKLLxm4HIZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28411.png - small - - https://s.yimg.com/iu/api/res/1.2/4HEvnmLgcjEiKLLxm4HIZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28411.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25735 - 25735 - - Dont'a Hightower - Dont'a - Hightower - Dont'a - Hightower - - nfl.p.25735 - nfl.t.17 - New England Patriots - NE - - 11 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/FdgelLIjfZjbGCNkHWnI6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25735.png - small - - https://s.yimg.com/iu/api/res/1.2/FdgelLIjfZjbGCNkHWnI6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25735.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.29758 - 29758 - - Patrick Onwuasor - Patrick - Onwuasor - Patrick - Onwuasor - - nfl.p.29758 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/AkIc0tz_HKF_t9hlzik01Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29758.png - small - - https://s.yimg.com/iu/api/res/1.2/AkIc0tz_HKF_t9hlzik01Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29758.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29428 - 29428 - - Cory James - Cory - James - Cory - James - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29428 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/kvlBKFMHvkKy0bAsFYTOfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29428.png - small - - https://s.yimg.com/iu/api/res/1.2/kvlBKFMHvkKy0bAsFYTOfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29428.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27599 - 27599 - - Christian Kirksey - Christian - Kirksey - Christian - Kirksey - - nfl.p.27599 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/PAMs38otGE40ySQqg8d5qQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27599.png - small - - https://s.yimg.com/iu/api/res/1.2/PAMs38otGE40ySQqg8d5qQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27599.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 40 - 0 - - - - 380.p.28377 - 28377 - - Brian Peters - Brian - Peters - Brian - Peters - - nfl.p.28377 - nfl.t.34 - Houston Texans - Hou - - 10 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/nvdShZmWM9dfE7G7cuEXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28377.1.png - small - - https://s.yimg.com/iu/api/res/1.2/nvdShZmWM9dfE7G7cuEXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28377.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7875 - 7875 - - Elvis Dumervil - Elvis - Dumervil - Elvis - Dumervil - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7875 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/435xJrXxfTgf5xZTw4N02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7875.png - small - - https://s.yimg.com/iu/api/res/1.2/435xJrXxfTgf5xZTw4N02A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7875.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.6792 - 6792 - - Karlos Dansby - Karlos - Dansby - Karlos - Dansby - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.6792 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/fXfoWFhWkhwYBOXTkC1XMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/6792.png - small - - https://s.yimg.com/iu/api/res/1.2/fXfoWFhWkhwYBOXTkC1XMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/6792.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25757 - 25757 - - Bobby Wagner - Bobby - Wagner - Bobby - Wagner - - nfl.p.25757 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/4LlTQNs7gmpF4StvAvwHQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25757.png - small - - https://s.yimg.com/iu/api/res/1.2/4LlTQNs7gmpF4StvAvwHQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25757.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 84 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26727 - 26727 - - Jelani Jenkins - Jelani - Jenkins - Jelani - Jenkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26727 - nfl.t.34 - Houston Texans - Hou - - 10 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/vnJ0tq4N8U0II203sjShfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/26727.png - small - - https://s.yimg.com/iu/api/res/1.2/vnJ0tq4N8U0II203sjShfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/26727.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27702 - 27702 - - Devon Kennard - Devon - Kennard - Devon - Kennard - - nfl.p.27702 - nfl.t.8 - Detroit Lions - Det - - 6 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/rQKCV_QTkmNIklZCNoTkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27702.png - small - - https://s.yimg.com/iu/api/res/1.2/rQKCV_QTkmNIklZCNoTkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27702.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29409 - 29409 - - Jatavis Brown - Jatavis - Brown - Jatavis - Brown - - nfl.p.29409 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/WVRgCe2PHCpl.DiDFNp_8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29409.png - small - - https://s.yimg.com/iu/api/res/1.2/WVRgCe2PHCpl.DiDFNp_8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29409.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.26829 - 26829 - - Vince Williams - Vince - Williams - Vince - Williams - - nfl.p.26829 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 98 - LB - - https://s.yimg.com/iu/api/res/1.2/0CcAkWKGN1hsVhti3yc.mA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26829.png - small - - https://s.yimg.com/iu/api/res/1.2/0CcAkWKGN1hsVhti3yc.mA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26829.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 18 - 0 - - - - 380.p.27679 - 27679 - - Avery Williamson - Avery - Williamson - Avery - Williamson - - Q - Questionable - nfl.p.27679 - nfl.t.20 - New York Jets - NYJ - - 11 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/47Yb9q8hjWzNyapR.34rrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27679.png - small - - https://s.yimg.com/iu/api/res/1.2/47Yb9q8hjWzNyapR.34rrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27679.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.24855 - 24855 - - Kelvin Sheppard - Kelvin - Sheppard - Kelvin - Sheppard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24855 - nfl.t.19 - New York Giants - NYG - - 9 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/CbPfXlMVSxraOyKvKTgvkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24855.png - small - - https://s.yimg.com/iu/api/res/1.2/CbPfXlMVSxraOyKvKTgvkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24855.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25823 - 25823 - - Kyle Wilber - Kyle - Wilber - Kyle - Wilber - - nfl.p.25823 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/mT7Yltfnh3Wun4p7v7zl5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25823.png - small - - https://s.yimg.com/iu/api/res/1.2/mT7Yltfnh3Wun4p7v7zl5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25823.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29254 - 29254 - - Darron Lee - Darron - Lee - Darron - Lee - - nfl.p.29254 - nfl.t.20 - New York Jets - NYJ - - 11 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/nWkc8fULF5iYcork90ez8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29254.png - small - - https://s.yimg.com/iu/api/res/1.2/nWkc8fULF5iYcork90ez8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29254.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.9302 - 9302 - - Rey Maualuga - Rey - Maualuga - Rey - Maualuga - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9302 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/ciEcaDBCCtm.HO_quiG6sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9302.1.png - small - - https://s.yimg.com/iu/api/res/1.2/ciEcaDBCCtm.HO_quiG6sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9302.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8269 - 8269 - - Lawrence Timmons - Lawrence - Timmons - Lawrence - Timmons - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8269 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 94 - LB - - https://s.yimg.com/iu/api/res/1.2/ACl1UtFxtD_3KVZHgG0fPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/8269.png - small - - https://s.yimg.com/iu/api/res/1.2/ACl1UtFxtD_3KVZHgG0fPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/8269.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27543 - 27543 - - Ryan Shazier - Ryan - Shazier - Ryan - Shazier - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.27543 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/.ikTPmmkEggoG._WTntAXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27543.png - small - - https://s.yimg.com/iu/api/res/1.2/.ikTPmmkEggoG._WTntAXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27543.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24189 - 24189 - - Willie Young - Willie - Young - Willie - Young - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24189 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 97 - LB - - https://s.yimg.com/iu/api/res/1.2/7qxX9IcidaxK9nkgledRLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24189.png - small - - https://s.yimg.com/iu/api/res/1.2/7qxX9IcidaxK9nkgledRLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24189.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29380 - 29380 - - Matt Judon - Matt - Judon - Matt - Judon - - nfl.p.29380 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 99 - LB - - https://s.yimg.com/iu/api/res/1.2/y5I_2OUK4kGkGwtHUDi.lA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29380.png - small - - https://s.yimg.com/iu/api/res/1.2/y5I_2OUK4kGkGwtHUDi.lA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29380.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.7191 - 7191 - - Derrick Johnson - Derrick - Johnson - Derrick - Johnson - - nfl.p.7191 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/l.AcI6Cd4iQH4ifp5zbbAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7191.png - small - - https://s.yimg.com/iu/api/res/1.2/l.AcI6Cd4iQH4ifp5zbbAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7191.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24803 - 24803 - - Ryan Kerrigan - Ryan - Kerrigan - Ryan - Kerrigan - - nfl.p.24803 - nfl.t.28 - Washington Redskins - Was - - 4 - - 91 - LB - - https://s.yimg.com/iu/api/res/1.2/VXoKUyvEx1Y5dKVZYhSEwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24803.png - small - - https://s.yimg.com/iu/api/res/1.2/VXoKUyvEx1Y5dKVZYhSEwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24803.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 19 - 0 - - - - 380.p.9279 - 9279 - - Brian Cushing - Brian - Cushing - Brian - Cushing - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9279 - nfl.t.34 - Houston Texans - Hou - - 10 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/gLwdXlTHLTbf6POZllJMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/9279.png - small - - https://s.yimg.com/iu/api/res/1.2/gLwdXlTHLTbf6POZllJMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/9279.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28517 - 28517 - - Jake Ryan - Jake - Ryan - Jake - Ryan - - IR - Injured Reserve - torn right ACL - nfl.p.28517 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/DisPhmpZBL6cLgfi15QIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28517.png - small - - https://s.yimg.com/iu/api/res/1.2/DisPhmpZBL6cLgfi15QIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28517.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.6346 - 6346 - - Terrell Suggs - Terrell - Suggs - Terrell - Suggs - - nfl.p.6346 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/6prXXQug5KJiWaLNKHr0jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6346.png - small - - https://s.yimg.com/iu/api/res/1.2/6prXXQug5KJiWaLNKHr0jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6346.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 15 - 0 - - - - 380.p.28396 - 28396 - - Vic Beasley Jr. - Vic - Beasley Jr. - Vic - Beasley Jr. - - nfl.p.28396 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/V1VxZi9zzAK4Tsz.02eN1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28396.png - small - - https://s.yimg.com/iu/api/res/1.2/V1VxZi9zzAK4Tsz.02eN1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28396.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.28612 - 28612 - - Bryce Hager - Bryce - Hager - Bryce - Hager - - nfl.p.28612 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/NBwgUq95nr0QS.6zrY.vqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28612.png - small - - https://s.yimg.com/iu/api/res/1.2/NBwgUq95nr0QS.6zrY.vqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28612.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28431 - 28431 - - Benardrick McKinney - Benardrick - McKinney - Benardrick - McKinney - - nfl.p.28431 - nfl.t.34 - Houston Texans - Hou - - 10 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/mTKAcB1yH02cCpEsXt3Rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28431.1.png - small - - https://s.yimg.com/iu/api/res/1.2/mTKAcB1yH02cCpEsXt3Rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28431.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 22 - 0 - - - - 380.p.28512 - 28512 - - Kwon Alexander - Kwon - Alexander - Kwon - Alexander - - nfl.p.28512 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/qHRCglpkAQjj7KxlqoWDxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28512.png - small - - https://s.yimg.com/iu/api/res/1.2/qHRCglpkAQjj7KxlqoWDxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28512.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 58 - 0 - - - - 380.p.24030 - 24030 - - Sean Lee - Sean - Lee - Sean - Lee - - nfl.p.24030 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/BMZvWgNGshLbSoHZhhH5gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24030.png - small - - https://s.yimg.com/iu/api/res/1.2/BMZvWgNGshLbSoHZhhH5gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24030.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 50 - 0 - - - - 380.p.29285 - 29285 - - Deion Jones - Deion - Jones - Deion - Jones - - nfl.p.29285 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/rIEUZ9ogwS5kxU9BUbncsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29285.png - small - - https://s.yimg.com/iu/api/res/1.2/rIEUZ9ogwS5kxU9BUbncsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29285.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 76 - 0 - - - - 380.p.29322 - 29322 - - Kyler Fackrell - Kyler - Fackrell - Kyler - Fackrell - - nfl.p.29322 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/YPYzgvBjO4NokEETIMyMMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29322.png - small - - https://s.yimg.com/iu/api/res/1.2/YPYzgvBjO4NokEETIMyMMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29322.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26629 - 26629 - - Barkevious Mingo - Barkevious - Mingo - Barkevious - Mingo - - nfl.p.26629 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lOIrElrDW4uPap2Yn_4WmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26629.png - small - - https://s.yimg.com/iu/api/res/1.2/lOIrElrDW4uPap2Yn_4WmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26629.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26675 - 26675 - - Jamie Collins Sr. - Jamie - Collins Sr. - Jamie - Collins Sr. - - nfl.p.26675 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/UyiN6XUeq96PToJwUs3AjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26675.png - small - - https://s.yimg.com/iu/api/res/1.2/UyiN6XUeq96PToJwUs3AjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26675.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.26669 - 26669 - - Kiko Alonso - Kiko - Alonso - Kiko - Alonso - - nfl.p.26669 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/5Cobo6gyCnVuw8lQGuy2MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26669.png - small - - https://s.yimg.com/iu/api/res/1.2/5Cobo6gyCnVuw8lQGuy2MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26669.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 13 - 0 - - - - 380.p.25689 - 25689 - - Craig Robertson - Craig - Robertson - Craig - Robertson - - nfl.p.25689 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/x8S6f3KwX3eRqBR_nDEwXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25689.png - small - - https://s.yimg.com/iu/api/res/1.2/x8S6f3KwX3eRqBR_nDEwXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25689.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27839 - 27839 - - Christian Jones - Christian - Jones - Christian - Jones - - nfl.p.27839 - nfl.t.8 - Detroit Lions - Det - - 6 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/kmbd8bpFl7nsivQCOelrdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27839.png - small - - https://s.yimg.com/iu/api/res/1.2/kmbd8bpFl7nsivQCOelrdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27839.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25864 - 25864 - - Korey Toomer - Korey - Toomer - Korey - Toomer - - nfl.p.25864 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/E3cZrLFjwDIkekGP9MYrZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25864.1.png - small - - https://s.yimg.com/iu/api/res/1.2/E3cZrLFjwDIkekGP9MYrZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25864.1.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29349 - 29349 - - De'Vondre Campbell - De'Vondre - Campbell - De'Vondre - Campbell - - nfl.p.29349 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/IC2WCaTC4BpJsujPr8AUfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29349.png - small - - https://s.yimg.com/iu/api/res/1.2/IC2WCaTC4BpJsujPr8AUfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29349.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.26856 - 26856 - - David Bass - David - Bass - David - Bass - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26856 - nfl.t.20 - New York Jets - NYJ - - 11 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/EyRrmp6dZFKafdMEwnhwWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26856.png - small - - https://s.yimg.com/iu/api/res/1.2/EyRrmp6dZFKafdMEwnhwWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26856.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24066 - 24066 - - NaVorro Bowman - NaVorro - Bowman - NaVorro - Bowman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24066 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/uuWKPvtHox2tWqK3d8M1Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24066.png - small - - https://s.yimg.com/iu/api/res/1.2/uuWKPvtHox2tWqK3d8M1Ig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24066.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27537 - 27537 - - Anthony Barr - Anthony - Barr - Anthony - Barr - - nfl.p.27537 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/Qequt9OKnO9ZR3.nrJ3cZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27537.png - small - - https://s.yimg.com/iu/api/res/1.2/Qequt9OKnO9ZR3.nrJ3cZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27537.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28557 - 28557 - - David Mayo - David - Mayo - David - Mayo - - nfl.p.28557 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/lra4gTyr1lSynrSIc.wV5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28557.png - small - - https://s.yimg.com/iu/api/res/1.2/lra4gTyr1lSynrSIc.wV5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28557.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25848 - 25848 - - Tahir Whitehead - Tahir - Whitehead - Tahir - Whitehead - - nfl.p.25848 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/WI9Fnf.hphH2e5nqXu9qQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25848.png - small - - https://s.yimg.com/iu/api/res/1.2/WI9Fnf.hphH2e5nqXu9qQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25848.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.28695 - 28695 - - John Timu - John - Timu - John - Timu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28695 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/nN_87uaRCbzPC9EWKU.xTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28695.png - small - - https://s.yimg.com/iu/api/res/1.2/nN_87uaRCbzPC9EWKU.xTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28695.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29505 - 29505 - - Jared Norris - Jared - Norris - Jared - Norris - - nfl.p.29505 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/5BMFP0WZPzhbJaZeiKm.rQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29505.png - small - - https://s.yimg.com/iu/api/res/1.2/5BMFP0WZPzhbJaZeiKm.rQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29505.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26475 - 26475 - - Emmanuel Lamur - Emmanuel - Lamur - Emmanuel - Lamur - - nfl.p.26475 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/4uQiqAXjap9fcX88ZI.xJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26475.png - small - - https://s.yimg.com/iu/api/res/1.2/4uQiqAXjap9fcX88ZI.xJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26475.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9554 - 9554 - - Jonathan Casillas - Jonathan - Casillas - Jonathan - Casillas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9554 - nfl.t.19 - New York Giants - NYG - - 9 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/dxzslZ.VrJVujUj6ge5gvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/9554.png - small - - https://s.yimg.com/iu/api/res/1.2/dxzslZ.VrJVujUj6ge5gvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/9554.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28413 - 28413 - - Shaq Thompson - Shaq - Thompson - Shaq - Thompson - - nfl.p.28413 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/rc6PxWvM.mPykFUDNgL5xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/28413.png - small - - https://s.yimg.com/iu/api/res/1.2/rc6PxWvM.mPykFUDNgL5xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/28413.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.29718 - 29718 - - Cory Littleton - Cory - Littleton - Cory - Littleton - - nfl.p.29718 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24952 - 24952 - - Pernell McPhee - Pernell - McPhee - Pernell - McPhee - - nfl.p.24952 - nfl.t.28 - Washington Redskins - Was - - 4 - - 96 - LB - - https://s.yimg.com/iu/api/res/1.2/diHCPcYhIgQT5PEhDc9Llg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24952.png - small - - https://s.yimg.com/iu/api/res/1.2/diHCPcYhIgQT5PEhDc9Llg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24952.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27940 - 27940 - - Adarius Taylor - Adarius - Taylor - Adarius - Taylor - - nfl.p.27940 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/8gisnDQsVdb0S_BpIpLlJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27940.png - small - - https://s.yimg.com/iu/api/res/1.2/8gisnDQsVdb0S_BpIpLlJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27940.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24193 - 24193 - - Dekoda Watson - Dekoda - Watson - Dekoda - Watson - - nfl.p.24193 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 97 - LB - - https://s.yimg.com/iu/api/res/1.2/rIkwBbbMZEf6EI0q_B.zTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24193.png - small - - https://s.yimg.com/iu/api/res/1.2/rIkwBbbMZEf6EI0q_B.zTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24193.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26771 - 26771 - - A.J. Klein - A.J. - Klein - A.J. - Klein - - nfl.p.26771 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/fVsaZYJ0zgqT.pAx8ndY3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26771.png - small - - https://s.yimg.com/iu/api/res/1.2/fVsaZYJ0zgqT.pAx8ndY3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26771.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28600 - 28600 - - Anthony Chickillo - Anthony - Chickillo - Anthony - Chickillo - - nfl.p.28600 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/2lw_09UkrmuoB7mV9K2QVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28600.png - small - - https://s.yimg.com/iu/api/res/1.2/2lw_09UkrmuoB7mV9K2QVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28600.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26668 - 26668 - - Kevin Minter - Kevin - Minter - Kevin - Minter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26668 - nfl.t.20 - New York Jets - NYJ - - 11 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/3x3zt3776Xwo3ixVsIOz4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26668.png - small - - https://s.yimg.com/iu/api/res/1.2/3x3zt3776Xwo3ixVsIOz4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26668.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27740 - 27740 - - Marquis Flowers - Marquis - Flowers - Marquis - Flowers - - nfl.p.27740 - nfl.t.8 - Detroit Lions - Det - - 6 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/X2Rl3IMtX4kP3IAStaYgLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27740.1.png - small - - https://s.yimg.com/iu/api/res/1.2/X2Rl3IMtX4kP3IAStaYgLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27740.1.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29394 - 29394 - - Kentrell Brothers - Kentrell - Brothers - Kentrell - Brothers - - SUSP - Suspended - nfl.p.29394 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 40 - LB - - https://s.yimg.com/iu/api/res/1.2/PGHHPvc17KdIbN1mvWShaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29394.png - small - - https://s.yimg.com/iu/api/res/1.2/PGHHPvc17KdIbN1mvWShaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29394.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8944 - 8944 - - Erik Walden - Erik - Walden - Erik - Walden - - IR - Injured Reserve - hip - nfl.p.8944 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/nRAgAzyUombIBWV_0iFvyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8944.1.png - small - - https://s.yimg.com/iu/api/res/1.2/nRAgAzyUombIBWV_0iFvyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8944.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29480 - 29480 - - Tyler Matakevich - Tyler - Matakevich - Tyler - Matakevich - - nfl.p.29480 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/UurjPiLR1BdNMfz7KamgOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29480.png - small - - https://s.yimg.com/iu/api/res/1.2/UurjPiLR1BdNMfz7KamgOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29480.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8370 - 8370 - - Zak DeOssie - Zak - DeOssie - Zak - DeOssie - - nfl.p.8370 - nfl.t.19 - New York Giants - NYG - - 9 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/3Z_7oPEQgwVki5R6cD4yIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8370.png - small - - https://s.yimg.com/iu/api/res/1.2/3Z_7oPEQgwVki5R6cD4yIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8370.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25768 - 25768 - - Lavonte David - Lavonte - David - Lavonte - David - - nfl.p.25768 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/YO.9RYMQL8tOSgKgnDpVaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25768.png - small - - https://s.yimg.com/iu/api/res/1.2/YO.9RYMQL8tOSgKgnDpVaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25768.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 45 - 0 - - - - 380.p.28720 - 28720 - - Zaire Anderson - Zaire - Anderson - Zaire - Anderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28720 - nfl.t.7 - Denver Broncos - Den - - 10 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/P3yaFqExcnhDjYiLFICdOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28720.1.png - small - - https://s.yimg.com/iu/api/res/1.2/P3yaFqExcnhDjYiLFICdOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28720.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24949 - 24949 - - Chris Carter - Chris - Carter - Chris - Carter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24949 - nfl.t.28 - Washington Redskins - Was - - 4 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/bYn17XtA_3pZk8TUCH8vOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24949.1.png - small - - https://s.yimg.com/iu/api/res/1.2/bYn17XtA_3pZk8TUCH8vOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24949.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28529 - 28529 - - Martrell Spaight - Martrell - Spaight - Martrell - Spaight - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28529 - nfl.t.28 - Washington Redskins - Was - - 4 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/8pquj_as2YrVzE9a7NG9uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28529.png - small - - https://s.yimg.com/iu/api/res/1.2/8pquj_as2YrVzE9a7NG9uQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28529.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25688 - 25688 - - Michael Wilhoite - Michael - Wilhoite - Michael - Wilhoite - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25688 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/SJmin0yAee2.8yi1fgMFvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25688.png - small - - https://s.yimg.com/iu/api/res/1.2/SJmin0yAee2.8yi1fgMFvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25688.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27820 - 27820 - - Shaquil Barrett - Shaquil - Barrett - Shaquil - Barrett - - nfl.p.27820 - nfl.t.7 - Denver Broncos - Den - - 10 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/mbA.8TsZmVRL6WUBsU6tPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27820.png - small - - https://s.yimg.com/iu/api/res/1.2/mbA.8TsZmVRL6WUBsU6tPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27820.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25852 - 25852 - - Brandon Marshall - Brandon - Marshall - Brandon - Marshall - - nfl.p.25852 - nfl.t.7 - Denver Broncos - Den - - 10 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/a996nYJiUJIiDc9KflXqAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25852.png - small - - https://s.yimg.com/iu/api/res/1.2/a996nYJiUJIiDc9KflXqAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25852.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - 380.p.28312 - 28312 - - Todd Davis - Todd - Davis - Todd - Davis - - nfl.p.28312 - nfl.t.7 - Denver Broncos - Den - - 10 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/.AtWAOCCVDv6c5g8OEDmlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28312.png - small - - https://s.yimg.com/iu/api/res/1.2/.AtWAOCCVDv6c5g8OEDmlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28312.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28089 - 28089 - - Joe Thomas - Joe - Thomas - Joe - Thomas - - nfl.p.28089 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/bPnXxyYvgV87J0PvI0gH3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28089.png - small - - https://s.yimg.com/iu/api/res/1.2/bPnXxyYvgV87J0PvI0gH3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28089.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27801 - 27801 - - Brock Coyle - Brock - Coyle - Brock - Coyle - - nfl.p.27801 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/KSXS_5161jvSo9.mXBRbaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27801.png - small - - https://s.yimg.com/iu/api/res/1.2/KSXS_5161jvSo9.mXBRbaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27801.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25796 - 25796 - - Sean Spence - Sean - Spence - Sean - Spence - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25796 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/2KgHhD9GBLWxLTjDFVwccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25796.png - small - - https://s.yimg.com/iu/api/res/1.2/2KgHhD9GBLWxLTjDFVwccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25796.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28707 - 28707 - - Jonathan Anderson - Jonathan - Anderson - Jonathan - Anderson - - undisclosed - nfl.p.28707 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/Dza3oUJe85rCETPtHWDURA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28707.png - small - - https://s.yimg.com/iu/api/res/1.2/Dza3oUJe85rCETPtHWDURA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28707.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24890 - 24890 - - Sam Acho - Sam - Acho - Sam - Acho - - nfl.p.24890 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 93 - LB - - https://s.yimg.com/iu/api/res/1.2/FLBk7ULeeCdPQfK5DlOYBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24890.png - small - - https://s.yimg.com/iu/api/res/1.2/FLBk7ULeeCdPQfK5DlOYBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24890.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25980 - 25980 - - Steven Johnson - Steven - Johnson - Steven - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25980 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/rqEPdFNFZaqf12vHo3wexQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/25980.png - small - - https://s.yimg.com/iu/api/res/1.2/rqEPdFNFZaqf12vHo3wexQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/25980.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29333 - 29333 - - Joe Schobert - Joe - Schobert - Joe - Schobert - - nfl.p.29333 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/90HWI.vWPajiltE_vF2Ecg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29333.png - small - - https://s.yimg.com/iu/api/res/1.2/90HWI.vWPajiltE_vF2Ecg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29333.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 21 - 0 - - - - 380.p.9072 - 9072 - - Wesley Woodyard - Wesley - Woodyard - Wesley - Woodyard - - nfl.p.9072 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/fSlveMGkJEaNgqNunncuJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9072.png - small - - https://s.yimg.com/iu/api/res/1.2/fSlveMGkJEaNgqNunncuJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9072.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 21 - 0 - - - - 380.p.25815 - 25815 - - Nigel Bradham - Nigel - Bradham - Nigel - Bradham - - SUSP - Suspended - nfl.p.25815 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/RVApK2yJQEXG.DR1YFVZDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25815.png - small - - https://s.yimg.com/iu/api/res/1.2/RVApK2yJQEXG.DR1YFVZDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25815.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29309 - 29309 - - Shilique Calhoun - Shilique - Calhoun - Shilique - Calhoun - - nfl.p.29309 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 91 - LB - - https://s.yimg.com/iu/api/res/1.2/FXc8W7p_IJmsVceXDy_DoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29309.png - small - - https://s.yimg.com/iu/api/res/1.2/FXc8W7p_IJmsVceXDy_DoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29309.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26836 - 26836 - - Michael Mauti - Michael - Mauti - Michael - Mauti - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26836 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/7f9_IG9Ty0_miF11Ar9UcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26836.png - small - - https://s.yimg.com/iu/api/res/1.2/7f9_IG9Ty0_miF11Ar9UcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26836.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29807 - 29807 - - Brennan Scarlett - Brennan - Scarlett - Brennan - Scarlett - - nfl.p.29807 - nfl.t.34 - Houston Texans - Hou - - 10 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/ko.QNRZNK0_mnqOqAKOyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29807.1.png - small - - https://s.yimg.com/iu/api/res/1.2/ko.QNRZNK0_mnqOqAKOyUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29807.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25717 - 25717 - - Mark Barron - Mark - Barron - Mark - Barron - - Q - Questionable - nfl.p.25717 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 26 - LB - - https://s.yimg.com/iu/api/res/1.2/aeDRMpxWKAyDL5HaxfPB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25717.png - small - - https://s.yimg.com/iu/api/res/1.2/aeDRMpxWKAyDL5HaxfPB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25717.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 24 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.24857 - 24857 - - Justin Houston - Justin - Houston - Justin - Houston - - nfl.p.24857 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/B4NtfbNmrQC8IkA8jSwydQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24857.png - small - - https://s.yimg.com/iu/api/res/1.2/B4NtfbNmrQC8IkA8jSwydQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24857.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 15 - 0 - - - - 380.p.27551 - 27551 - - Dee Ford - Dee - Ford - Dee - Ford - - nfl.p.27551 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/SjazJHm1u0N9anoG76Hnuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27551.png - small - - https://s.yimg.com/iu/api/res/1.2/SjazJHm1u0N9anoG76Hnuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27551.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27672 - 27672 - - Telvin Smith - Telvin - Smith - Telvin - Smith - - nfl.p.27672 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/NJ3gcUFwVakY70HwNsqzeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27672.png - small - - https://s.yimg.com/iu/api/res/1.2/NJ3gcUFwVakY70HwNsqzeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27672.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 88 - 0 - - - - 380.p.26975 - 26975 - - LaRoy Reynolds - LaRoy - Reynolds - LaRoy - Reynolds - - nfl.p.26975 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/Jq83YCs3kfVma0kh29jLiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26975.png - small - - https://s.yimg.com/iu/api/res/1.2/Jq83YCs3kfVma0kh29jLiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26975.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28433 - 28433 - - Eric Kendricks - Eric - Kendricks - Eric - Kendricks - - nfl.p.28433 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/soAPyJN8PKXHEfff_irU6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28433.png - small - - https://s.yimg.com/iu/api/res/1.2/soAPyJN8PKXHEfff_irU6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28433.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 31 - 0 - - - - 380.p.28998 - 28998 - - Matt Longacre - Matt - Longacre - Matt - Longacre - - nfl.p.28998 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 96 - LB - - https://s.yimg.com/iu/api/res/1.2/soUkzHuEmnOsXyDUnLnwqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28998.png - small - - https://s.yimg.com/iu/api/res/1.2/soUkzHuEmnOsXyDUnLnwqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28998.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8302 - 8302 - - Justin Durant - Justin - Durant - Justin - Durant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8302 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/9yB1OsJ83mEMDPVgdabUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/8302.png - small - - https://s.yimg.com/iu/api/res/1.2/9yB1OsJ83mEMDPVgdabUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/8302.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8006 - 8006 - - Ahmad Brooks - Ahmad - Brooks - Ahmad - Brooks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8006 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/XdPjxsKHu7wRbN8yw.6s0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8006.png - small - - https://s.yimg.com/iu/api/res/1.2/XdPjxsKHu7wRbN8yw.6s0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8006.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28472 - 28472 - - Jordan Hicks - Jordan - Hicks - Jordan - Hicks - - nfl.p.28472 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/1Hyh3QKIwCEXu9NHxjHnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28472.png - small - - https://s.yimg.com/iu/api/res/1.2/1Hyh3QKIwCEXu9NHxjHnYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28472.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.27179 - 27179 - - Josh Martin - Josh - Martin - Josh - Martin - - Q - Questionable - nfl.p.27179 - nfl.t.20 - New York Jets - NYJ - - 11 - - 95 - LB - - https://s.yimg.com/iu/api/res/1.2/N1SklK1WfmUZCJrUVzFcfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27179.1.png - small - - https://s.yimg.com/iu/api/res/1.2/N1SklK1WfmUZCJrUVzFcfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27179.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27555 - 27555 - - Deone Bucannon - Deone - Bucannon - Deone - Bucannon - - nfl.p.27555 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 20 - LB - - https://s.yimg.com/iu/api/res/1.2/srk_jEDRgMoD6wy3KKNitA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27555.png - small - - https://s.yimg.com/iu/api/res/1.2/srk_jEDRgMoD6wy3KKNitA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27555.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - 380.p.24336 - 24336 - - Vincent Rey - Vincent - Rey - Vincent - Rey - - Q - Questionable - nfl.p.24336 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/bQAYxL_ewKALg7gR6TbYPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24336.1.png - small - - https://s.yimg.com/iu/api/res/1.2/bQAYxL_ewKALg7gR6TbYPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24336.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24827 - 24827 - - Bruce Carter - Bruce - Carter - Bruce - Carter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24827 - nfl.t.20 - New York Jets - NYJ - - 11 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/brwxRdbrjxXPJy0NuzYlSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24827.1.png - small - - https://s.yimg.com/iu/api/res/1.2/brwxRdbrjxXPJy0NuzYlSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24827.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27660 - 27660 - - Kevin Pierre-Louis - Kevin - Pierre-Louis - Kevin - Pierre-Louis - - SUSP - Suspended - nfl.p.27660 - nfl.t.20 - New York Jets - NYJ - - 11 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/xYCet6QzTkZbHoWv84xeWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27660.png - small - - https://s.yimg.com/iu/api/res/1.2/xYCet6QzTkZbHoWv84xeWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27660.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26093 - 26093 - - Julian Stanford - Julian - Stanford - Julian - Stanford - - Q - Questionable - nfl.p.26093 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/fNi7LUd8m4juZqH0.G8V7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26093.1.png - small - - https://s.yimg.com/iu/api/res/1.2/fNi7LUd8m4juZqH0.G8V7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26093.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28560 - 28560 - - D.J. Alexander - D.J. - Alexander - D.J. - Alexander - - nfl.p.28560 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/xIBC3z8z19M8QSQ32qqSmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28560.png - small - - https://s.yimg.com/iu/api/res/1.2/xIBC3z8z19M8QSQ32qqSmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28560.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24789 - 24789 - - Von Miller - Von - Miller - Von - Miller - - nfl.p.24789 - nfl.t.7 - Denver Broncos - Den - - 10 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/3BUQnHsq1.CHC6nS1g3vjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24789.png - small - - https://s.yimg.com/iu/api/res/1.2/3BUQnHsq1.CHC6nS1g3vjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24789.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 58 - 0 - - - - 380.p.28541 - 28541 - - Kyle Emanuel - Kyle - Emanuel - Kyle - Emanuel - - nfl.p.28541 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/KKgdqyAqgHc1AAjAczntkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28541.png - small - - https://s.yimg.com/iu/api/res/1.2/KKgdqyAqgHc1AAjAczntkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28541.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26816 - 26816 - - Nate Palmer - Nate - Palmer - Nate - Palmer - - IR - Injured Reserve - leg - nfl.p.26816 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/upupuWh4eQTPx8dJErupzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26816.png - small - - https://s.yimg.com/iu/api/res/1.2/upupuWh4eQTPx8dJErupzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26816.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27203 - 27203 - - Will Compton - Will - Compton - Will - Compton - - nfl.p.27203 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/EXOZg0vHNnhx5AB2BQP0rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27203.png - small - - https://s.yimg.com/iu/api/res/1.2/EXOZg0vHNnhx5AB2BQP0rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27203.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29270 - 29270 - - Myles Jack - Myles - Jack - Myles - Jack - - nfl.p.29270 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/ePd.EBzTpfi1ztkalJCZPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29270.png - small - - https://s.yimg.com/iu/api/res/1.2/ePd.EBzTpfi1ztkalJCZPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29270.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 52 - 0 - - - - 380.p.28515 - 28515 - - Damien Wilson - Damien - Wilson - Damien - Wilson - - nfl.p.28515 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/LqgmkuJlPEH8X6NUMRjw_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28515.png - small - - https://s.yimg.com/iu/api/res/1.2/LqgmkuJlPEH8X6NUMRjw_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28515.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28506 - 28506 - - Ramik Wilson - Ramik - Wilson - Ramik - Wilson - - nfl.p.28506 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/5c3TFzedFuQ_K88TeA6CWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28506.1.png - small - - https://s.yimg.com/iu/api/res/1.2/5c3TFzedFuQ_K88TeA6CWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28506.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24871 - 24871 - - Mason Foster - Mason - Foster - Mason - Foster - - nfl.p.24871 - nfl.t.28 - Washington Redskins - Was - - 4 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/gcTWayAWiJjrpr_0VPu0.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24871.png - small - - https://s.yimg.com/iu/api/res/1.2/gcTWayAWiJjrpr_0VPu0.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24871.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.9277 - 9277 - - Brian Orakpo - Brian - Orakpo - Brian - Orakpo - - nfl.p.9277 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 98 - LB - - https://s.yimg.com/iu/api/res/1.2/mU_p9I6JLtlbZDvEsXzEWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9277.png - small - - https://s.yimg.com/iu/api/res/1.2/mU_p9I6JLtlbZDvEsXzEWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9277.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27678 - 27678 - - Aaron Lynch - Aaron - Lynch - Aaron - Lynch - - Q - Questionable - nfl.p.27678 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 99 - LB - - https://s.yimg.com/iu/api/res/1.2/g2VskYWgcukj89naChY.DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27678.png - small - - https://s.yimg.com/iu/api/res/1.2/g2VskYWgcukj89naChY.DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27678.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7569 - 7569 - - Lorenzo Alexander - Lorenzo - Alexander - Lorenzo - Alexander - - nfl.p.7569 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/l4Ambvd3B8AjxDzQzNfdFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7569.png - small - - https://s.yimg.com/iu/api/res/1.2/l4Ambvd3B8AjxDzQzNfdFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/7569.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26238 - 26238 - - Vontaze Burfict - Vontaze - Burfict - Vontaze - Burfict - - SUSP - Suspended - nfl.p.26238 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/rSpDPdSOcrlgg8H7.MLS9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26238.png - small - - https://s.yimg.com/iu/api/res/1.2/rSpDPdSOcrlgg8H7.MLS9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26238.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.24886 - 24886 - - K.J. Wright - K.J. - Wright - K.J. - Wright - - D - Doubtful - nfl.p.24886 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/94vFYz8I1UXwBsFwd8_raw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24886.png - small - - https://s.yimg.com/iu/api/res/1.2/94vFYz8I1UXwBsFwd8_raw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24886.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.27601 - 27601 - - Preston Brown - Preston - Brown - Preston - Brown - - nfl.p.27601 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/MqorqPgF3Z8C5H8177tY.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27601.1.png - small - - https://s.yimg.com/iu/api/res/1.2/MqorqPgF3Z8C5H8177tY.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27601.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 14 - 0 - - - - 380.p.29955 - 29955 - - James Cowser - James - Cowser - James - Cowser - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29955 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/se3ss53Unzno0vcfIOoV9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29955.png - small - - https://s.yimg.com/iu/api/res/1.2/se3ss53Unzno0vcfIOoV9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29955.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29442 - 29442 - - Kamu Grugier-Hill - Kamu - Grugier-Hill - Kamu - Grugier-Hill - - nfl.p.29442 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/6jDpAhoGM.5ZhFTlEQcbMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/29442.png - small - - https://s.yimg.com/iu/api/res/1.2/6jDpAhoGM.5ZhFTlEQcbMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/29442.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28419 - 28419 - - Stephone Anthony - Stephone - Anthony - Stephone - Anthony - - nfl.p.28419 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/REqET0T8l98SLrSP6cHplg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28419.png - small - - https://s.yimg.com/iu/api/res/1.2/REqET0T8l98SLrSP6cHplg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28419.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27166 - 27166 - - Daren Bates - Daren - Bates - Daren - Bates - - nfl.p.27166 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/1aVfyPZG0L2BNHYaiVc1Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27166.png - small - - https://s.yimg.com/iu/api/res/1.2/1aVfyPZG0L2BNHYaiVc1Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27166.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28510 - 28510 - - Za'Darius Smith - Za'Darius - Smith - Za'Darius - Smith - - nfl.p.28510 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 90 - LB - - https://s.yimg.com/iu/api/res/1.2/fp2hO0qhwXNkc5ybWDO65Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28510.png - small - - https://s.yimg.com/iu/api/res/1.2/fp2hO0qhwXNkc5ybWDO65Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28510.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27612 - 27612 - - Kareem Martin - Kareem - Martin - Kareem - Martin - - nfl.p.27612 - nfl.t.19 - New York Giants - NYG - - 9 - - 96 - LB - - https://s.yimg.com/iu/api/res/1.2/ByVG4f_SVdptdKklVQf_0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27612.png - small - - https://s.yimg.com/iu/api/res/1.2/ByVG4f_SVdptdKklVQf_0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27612.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29317 - 29317 - - Jordan Jenkins - Jordan - Jenkins - Jordan - Jenkins - - nfl.p.29317 - nfl.t.20 - New York Jets - NYJ - - 11 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/vxxS5.kTTQqVljGWSdtYeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29317.1.png - small - - https://s.yimg.com/iu/api/res/1.2/vxxS5.kTTQqVljGWSdtYeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29317.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29347 - 29347 - - Nick Kwiatkoski - Nick - Kwiatkoski - Nick - Kwiatkoski - - nfl.p.29347 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/b.20YBMaAYVkTQFr1W.Vfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29347.png - small - - https://s.yimg.com/iu/api/res/1.2/b.20YBMaAYVkTQFr1W.Vfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29347.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28426 - 28426 - - Preston Smith - Preston - Smith - Preston - Smith - - nfl.p.28426 - nfl.t.28 - Washington Redskins - Was - - 4 - - 94 - LB - - https://s.yimg.com/iu/api/res/1.2/Z7a78D.vuglfTvoofIKb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28426.png - small - - https://s.yimg.com/iu/api/res/1.2/Z7a78D.vuglfTvoofIKb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28426.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25756 - 25756 - - Mychal Kendricks - Mychal - Kendricks - Mychal - Kendricks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25756 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/gRy0GT76iBh9SGAirOcnSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25756.png - small - - https://s.yimg.com/iu/api/res/1.2/gRy0GT76iBh9SGAirOcnSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25756.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25787 - 25787 - - Demario Davis - Demario - Davis - Demario - Davis - - nfl.p.25787 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/UuxpS.s49a2efDQeDv5xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/25787.png - small - - https://s.yimg.com/iu/api/res/1.2/UuxpS.s49a2efDQeDv5xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/25787.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 36 - 0 - - - - 380.p.28467 - 28467 - - Eli Harold - Eli - Harold - Eli - Harold - - nfl.p.28467 - nfl.t.8 - Detroit Lions - Det - - 6 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/JRkdbCEsNJBmz.U9xLM8Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28467.png - small - - https://s.yimg.com/iu/api/res/1.2/JRkdbCEsNJBmz.U9xLM8Pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28467.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25829 - 25829 - - Keenan Robinson - Keenan - Robinson - Keenan - Robinson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25829 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/RRMBbuTFKLN3V7bdmPLdXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/25829.png - small - - https://s.yimg.com/iu/api/res/1.2/RRMBbuTFKLN3V7bdmPLdXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/25829.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25898 - 25898 - - Danny Trevathan - Danny - Trevathan - Danny - Trevathan - - nfl.p.25898 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/WwSCJ87_06XZN84diI2qyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25898.png - small - - https://s.yimg.com/iu/api/res/1.2/WwSCJ87_06XZN84diI2qyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25898.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.29365 - 29365 - - Blake Martinez - Blake - Martinez - Blake - Martinez - - nfl.p.29365 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/92UkEy2ciA65_znHK1GB7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29365.png - small - - https://s.yimg.com/iu/api/res/1.2/92UkEy2ciA65_znHK1GB7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29365.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 64 - 0 - - - - 380.p.25358 - 25358 - - Josh Bynes - Josh - Bynes - Josh - Bynes - - nfl.p.25358 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/c13qX75nT7yF6sIV3hGl_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25358.png - small - - https://s.yimg.com/iu/api/res/1.2/c13qX75nT7yF6sIV3hGl_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25358.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7190 - 7190 - - Thomas Davis - Thomas - Davis - Thomas - Davis - - SUSP - Suspended - nfl.p.7190 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/RfebfWbyfj.Sq01Aw0JWyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7190.png - small - - https://s.yimg.com/iu/api/res/1.2/RfebfWbyfj.Sq01Aw0JWyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7190.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26370 - 26370 - - L.J. Fort - L.J. - Fort - L.J. - Fort - - nfl.p.26370 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/kYkKdROQeNi7w9JDO6PD0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26370.png - small - - https://s.yimg.com/iu/api/res/1.2/kYkKdROQeNi7w9JDO6PD0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/26370.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25762 - 25762 - - Zach Brown - Zach - Brown - Zach - Brown - - Q - Questionable - nfl.p.25762 - nfl.t.28 - Washington Redskins - Was - - 4 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/si.pBHKzFo2snKD_7ZKGXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25762.1.png - small - - https://s.yimg.com/iu/api/res/1.2/si.pBHKzFo2snKD_7ZKGXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25762.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 48 - 0 - - - - 380.p.29359 - 29359 - - Antonio Morrison - Antonio - Morrison - Antonio - Morrison - - nfl.p.29359 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/l7nwGPqoioAZ9FwzN7ZnHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29359.1.png - small - - https://s.yimg.com/iu/api/res/1.2/l7nwGPqoioAZ9FwzN7ZnHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29359.1.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28410 - 28410 - - Bud Dupree - Bud - Dupree - Bud - Dupree - - nfl.p.28410 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/TAsGO5.1ErcmOW4KQQ_thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28410.png - small - - https://s.yimg.com/iu/api/res/1.2/TAsGO5.1ErcmOW4KQQ_thw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28410.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26653 - 26653 - - Alec Ogletree - Alec - Ogletree - Alec - Ogletree - - nfl.p.26653 - nfl.t.19 - New York Giants - NYG - - 9 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/gAeQaebj6vYqg7yGY4iqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26653.png - small - - https://s.yimg.com/iu/api/res/1.2/gAeQaebj6vYqg7yGY4iqeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26653.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 32 - 0 - - - - 380.p.29243 - 29243 - - Leonard Floyd - Leonard - Floyd - Leonard - Floyd - - Q - Questionable - nfl.p.29243 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 94 - LB - - https://s.yimg.com/iu/api/res/1.2/zljUzhNjRAhADWt1gjC4ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29243.png - small - - https://s.yimg.com/iu/api/res/1.2/zljUzhNjRAhADWt1gjC4ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29243.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.28436 - 28436 - - Denzel Perryman - Denzel - Perryman - Denzel - Perryman - - nfl.p.28436 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/zi2ejDT4Tpf6TH.YtAjfnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28436.png - small - - https://s.yimg.com/iu/api/res/1.2/zi2ejDT4Tpf6TH.YtAjfnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28436.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30424 - 30424 - - Nigel Harris - Nigel - Harris - Nigel - Harris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30424 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30428 - 30428 - - James Onwualu - James - Onwualu - James - Onwualu - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30428 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30306 - 30306 - - Jordan Evans - Jordan - Evans - Jordan - Evans - - nfl.p.30306 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30238 - 30238 - - Samson Ebukam - Samson - Ebukam - Samson - Ebukam - - nfl.p.30238 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30172 - 30172 - - Tanoh Kpassagnon - Tanoh - Kpassagnon - Tanoh - Kpassagnon - - nfl.p.30172 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 92 - LB - - https://s.yimg.com/iu/api/res/1.2/pxssCLuu5UleuEGFwwsKjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30172.png - small - - https://s.yimg.com/iu/api/res/1.2/pxssCLuu5UleuEGFwwsKjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30172.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28554 - 28554 - - Joe Cardona - Joe - Cardona - Joe - Cardona - - nfl.p.28554 - nfl.t.17 - New England Patriots - NE - - 11 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/1NYQ6PC__cbgEJ3HukKddg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28554.png - small - - https://s.yimg.com/iu/api/res/1.2/1NYQ6PC__cbgEJ3HukKddg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28554.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30162 - 30162 - - Ryan Anderson - Ryan - Anderson - Ryan - Anderson - - nfl.p.30162 - nfl.t.28 - Washington Redskins - Was - - 4 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/zcCLmuXy8LQ0qEMBD1KLLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30162.png - small - - https://s.yimg.com/iu/api/res/1.2/zcCLmuXy8LQ0qEMBD1KLLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30162.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29276 - 29276 - - Kamalei Correa - Kamalei - Correa - Kamalei - Correa - - nfl.p.29276 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/zFRPugcziN6PsO5kDShB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29276.png - small - - https://s.yimg.com/iu/api/res/1.2/zFRPugcziN6PsO5kDShB9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29276.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30583 - 30583 - - Hardy Nickerson - Hardy - Nickerson - Hardy - Nickerson - - nfl.p.30583 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/9n0fi.sMhOqAMmn8wmcxcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30583.png - small - - https://s.yimg.com/iu/api/res/1.2/9n0fi.sMhOqAMmn8wmcxcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30583.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29268 - 29268 - - Jaylon Smith - Jaylon - Smith - Jaylon - Smith - - nfl.p.29268 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/Qu2hDk3NQV1zYv5OU6TKJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29268.png - small - - https://s.yimg.com/iu/api/res/1.2/Qu2hDk3NQV1zYv5OU6TKJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29268.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 13 - 0 - - - - 380.p.27348 - 27348 - - Deon Lacey - Deon - Lacey - Deon - Lacey - - nfl.p.27348 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/UC0tV7mvFSNB8_kdZrsE_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130908/27348.png - small - - https://s.yimg.com/iu/api/res/1.2/UC0tV7mvFSNB8_kdZrsE_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130908/27348.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30220 - 30220 - - Kendell Beckwith - Kendell - Beckwith - Kendell - Beckwith - - O - Out - nfl.p.30220 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29417 - 29417 - - Devante Bond - Devante - Bond - Devante - Bond - - IR - Injured Reserve - hamstring - nfl.p.29417 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/ijUy6A3xpFoI7oRVXRctwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29417.png - small - - https://s.yimg.com/iu/api/res/1.2/ijUy6A3xpFoI7oRVXRctwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29417.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30237 - 30237 - - Jalen Reeves-Maybin - Jalen - Reeves-Maybin - Jalen - Reeves-Maybin - - nfl.p.30237 - nfl.t.8 - Detroit Lions - Det - - 6 - - 44 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30233 - 30233 - - Ben Gedeon - Ben - Gedeon - Ben - Gedeon - - nfl.p.30233 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30134 - 30134 - - Jarrad Davis - Jarrad - Davis - Jarrad - Davis - - nfl.p.30134 - nfl.t.8 - Detroit Lions - Det - - 6 - - 40 - LB - - https://s.yimg.com/iu/api/res/1.2/NwRMwGLNHl8LD41sh5VRmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30134.png - small - - https://s.yimg.com/iu/api/res/1.2/NwRMwGLNHl8LD41sh5VRmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30134.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 21 - 0 - - - - 380.p.30191 - 30191 - - Tim Williams - Tim - Williams - Tim - Williams - - nfl.p.30191 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/G_cgpxyPOf2JYvighYlMrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30191.png - small - - https://s.yimg.com/iu/api/res/1.2/G_cgpxyPOf2JYvighYlMrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30191.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27287 - 27287 - - Ray-Ray Armstrong - Ray-Ray - Armstrong - Ray-Ray - Armstrong - - nfl.p.27287 - nfl.t.19 - New York Giants - NYG - - 9 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/EDeh4NQoKwEfAQyvcYfCwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27287.png - small - - https://s.yimg.com/iu/api/res/1.2/EDeh4NQoKwEfAQyvcYfCwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27287.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29822 - 29822 - - James Burgess Jr. - James - Burgess Jr. - James - Burgess Jr. - - Q - Questionable - nfl.p.29822 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/q9u0SlGERefS8qjPf5PIOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29822.1.png - small - - https://s.yimg.com/iu/api/res/1.2/q9u0SlGERefS8qjPf5PIOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29822.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30276 - 30276 - - Matt Milano - Matt - Milano - Matt - Milano - - nfl.p.30276 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28999 - 28999 - - Cameron Lynch - Cameron - Lynch - Cameron - Lynch - - nfl.p.28999 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/t7T63QqLUyM7bEjDlIcrew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28999.png - small - - https://s.yimg.com/iu/api/res/1.2/t7T63QqLUyM7bEjDlIcrew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28999.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29275 - 29275 - - Reggie Ragland - Reggie - Ragland - Reggie - Ragland - - nfl.p.29275 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/8UwAyLo1r9ZgVObtbiW.kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29275.png - small - - https://s.yimg.com/iu/api/res/1.2/8UwAyLo1r9ZgVObtbiW.kg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29275.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30462 - 30462 - - Chris Odom - Chris - Odom - Chris - Odom - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30462 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 98 - LB - - https://s.yimg.com/iu/api/res/1.2/X8S0UtiH8d.zT3et7RYs9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30462.png - small - - https://s.yimg.com/iu/api/res/1.2/X8S0UtiH8d.zT3et7RYs9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30462.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30736 - 30736 - - Calvin Munson - Calvin - Munson - Calvin - Munson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30736 - nfl.t.19 - New York Giants - NYG - - 9 - - 46 - LB - - https://s.yimg.com/iu/api/res/1.2/yDJg.OdMV.FI4_XoBMnmSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30736.png - small - - https://s.yimg.com/iu/api/res/1.2/yDJg.OdMV.FI4_XoBMnmSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30736.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30261 - 30261 - - Blair Brown - Blair - Brown - Blair - Brown - - nfl.p.30261 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28679 - 28679 - - Nick Dzubnar - Nick - Dzubnar - Nick - Dzubnar - - nfl.p.28679 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/.fseFXin2N2AvoYHKDAdww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28679.png - small - - https://s.yimg.com/iu/api/res/1.2/.fseFXin2N2AvoYHKDAdww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28679.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29485 - 29485 - - Joe Walker - Joe - Walker - Joe - Walker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29485 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/TpWQMbIRgJODaCeGp0j_Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29485.png - small - - https://s.yimg.com/iu/api/res/1.2/TpWQMbIRgJODaCeGp0j_Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29485.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30144 - 30144 - - Reuben Foster - Reuben - Foster - Reuben - Foster - - SUSP - Suspended - nfl.p.30144 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/pWavUbTc52oDKhuuKn7DNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30144.png - small - - https://s.yimg.com/iu/api/res/1.2/pWavUbTc52oDKhuuKn7DNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30144.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.30297 - 30297 - - Nathan Gerry - Nathan - Gerry - Nathan - Gerry - - nfl.p.30297 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/yAVa5Cvg13JhMoMn.4latQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30297.png - small - - https://s.yimg.com/iu/api/res/1.2/yAVa5Cvg13JhMoMn.4latQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30297.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27682 - 27682 - - Jeremiah George - Jeremiah - George - Jeremiah - George - - IR - Injured Reserve - undisclosed - nfl.p.27682 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/PwAsKdMcEXcWQuKjR8mK3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27682.png - small - - https://s.yimg.com/iu/api/res/1.2/PwAsKdMcEXcWQuKjR8mK3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27682.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29111 - 29111 - - Tyrell Adams - Tyrell - Adams - Tyrell - Adams - - IR - Injured Reserve - nfl.p.29111 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/_YOQlXnF5cl_aZN3FW4LLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29111.1.png - small - - https://s.yimg.com/iu/api/res/1.2/_YOQlXnF5cl_aZN3FW4LLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29111.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25593 - 25593 - - Ben Jacobs - Ben - Jacobs - Ben - Jacobs - - nfl.p.25593 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/wbTEbmC75m3pEBlVwjjSWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25593.png - small - - https://s.yimg.com/iu/api/res/1.2/wbTEbmC75m3pEBlVwjjSWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25593.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30308 - 30308 - - Tanner Vallejo - Tanner - Vallejo - Tanner - Vallejo - - nfl.p.30308 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30126 - 30126 - - Haason Reddick - Haason - Reddick - Haason - Reddick - - nfl.p.30126 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 43 - LB - - https://s.yimg.com/iu/api/res/1.2/UQDv..vXfvlFCaE0tE1WMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30126.png - small - - https://s.yimg.com/iu/api/res/1.2/UQDv..vXfvlFCaE0tE1WMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30126.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.26661 - 26661 - - Manti Te'o - Manti - Te'o - Manti - Te'o - - nfl.p.26661 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/.FPcegcrXVmqi661F0Um1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26661.png - small - - https://s.yimg.com/iu/api/res/1.2/.FPcegcrXVmqi661F0Um1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26661.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30189 - 30189 - - Alex Anzalone - Alex - Anzalone - Alex - Anzalone - - nfl.p.30189 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 47 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30799 - 30799 - - Dylan Cole - Dylan - Cole - Dylan - Cole - - nfl.p.30799 - nfl.t.34 - Houston Texans - Hou - - 10 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30343 - 30343 - - Josh Harvey-Clemons - Josh - Harvey-Clemons - Josh - Harvey-Clemons - - nfl.p.30343 - nfl.t.28 - Washington Redskins - Was - - 4 - - 40 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30539 - 30539 - - B.J. Bello - B.J. - Bello - B.J. - Bello - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30539 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24019 - 24019 - - Lamarr Houston - Lamarr - Houston - Lamarr - Houston - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24019 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 99 - LB - - https://s.yimg.com/iu/api/res/1.2/8oEI03NgGEL4L3R2QGa.RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/24019.png - small - - https://s.yimg.com/iu/api/res/1.2/8oEI03NgGEL4L3R2QGa.RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/24019.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30622 - 30622 - - Donald Payne - Donald - Payne - Donald - Payne - - nfl.p.30622 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 52 - LB - - https://s.yimg.com/iu/api/res/1.2/d8FuXpdS9zBuaND20UZyRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30622.png - small - - https://s.yimg.com/iu/api/res/1.2/d8FuXpdS9zBuaND20UZyRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30622.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29484 - 29484 - - Scooby Wright III - Scooby - Wright III - Scooby - Wright III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29484 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/8uBWvH.uFSELrCMB.LUQKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29484.png - small - - https://s.yimg.com/iu/api/res/1.2/8uBWvH.uFSELrCMB.LUQKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29484.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27761 - 27761 - - Trevor Reilly - Trevor - Reilly - Trevor - Reilly - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27761 - nfl.t.17 - New England Patriots - NE - - 11 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/RqwttVx3vqntNqWZfPrGsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27761.1.png - small - - https://s.yimg.com/iu/api/res/1.2/RqwttVx3vqntNqWZfPrGsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27761.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30170 - 30170 - - Zach Cunningham - Zach - Cunningham - Zach - Cunningham - - nfl.p.30170 - nfl.t.34 - Houston Texans - Hou - - 10 - - 41 - LB - - https://s.yimg.com/iu/api/res/1.2/UC24y5REQH_36uU7Rvub8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30170.png - small - - https://s.yimg.com/iu/api/res/1.2/UC24y5REQH_36uU7Rvub8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30170.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.30160 - 30160 - - Tyus Bowser - Tyus - Bowser - Tyus - Bowser - - nfl.p.30160 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/mscmbCxHElQxZKnG1H1oYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30160.png - small - - https://s.yimg.com/iu/api/res/1.2/mscmbCxHElQxZKnG1H1oYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30160.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30274 - 30274 - - Anthony Walker Jr. - Anthony - Walker Jr. - Anthony - Walker Jr. - - Q - Questionable - nfl.p.30274 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26673 - 26673 - - Jon Bostic - Jon - Bostic - Jon - Bostic - - nfl.p.26673 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 51 - LB - - https://s.yimg.com/iu/api/res/1.2/moZ4vtjnV8s.IvZ7Q39E9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26673.png - small - - https://s.yimg.com/iu/api/res/1.2/moZ4vtjnV8s.IvZ7Q39E9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26673.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29267 - 29267 - - Kevin Dodd - Kevin - Dodd - Kevin - Dodd - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29267 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 93 - LB - - https://s.yimg.com/iu/api/res/1.2/1ty1m0pOWy3Bay36iiUYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29267.png - small - - https://s.yimg.com/iu/api/res/1.2/1ty1m0pOWy3Bay36iiUYvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29267.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30640 - 30640 - - Chase Allen - Chase - Allen - Chase - Allen - - nfl.p.30640 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 59 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30188 - 30188 - - Duke Riley - Duke - Riley - Duke - Riley - - nfl.p.30188 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 42 - LB - - https://s.yimg.com/iu/api/res/1.2/7fSBYEJzwQte79d6sbC7CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30188.png - small - - https://s.yimg.com/iu/api/res/1.2/7fSBYEJzwQte79d6sbC7CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30188.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29885 - 29885 - - Terrance Smith - Terrance - Smith - Terrance - Smith - - nfl.p.29885 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 48 - LB - - https://s.yimg.com/iu/api/res/1.2/STXMqumoOq1XuMbrlJnJKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29885.1.png - small - - https://s.yimg.com/iu/api/res/1.2/STXMqumoOq1XuMbrlJnJKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29885.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30268 - 30268 - - Jayon Brown - Jayon - Brown - Jayon - Brown - - nfl.p.30268 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30448 - 30448 - - Eric Wilson - Eric - Wilson - Eric - Wilson - - nfl.p.30448 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29818 - 29818 - - Steve Longa - Steve - Longa - Steve - Longa - - IR - Injured Reserve - torn ACL - nfl.p.29818 - nfl.t.8 - Detroit Lions - Det - - 6 - - 54 - LB - - https://s.yimg.com/iu/api/res/1.2/2xDJ6yeFPoX2Y57BhkvBag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29818.png - small - - https://s.yimg.com/iu/api/res/1.2/2xDJ6yeFPoX2Y57BhkvBag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29818.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30143 - 30143 - - T.J. Watt - T.J. - Watt - T.J. - Watt - - nfl.p.30143 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 90 - LB - - https://s.yimg.com/iu/api/res/1.2/tA3nSCqOm.9DTFNfzLJ7BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30143.png - small - - https://s.yimg.com/iu/api/res/1.2/tA3nSCqOm.9DTFNfzLJ7BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30143.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 23 - 0 - - - - 380.p.30633 - 30633 - - Nicholas Morrow - Nicholas - Morrow - Nicholas - Morrow - - nfl.p.30633 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29716 - 29716 - - Nicholas Grigsby - Nicholas - Grigsby - Nicholas - Grigsby - - nfl.p.29716 - nfl.t.17 - New England Patriots - NE - - 11 - - 50 - LB - - https://s.yimg.com/iu/api/res/1.2/7qvqCae3WNSydUQLUxEtFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29716.png - small - - https://s.yimg.com/iu/api/res/1.2/7qvqCae3WNSydUQLUxEtFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29716.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30221 - 30221 - - Vince Biegel - Vince - Biegel - Vince - Biegel - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30221 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 45 - LB - - https://s.yimg.com/iu/api/res/1.2/Y.oN2cVfbdbZF25Hj3k.Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30221.png - small - - https://s.yimg.com/iu/api/res/1.2/Y.oN2cVfbdbZF25Hj3k.Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30221.png - 0 - DP - - LB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30281 - 30281 - - Marquel Lee - Marquel - Lee - Marquel - Lee - - nfl.p.30281 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 55 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30638 - 30638 - - Xavier Woodson-Luster - Xavier - Woodson-Luster - Xavier - Woodson-Luster - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30638 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28788 - 28788 - - Josh Keyes - Josh - Keyes - Josh - Keyes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28788 - nfl.t.34 - Houston Texans - Hou - - 10 - - 49 - LB - - https://s.yimg.com/iu/api/res/1.2/_y1xzVAJrsyI1yt7QLRUZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28788.png - small - - https://s.yimg.com/iu/api/res/1.2/_y1xzVAJrsyI1yt7QLRUZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28788.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24405 - 24405 - - Junior Galette - Junior - Galette - Junior - Galette - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24405 - nfl.t.28 - Washington Redskins - Was - - 4 - - 58 - LB - - https://s.yimg.com/iu/api/res/1.2/0H4U1iuEmYpSEyoJ330jlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24405.png - small - - https://s.yimg.com/iu/api/res/1.2/0H4U1iuEmYpSEyoJ330jlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24405.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28916 - 28916 - - Zach Vigil - Zach - Vigil - Zach - Vigil - - nfl.p.28916 - nfl.t.28 - Washington Redskins - Was - - 4 - - 56 - LB - - https://s.yimg.com/iu/api/res/1.2/QCnA7fJ9L6IZamS4kSfLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28916.1.png - small - - https://s.yimg.com/iu/api/res/1.2/QCnA7fJ9L6IZamS4kSfLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28916.1.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31134 - 31134 - - Natrell Jamerson - Natrell - Jamerson - Natrell - Jamerson - - nfl.p.31134 - nfl.t.34 - Houston Texans - Hou - - 10 - - 31 - DB,S,CB - - https://s.yimg.com/iu/api/res/1.2/eOfEzx40QENXfy4V2ltapA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31134.png - small - - https://s.yimg.com/iu/api/res/1.2/eOfEzx40QENXfy4V2ltapA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31134.png - 0 - DP - - DB - S - CB - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.27575 - 27575 - - Trent Murphy - Trent - Murphy - Trent - Murphy - - Q - Questionable - nfl.p.27575 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 93 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/dfFmB4EXqhMdgKPoonanYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27575.png - small - - https://s.yimg.com/iu/api/res/1.2/dfFmB4EXqhMdgKPoonanYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27575.png - 0 - DP - - LB - DE - - 1 - - - - - - - - - - - - week - 1 - 14 - 0 - - - - 380.p.29415 - 29415 - - Tyrone Holmes - Tyrone - Holmes - Tyrone - Holmes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29415 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 54 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/WRlV1R.cMKCAeGbHitkCJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29415.1.png - small - - https://s.yimg.com/iu/api/res/1.2/WRlV1R.cMKCAeGbHitkCJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29415.1.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.31016 - 31016 - - Breeland Speaks - Breeland - Speaks - Breeland - Speaks - - nfl.p.31016 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 57 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/oSdcHH7RN4y5wjsoD6uCKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31016.png - small - - https://s.yimg.com/iu/api/res/1.2/oSdcHH7RN4y5wjsoD6uCKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31016.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.30856 - 30856 - - Darnell Leslie - Darnell - Leslie - Darnell - Leslie - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30856 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 49 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/ctYhjaTn8ZitNx.YkiBrvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30856.png - small - - https://s.yimg.com/iu/api/res/1.2/ctYhjaTn8ZitNx.YkiBrvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30856.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.29474 - 29474 - - Alex McCalister - Alex - McCalister - Alex - McCalister - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29474 - nfl.t.28 - Washington Redskins - Was - - 4 - - 59 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/8GDdHDxagA6VWWGzu9Tjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29474.png - small - - https://s.yimg.com/iu/api/res/1.2/8GDdHDxagA6VWWGzu9Tjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29474.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.31156 - 31156 - - Jacob Martin - Jacob - Martin - Jacob - Martin - - nfl.p.31156 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 59 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.31288 - 31288 - - James Hearns - James - Hearns - James - Hearns - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31288 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 49 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29437 - 29437 - - Dadi Nicolas - Dadi - Nicolas - Dadi - Nicolas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29437 - nfl.t.28 - Washington Redskins - Was - - 4 - - 55 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/I._Ow018FHiwSHQ1UjqbRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29437.1.png - small - - https://s.yimg.com/iu/api/res/1.2/I._Ow018FHiwSHQ1UjqbRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29437.1.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.26776 - 26776 - - Stansly Maponga - Stansly - Maponga - Stansly - Maponga - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26776 - nfl.t.7 - Denver Broncos - Den - - 10 - - 59 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/t8P7RR64vuoiuR9D4CO4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/26776.png - small - - https://s.yimg.com/iu/api/res/1.2/t8P7RR64vuoiuR9D4CO4MA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/26776.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31146 - 31146 - - Duke Ejiofor - Duke - Ejiofor - Duke - Ejiofor - - nfl.p.31146 - nfl.t.34 - Houston Texans - Hou - - 10 - - 53 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.29546 - 29546 - - Bryson Albright - Bryson - Albright - Bryson - Albright - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.29546 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 54 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/S9Oyzi0dtLGIxhC4BmS.uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29546.1.png - small - - https://s.yimg.com/iu/api/res/1.2/S9Oyzi0dtLGIxhC4BmS.uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29546.1.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31130 - 31130 - - Ogbonnia Okoronkwo - Ogbonnia - Okoronkwo - Ogbonnia - Okoronkwo - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.31130 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 45 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/gUzNifHHdFMgDalcalbz7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31130.png - small - - https://s.yimg.com/iu/api/res/1.2/gUzNifHHdFMgDalcalbz7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31130.png - 0 - DP - - LB - DE - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31057 - 31057 - - Arden Key - Arden - Key - Arden - Key - - nfl.p.31057 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 99 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/Sr0kK78SXvpBAQgf_DRUTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31057.png - small - - https://s.yimg.com/iu/api/res/1.2/Sr0kK78SXvpBAQgf_DRUTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31057.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30975 - 30975 - - Bradley Chubb - Bradley - Chubb - Bradley - Chubb - - nfl.p.30975 - nfl.t.7 - Denver Broncos - Den - - 10 - - 55 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/SHDPwPh_cPa4KZrgsDIMTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30975.png - small - - https://s.yimg.com/iu/api/res/1.2/SHDPwPh_cPa4KZrgsDIMTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30975.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 17 - 0 - - - - 380.p.31523 - 31523 - - Robert McCray III - Robert - McCray III - Robert - McCray III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31523 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 65 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31011 - 31011 - - Harold Landry - Harold - Landry - Harold - Landry - - Q - Questionable - nfl.p.31011 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 58 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/9mL_1c9epb1qg7hfD0ZqZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31011.png - small - - https://s.yimg.com/iu/api/res/1.2/9mL_1c9epb1qg7hfD0ZqZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31011.png - 0 - DP - - LB - DE - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31151 - 31151 - - Kylie Fitts - Kylie - Fitts - Kylie - Fitts - - nfl.p.31151 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 49 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28943 - 28943 - - Jordan Williams - Jordan - Williams - Jordan - Williams - - IR - Injured Reserve - undisclosed - nfl.p.28943 - nfl.t.19 - New York Giants - NYG - - 9 - - 79 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/tN4MPbDrmP8VOzx5xUFj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28943.png - small - - https://s.yimg.com/iu/api/res/1.2/tN4MPbDrmP8VOzx5xUFj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28943.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29617 - 29617 - - Vontarrius Dora - Vontarrius - Dora - Vontarrius - Dora - - undisclosed - nfl.p.29617 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 59 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/08QzTJfxbuqJCx7yX17VTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29617.1.png - small - - https://s.yimg.com/iu/api/res/1.2/08QzTJfxbuqJCx7yX17VTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29617.1.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31266 - 31266 - - Darius Jackson - Darius - Jackson - Darius - Jackson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31266 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 66 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31709 - 31709 - - Tobenna Okeke - Tobenna - Okeke - Tobenna - Okeke - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31709 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 49 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31668 - 31668 - - Andrew Trumbetti - Andrew - Trumbetti - Andrew - Trumbetti - - IR - Injured Reserve - undisclosed - nfl.p.31668 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 48 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31663 - 31663 - - Elijah Norris - Elijah - Norris - Elijah - Norris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31663 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 50 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30672 - 30672 - - Jason Thompson - Jason - Thompson - Jason - Thompson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30672 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 32 - LB,S,CB - - https://s.yimg.com/iu/api/res/1.2/6dqHxHawqfXMHzyEIalvPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30672.png - small - - https://s.yimg.com/iu/api/res/1.2/6dqHxHawqfXMHzyEIalvPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30672.png - 0 - DP - - LB - S - CB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30586 - 30586 - - Josh Tupou - Josh - Tupou - Josh - Tupou - - O - Out - nfl.p.30586 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31791 - 31791 - - Simeyon Robinson - Simeyon - Robinson - Simeyon - Robinson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31791 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 79 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.30718 - 30718 - - Rashaad Coward - Rashaad - Coward - Rashaad - Coward - - nfl.p.30718 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 69 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30615 - 30615 - - Izaah Lunsford - Izaah - Lunsford - Izaah - Lunsford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30615 - nfl.t.19 - New York Giants - NYG - - 9 - - 66 - DT - - https://s.yimg.com/iu/api/res/1.2/DSgXetgVmg1jRUHVrzs7RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30615.png - small - - https://s.yimg.com/iu/api/res/1.2/DSgXetgVmg1jRUHVrzs7RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30615.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28568 - 28568 - - Michael Bennett - Michael - Bennett - Michael - Bennett - - nfl.p.28568 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/99XZUpAcxmM85FwokRlQiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28568.png - small - - https://s.yimg.com/iu/api/res/1.2/99XZUpAcxmM85FwokRlQiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28568.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30336 - 30336 - - Stevie Tu'ikolovatu - Stevie - Tu'ikolovatu - Stevie - Tu'ikolovatu - - IR - Injured Reserve - undisclosed - nfl.p.30336 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/v04ef7LvEYM05SRIe.zb_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30336.png - small - - https://s.yimg.com/iu/api/res/1.2/v04ef7LvEYM05SRIe.zb_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30336.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28771 - 28771 - - Justin Hamilton - Justin - Hamilton - Justin - Hamilton - - nfl.p.28771 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 74 - DT - - https://s.yimg.com/iu/api/res/1.2/8nNY1OzYazvCPR3mBIfWqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28771.png - small - - https://s.yimg.com/iu/api/res/1.2/8nNY1OzYazvCPR3mBIfWqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28771.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31193 - 31193 - - Jullian Taylor - Jullian - Taylor - Jullian - Taylor - - nfl.p.31193 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 77 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31436 - 31436 - - Tyler Lancaster - Tyler - Lancaster - Tyler - Lancaster - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31436 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29873 - 29873 - - Woodrow Hamilton - Woodrow - Hamilton - Woodrow - Hamilton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29873 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/S68S0U.nEh4Ajh55j0RK1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29873.png - small - - https://s.yimg.com/iu/api/res/1.2/S68S0U.nEh4Ajh55j0RK1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29873.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31229 - 31229 - - Curtis Cothran - Curtis - Cothran - Curtis - Cothran - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31229 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 66 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31633 - 31633 - - Josh Fatu - Josh - Fatu - Josh - Fatu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31633 - nfl.t.8 - Detroit Lions - Det - - 6 - - 62 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31648 - 31648 - - Trent Harris - Trent - Harris - Trent - Harris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31648 - nfl.t.17 - New England Patriots - NE - - 11 - - 45 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30327 - 30327 - - Elijah Qualls - Elijah - Qualls - Elijah - Qualls - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30327 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31109 - 31109 - - RJ McIntosh - RJ - McIntosh - RJ - McIntosh - - O - Out - nfl.p.31109 - nfl.t.19 - New York Giants - NYG - - 9 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/c1Dxmx5C6KssL5pPlFUqlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31109.png - small - - https://s.yimg.com/iu/api/res/1.2/c1Dxmx5C6KssL5pPlFUqlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31109.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30497 - 30497 - - Pasoni Tasini - Pasoni - Tasini - Pasoni - Tasini - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30497 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 65 - DT - - https://s.yimg.com/iu/api/res/1.2/EA2550edwlYab8ty5Ai.ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30497.png - small - - https://s.yimg.com/iu/api/res/1.2/EA2550edwlYab8ty5Ai.ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30497.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31392 - 31392 - - McKay Murphy - McKay - Murphy - McKay - Murphy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31392 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 61 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30504 - 30504 - - Brandon Banks - Brandon - Banks - Brandon - Banks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30504 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 54 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29050 - 29050 - - Toby Johnson - Toby - Johnson - Toby - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.29050 - nfl.t.8 - Detroit Lions - Det - - 6 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/C4DR6x2FU7nbcwpMSBcQbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29050.png - small - - https://s.yimg.com/iu/api/res/1.2/C4DR6x2FU7nbcwpMSBcQbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29050.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31263 - 31263 - - Mike Hughes Jr. - Mike - Hughes Jr. - Mike - Hughes Jr. - - IR - Injured Reserve - undisclosed - nfl.p.31263 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 67 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31774 - 31774 - - Zaycoven Henderson - Zaycoven - Henderson - Zaycoven - Henderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31774 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31449 - 31449 - - Mychealon Thomas - Mychealon - Thomas - Mychealon - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31449 - nfl.t.20 - New York Jets - NYJ - - 11 - - 66 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31380 - 31380 - - Lowell Lotulelei - Lowell - Lotulelei - Lowell - Lotulelei - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31380 - nfl.t.7 - Denver Broncos - Den - - 10 - - 78 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31613 - 31613 - - Mike Ramsay - Mike - Ramsay - Mike - Ramsay - - O - Out - nfl.p.31613 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 70 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31133 - 31133 - - Tim Settle - Tim - Settle - Tim - Settle - - nfl.p.31133 - nfl.t.28 - Washington Redskins - Was - - 4 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/mBz4ftCjtZ9pphpuIGnl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31133.png - small - - https://s.yimg.com/iu/api/res/1.2/mBz4ftCjtZ9pphpuIGnl6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31133.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31362 - 31362 - - Jon Cunningham - Jon - Cunningham - Jon - Cunningham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31362 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31312 - 31312 - - Tracy Sprinkle - Tracy - Sprinkle - Tracy - Sprinkle - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31312 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 68 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31248 - 31248 - - Du'Vonta Lampkin - Du'Vonta - Lampkin - Du'Vonta - Lampkin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31248 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31066 - 31066 - - Harrison Phillips - Harrison - Phillips - Harrison - Phillips - - nfl.p.31066 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/kqkF_4.7tIz678OgdzHinA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31066.png - small - - https://s.yimg.com/iu/api/res/1.2/kqkF_4.7tIz678OgdzHinA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31066.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31115 - 31115 - - Bilal Nichols - Bilal - Nichols - Bilal - Nichols - - nfl.p.31115 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/czUIl_fCb5SRd3wwKvRqdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31115.png - small - - https://s.yimg.com/iu/api/res/1.2/czUIl_fCb5SRd3wwKvRqdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31115.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30905 - 30905 - - Chunky Clements - Chunky - Clements - Chunky - Clements - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30905 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 67 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31334 - 31334 - - Niles Scott - Niles - Scott - Niles - Scott - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31334 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 67 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31694 - 31694 - - Chris Okoye - Chris - Okoye - Chris - Okoye - - IR - Injured Reserve - undisclosed - nfl.p.31694 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 67 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31572 - 31572 - - Bruce Hector - Bruce - Hector - Bruce - Hector - - nfl.p.31572 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31527 - 31527 - - Parker Cothren - Parker - Cothren - Parker - Cothren - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31527 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 61 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30206 - 30206 - - Montravius Adams - Montravius - Adams - Montravius - Adams - - nfl.p.30206 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/pkFWhQYqnJc8OId9QDbbVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30206.png - small - - https://s.yimg.com/iu/api/res/1.2/pkFWhQYqnJc8OId9QDbbVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30206.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30654 - 30654 - - Josh Augusta - Josh - Augusta - Josh - Augusta - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30654 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 72 - DT - - https://s.yimg.com/iu/api/res/1.2/GhGxw.8BnAzoU1dcrD2svA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30654.png - small - - https://s.yimg.com/iu/api/res/1.2/GhGxw.8BnAzoU1dcrD2svA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30654.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31526 - 31526 - - Taylor Stallworth - Taylor - Stallworth - Taylor - Stallworth - - nfl.p.31526 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 76 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29959 - 29959 - - Drew Iddings - Drew - Iddings - Drew - Iddings - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.29959 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 79 - DT - - https://s.yimg.com/iu/api/res/1.2/m2IvNIlH4HKqT8gNvZLjBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29959.png - small - - https://s.yimg.com/iu/api/res/1.2/m2IvNIlH4HKqT8gNvZLjBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29959.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30917 - 30917 - - Peli Anau - Peli - Anau - Peli - Anau - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30917 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 63 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31586 - 31586 - - Kingsley Opara - Kingsley - Opara - Kingsley - Opara - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31586 - nfl.t.34 - Houston Texans - Hou - - 10 - - 60 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31150 - 31150 - - Folorunso Fatukasi - Folorunso - Fatukasi - Folorunso - Fatukasi - - nfl.p.31150 - nfl.t.20 - New York Jets - NYJ - - 11 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26823 - 26823 - - Kapron Lewis-Moore - Kapron - Lewis-Moore - Kapron - Lewis-Moore - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.26823 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/4fB5nKKJptEXltSaMr9awA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26823.1.png - small - - https://s.yimg.com/iu/api/res/1.2/4fB5nKKJptEXltSaMr9awA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26823.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30148 - 30148 - - Malik McDowell - Malik - McDowell - Malik - McDowell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30148 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/my847bIDc5.U4jqCUOaD7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30148.png - small - - https://s.yimg.com/iu/api/res/1.2/my847bIDc5.U4jqCUOaD7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30148.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31518 - 31518 - - Henry Mondeaux - Henry - Mondeaux - Henry - Mondeaux - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31518 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 62 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30999 - 30999 - - Taven Bryan - Taven - Bryan - Taven - Bryan - - nfl.p.30999 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/pSGZV_xn12jYlshXxfZIpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30999.png - small - - https://s.yimg.com/iu/api/res/1.2/pSGZV_xn12jYlshXxfZIpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30999.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31212 - 31212 - - Kendrick Norton - Kendrick - Norton - Kendrick - Norton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31212 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 74 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31736 - 31736 - - Dalton Keene - Dalton - Keene - Dalton - Keene - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31736 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 67 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31489 - 31489 - - Dee Liner - Dee - Liner - Dee - Liner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31489 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30515 - 30515 - - Omarius Bryant - Omarius - Bryant - Omarius - Bryant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30515 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31045 - 31045 - - Derrick Nnadi - Derrick - Nnadi - Derrick - Nnadi - - nfl.p.31045 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/oLIkVFZPUxinHGHBAh6R0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31045.png - small - - https://s.yimg.com/iu/api/res/1.2/oLIkVFZPUxinHGHBAh6R0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31045.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31446 - 31446 - - Lord Hyeamang - Lord - Hyeamang - Lord - Hyeamang - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31446 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 71 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31165 - 31165 - - Sebastian Joseph-Day - Sebastian - Joseph-Day - Sebastian - Joseph-Day - - nfl.p.31165 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 69 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31289 - 31289 - - DeQuinton Osborne - DeQuinton - Osborne - DeQuinton - Osborne - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31289 - nfl.t.7 - Denver Broncos - Den - - 10 - - 78 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28826 - 28826 - - Joey Mbu - Joey - Mbu - Joey - Mbu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28826 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 73 - DT - - https://s.yimg.com/iu/api/res/1.2/6wjW6IJIh_p2axIAuI2pFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28826.png - small - - https://s.yimg.com/iu/api/res/1.2/6wjW6IJIh_p2axIAuI2pFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28826.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24808 - 24808 - - Phil Taylor Sr. - Phil - Taylor Sr. - Phil - Taylor Sr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24808 - nfl.t.28 - Washington Redskins - Was - - 4 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/TlGjpRVNKWkiEEQ1EW_oRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24808.png - small - - https://s.yimg.com/iu/api/res/1.2/TlGjpRVNKWkiEEQ1EW_oRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24808.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31542 - 31542 - - Jamiyus Pittman - Jamiyus - Pittman - Jamiyus - Pittman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31542 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 65 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29683 - 29683 - - Aziz Shittu - Aziz - Shittu - Aziz - Shittu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29683 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/bGedZNEPpWnEVcAa6NdBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29683.png - small - - https://s.yimg.com/iu/api/res/1.2/bGedZNEPpWnEVcAa6NdBrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29683.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31645 - 31645 - - Jojo Wicker - Jojo - Wicker - Jojo - Wicker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31645 - nfl.t.28 - Washington Redskins - Was - - 4 - - 64 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29950 - 29950 - - Antwaun Woods - Antwaun - Woods - Antwaun - Woods - - nfl.p.29950 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/qsUgFONKSXCZZqMJuRFbLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29950.png - small - - https://s.yimg.com/iu/api/res/1.2/qsUgFONKSXCZZqMJuRFbLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29950.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31541 - 31541 - - Anthony Moten - Anthony - Moten - Anthony - Moten - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31541 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 43 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29939 - 29939 - - Tani Tupou - Tani - Tupou - Tani - Tupou - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29939 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 75 - DT - - https://s.yimg.com/iu/api/res/1.2/wRF4C9alBthyfbTocFLsBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29939.png - small - - https://s.yimg.com/iu/api/res/1.2/wRF4C9alBthyfbTocFLsBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29939.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26710 - 26710 - - Jordan Hill - Jordan - Hill - Jordan - Hill - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26710 - nfl.t.8 - Detroit Lions - Det - - 6 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/QYHiajajsZY0sof4InXpTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26710.png - small - - https://s.yimg.com/iu/api/res/1.2/QYHiajajsZY0sof4InXpTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26710.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31439 - 31439 - - Filipo Mokofisi - Filipo - Mokofisi - Filipo - Mokofisi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31439 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 74 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31042 - 31042 - - Nathan Shepherd - Nathan - Shepherd - Nathan - Shepherd - - nfl.p.31042 - nfl.t.20 - New York Jets - NYJ - - 11 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/hTGAKOKJVlVmSOYyiqf27w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31042.png - small - - https://s.yimg.com/iu/api/res/1.2/hTGAKOKJVlVmSOYyiqf27w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31042.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31776 - 31776 - - Adam Reth - Adam - Reth - Adam - Reth - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31776 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 71 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31315 - 31315 - - Owen Obasuyi - Owen - Obasuyi - Owen - Obasuyi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31315 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28755 - 28755 - - Kaleb Eulls - Kaleb - Eulls - Kaleb - Eulls - - IR - Injured Reserve - undisclosed - nfl.p.28755 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/ALOoQSwfF1tHaTfv1hNcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28755.png - small - - https://s.yimg.com/iu/api/res/1.2/ALOoQSwfF1tHaTfv1hNcfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28755.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31217 - 31217 - - Joshua Frazier - Joshua - Frazier - Joshua - Frazier - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31217 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 69 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30222 - 30222 - - Jaleel Johnson - Jaleel - Johnson - Jaleel - Johnson - - nfl.p.30222 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31027 - 31027 - - P.J. Hall Jr. - P.J. - Hall Jr. - P.J. - Hall Jr. - - nfl.p.31027 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/Gny.gUmTTBkVwHzkYD3lmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31027.png - small - - https://s.yimg.com/iu/api/res/1.2/Gny.gUmTTBkVwHzkYD3lmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31027.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30708 - 30708 - - Winston Craig - Winston - Craig - Winston - Craig - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30708 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 74 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31352 - 31352 - - Jacob Tuioti-Mariner - Jacob - Tuioti-Mariner - Jacob - Tuioti-Mariner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31352 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 79 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30983 - 30983 - - Da'Ron Payne - Da'Ron - Payne - Da'Ron - Payne - - nfl.p.30983 - nfl.t.28 - Washington Redskins - Was - - 4 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/X5gWn0_S0ToeozHdJoDlgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30983.png - small - - https://s.yimg.com/iu/api/res/1.2/X5gWn0_S0ToeozHdJoDlgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30983.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30605 - 30605 - - Nigel Williams - Nigel - Williams - Nigel - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30605 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 60 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30341 - 30341 - - Joey Ivie - Joey - Ivie - Joey - Ivie - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30341 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 67 - DT - - https://s.yimg.com/iu/api/res/1.2/9atzEzQ5ovfZ_NM4s6HSTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30341.png - small - - https://s.yimg.com/iu/api/res/1.2/9atzEzQ5ovfZ_NM4s6HSTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30341.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31461 - 31461 - - Trenton Thompson - Trenton - Thompson - Trenton - Thompson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31461 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 77 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31371 - 31371 - - Tomasi Laulile - Tomasi - Laulile - Tomasi - Laulile - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31371 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 66 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30982 - 30982 - - Vita Vea - Vita - Vea - Vita - Vea - - Q - Questionable - nfl.p.30982 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 50 - DT - - https://s.yimg.com/iu/api/res/1.2/pB9MGZcjKIau7hntDcnLjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30982.png - small - - https://s.yimg.com/iu/api/res/1.2/pB9MGZcjKIau7hntDcnLjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30982.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28761 - 28761 - - Ashaad Mabry - Ashaad - Mabry - Ashaad - Mabry - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28761 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 72 - DT - - https://s.yimg.com/iu/api/res/1.2/_8JcPVZozf4QY3gcCT9J2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28761.png - small - - https://s.yimg.com/iu/api/res/1.2/_8JcPVZozf4QY3gcCT9J2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28761.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31060 - 31060 - - Deadrin Senat - Deadrin - Senat - Deadrin - Senat - - nfl.p.31060 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/397OM5TKPVr1X07KALsTyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31060.png - small - - https://s.yimg.com/iu/api/res/1.2/397OM5TKPVr1X07KALsTyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31060.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31669 - 31669 - - Cavon Walker - Cavon - Walker - Cavon - Walker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31669 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 78 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30624 - 30624 - - Paul Boyette Jr. - Paul - Boyette Jr. - Paul - Boyette Jr. - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30624 - nfl.t.7 - Denver Broncos - Den - - 10 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30730 - 30730 - - Josh Banks - Josh - Banks - Josh - Banks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30730 - nfl.t.19 - New York Giants - NYG - - 9 - - 64 - DT - - https://s.yimg.com/iu/api/res/1.2/E1pkTNrUPi63nf.oImNi8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30730.png - small - - https://s.yimg.com/iu/api/res/1.2/E1pkTNrUPi63nf.oImNi8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30730.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31054 - 31054 - - Justin Jones - Justin - Jones - Justin - Jones - - nfl.p.31054 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/3nNDjDeIBKHuYj2bcYChnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31054.png - small - - https://s.yimg.com/iu/api/res/1.2/3nNDjDeIBKHuYj2bcYChnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/31054.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31474 - 31474 - - Eddy Wilson - Eddy - Wilson - Eddy - Wilson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31474 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29559 - 29559 - - Justin Zimmer - Justin - Zimmer - Justin - Zimmer - - nfl.p.29559 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/xeivm_wFlnmbDib8VYM.Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29559.1.png - small - - https://s.yimg.com/iu/api/res/1.2/xeivm_wFlnmbDib8VYM.Sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29559.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31110 - 31110 - - Maurice Hurst - Maurice - Hurst - Maurice - Hurst - - nfl.p.31110 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 73 - DT - - https://s.yimg.com/iu/api/res/1.2/KIThGOzOuq.Avm154uhfWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31110.png - small - - https://s.yimg.com/iu/api/res/1.2/KIThGOzOuq.Avm154uhfWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31110.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31647 - 31647 - - John Atkins - John - Atkins - John - Atkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31647 - nfl.t.8 - Detroit Lions - Det - - 6 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30810 - 30810 - - Rickey Hatley - Rickey - Hatley - Rickey - Hatley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30810 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31686 - 31686 - - Steven Richardson - Steven - Richardson - Steven - Richardson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31686 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 70 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28602 - 28602 - - Kristjan Sokoli - Kristjan - Sokoli - Kristjan - Sokoli - - IR - Injured Reserve - torn ACL - nfl.p.28602 - nfl.t.19 - New York Giants - NYG - - 9 - - 60 - DT - - https://s.yimg.com/iu/api/res/1.2/x9qpjAAIsrXEyFejZitcCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28602.png - small - - https://s.yimg.com/iu/api/res/1.2/x9qpjAAIsrXEyFejZitcCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28602.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31657 - 31657 - - Abdullah Anderson Jr. - Abdullah - Anderson Jr. - Abdullah - Anderson Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31657 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 76 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31788 - 31788 - - Nathan Bazata - Nathan - Bazata - Nathan - Bazata - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31788 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 73 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31681 - 31681 - - Bijhon Jackson - Bijhon - Jackson - Bijhon - Jackson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31681 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30429 - 30429 - - Dylan Bradley - Dylan - Bradley - Dylan - Bradley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30429 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 60 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30507 - 30507 - - Ondre Pipkins - Ondre - Pipkins - Ondre - Pipkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30507 - nfl.t.28 - Washington Redskins - Was - - 4 - - 78 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30412 - 30412 - - Devaroe Lawrence - Devaroe - Lawrence - Devaroe - Lawrence - - nfl.p.30412 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31454 - 31454 - - Daniel Ekuale - Daniel - Ekuale - Daniel - Ekuale - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31454 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31039 - 31039 - - B.J. Hill - B.J. - Hill - B.J. - Hill - - nfl.p.31039 - nfl.t.19 - New York Giants - NYG - - 9 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/C5Cozj6KTfujV598Nyblog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31039.png - small - - https://s.yimg.com/iu/api/res/1.2/C5Cozj6KTfujV598Nyblog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31039.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28523 - 28523 - - Marcus Hardison - Marcus - Hardison - Marcus - Hardison - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28523 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 78 - DT - - https://s.yimg.com/iu/api/res/1.2/uFscEau8Khp2xHwp.gEaXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28523.1.png - small - - https://s.yimg.com/iu/api/res/1.2/uFscEau8Khp2xHwp.gEaXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28523.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31477 - 31477 - - Poona Ford - Poona - Ford - Poona - Ford - - nfl.p.31477 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31549 - 31549 - - Tyrell Chavis - Tyrell - Chavis - Tyrell - Chavis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31549 - nfl.t.19 - New York Giants - NYG - - 9 - - 62 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26762 - 26762 - - Montori Hughes - Montori - Hughes - Montori - Hughes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26762 - nfl.t.28 - Washington Redskins - Was - - 4 - - 74 - DT - - https://s.yimg.com/iu/api/res/1.2/Jr2ID8y0avwWFI.rc.CipQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26762.png - small - - https://s.yimg.com/iu/api/res/1.2/Jr2ID8y0avwWFI.rc.CipQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26762.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30376 - 30376 - - Casey Sayles - Casey - Sayles - Casey - Sayles - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30376 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 74 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31415 - 31415 - - Linden Stephens - Linden - Stephens - Linden - Stephens - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31415 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 40 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31521 - 31521 - - Step Durham - Step - Durham - Step - Durham - - IR - Injured Reserve - undisclosed - nfl.p.31521 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 47 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31411 - 31411 - - J.T. Gray - J.T. - Gray - J.T. - Gray - - nfl.p.31411 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 48 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31158 - 31158 - - Simeon Thomas - Simeon - Thomas - Simeon - Thomas - - nfl.p.31158 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 34 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31213 - 31213 - - Keion Crossen - Keion - Crossen - Keion - Crossen - - Q - Questionable - nfl.p.31213 - nfl.t.17 - New England Patriots - NE - - 11 - - 35 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31499 - 31499 - - D'Montre Wade - D'Montre - Wade - D'Montre - Wade - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31499 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 40 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31159 - 31159 - - Kamrin Moore - Kamrin - Moore - Kamrin - Moore - - nfl.p.31159 - nfl.t.19 - New York Giants - NYG - - 9 - - 29 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31116 - 31116 - - Tre Flowers - Tre - Flowers - Tre - Flowers - - nfl.p.31116 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 37 - S,CB - - https://s.yimg.com/iu/api/res/1.2/J5bFuF7iJ0GhdfvmYdDXQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31116.png - small - - https://s.yimg.com/iu/api/res/1.2/J5bFuF7iJ0GhdfvmYdDXQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31116.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31124 - 31124 - - Siran Neal - Siran - Neal - Siran - Neal - - nfl.p.31124 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 29 - S,CB - - https://s.yimg.com/iu/api/res/1.2/uYJc_TruW8agS8I0o0cuLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31124.png - small - - https://s.yimg.com/iu/api/res/1.2/uYJc_TruW8agS8I0o0cuLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31124.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27715 - 27715 - - Bennett Jackson - Bennett - Jackson - Bennett - Jackson - - IR - Injured Reserve - undisclosed - nfl.p.27715 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 39 - S,CB - - https://s.yimg.com/iu/api/res/1.2/aeZBSA7P6E1bv0gXkjNqmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27715.png - small - - https://s.yimg.com/iu/api/res/1.2/aeZBSA7P6E1bv0gXkjNqmg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27715.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31707 - 31707 - - Joseph Este - Joseph - Este - Joseph - Este - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31707 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 38 - S,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31609 - 31609 - - Joshua Kalu - Joshua - Kalu - Joshua - Kalu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31609 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 47 - S,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30300 - 30300 - - Mike Tyson - Mike - Tyson - Mike - Tyson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30300 - nfl.t.34 - Houston Texans - Hou - - 10 - - 40 - S,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31530 - 31530 - - Jamar Summers - Jamar - Summers - Jamar - Summers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31530 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 30 - S,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28570 - 28570 - - Tevin Mitchel - Tevin - Mitchel - Tevin - Mitchel - - IR - Injured Reserve - undisclosed - nfl.p.28570 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 37 - S,CB - - https://s.yimg.com/iu/api/res/1.2/KjKilRMI6S3YkCHNbpWyFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28570.1.png - small - - https://s.yimg.com/iu/api/res/1.2/KjKilRMI6S3YkCHNbpWyFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28570.1.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30560 - 30560 - - Lorenzo Jerome - Lorenzo - Jerome - Lorenzo - Jerome - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30560 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 40 - S,CB - - https://s.yimg.com/iu/api/res/1.2/bLh9uHrevkPJCRIf3FkyBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30560.png - small - - https://s.yimg.com/iu/api/res/1.2/bLh9uHrevkPJCRIf3FkyBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30560.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31448 - 31448 - - Ramon Richards - Ramon - Richards - Ramon - Richards - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31448 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 47 - S,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31055 - 31055 - - Rashaan Gaulden - Rashaan - Gaulden - Rashaan - Gaulden - - nfl.p.31055 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 28 - S,CB - - https://s.yimg.com/iu/api/res/1.2/RPQr1GRRDVzxnoYo_AQa3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31055.png - small - - https://s.yimg.com/iu/api/res/1.2/RPQr1GRRDVzxnoYo_AQa3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31055.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31236 - 31236 - - Trevon Mathis - Trevon - Mathis - Trevon - Mathis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31236 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 46 - S,CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26939 - 26939 - - Demontre Hurst - Demontre - Hurst - Demontre - Hurst - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26939 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 20 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/uIbVp_WBN9y1CHixSyFH.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26939.png - small - - https://s.yimg.com/iu/api/res/1.2/uIbVp_WBN9y1CHixSyFH.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26939.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30596 - 30596 - - Marquavius Lewis - Marquavius - Lewis - Marquavius - Lewis - - NA - Inactive: Coach's Decision or Not on Roster - ankle - nfl.p.30596 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 97 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30802 - 30802 - - Daniel Ross - Daniel - Ross - Daniel - Ross - - nfl.p.30802 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 68 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31208 - 31208 - - Zach Sieler - Zach - Sieler - Zach - Sieler - - nfl.p.31208 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 95 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31202 - 31202 - - James Looney - James - Looney - James - Looney - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31202 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 99 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31649 - 31649 - - Frank Herron - Frank - Herron - Frank - Herron - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31649 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 67 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31128 - 31128 - - Andrew Brown - Andrew - Brown - Andrew - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31128 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 93 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/pDzy8uYDCIYd6yyh2UHKSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31128.png - small - - https://s.yimg.com/iu/api/res/1.2/pDzy8uYDCIYd6yyh2UHKSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31128.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31072 - 31072 - - Jalyn Holmes - Jalyn - Holmes - Jalyn - Holmes - - nfl.p.31072 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 92 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/YWEYJYfosT7n1gusELjPVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31072.png - small - - https://s.yimg.com/iu/api/res/1.2/YWEYJYfosT7n1gusELjPVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31072.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31034 - 31034 - - Tyquan Lewis - Tyquan - Lewis - Tyquan - Lewis - - IR - Injured Reserve - toe - nfl.p.31034 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 94 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/kU_nJ3eW3vZq4Sz7Yv2NzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31034.png - small - - https://s.yimg.com/iu/api/res/1.2/kU_nJ3eW3vZq4Sz7Yv2NzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31034.png - 0 - DP - - DT - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31417 - 31417 - - Greg Gilmore - Greg - Gilmore - Greg - Gilmore - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31417 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 62 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28789 - 28789 - - Caushaud Lyons - Caushaud - Lyons - Caushaud - Lyons - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28789 - nfl.t.28 - Washington Redskins - Was - - 4 - - 63 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/XtVVvDygNAjPRNKG.fqsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28789.png - small - - https://s.yimg.com/iu/api/res/1.2/XtVVvDygNAjPRNKG.fqsKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28789.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31420 - 31420 - - Kendal Vickers - Kendal - Vickers - Kendal - Vickers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31420 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 64 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30546 - 30546 - - Karter Schult - Karter - Schult - Karter - Schult - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30546 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 76 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31612 - 31612 - - Matt Dickerson - Matt - Dickerson - Matt - Dickerson - - nfl.p.31612 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 92 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24800 - 24800 - - Nick Fairley - Nick - Fairley - Nick - Fairley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24800 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/f5tBTybd9G92raix3kZ6jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24800.png - small - - https://s.yimg.com/iu/api/res/1.2/f5tBTybd9G92raix3kZ6jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24800.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26821 - 26821 - - Chris Jones - Chris - Jones - Chris - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26821 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 63 - DT - - https://s.yimg.com/iu/api/res/1.2/tOr0FaNwgLKveBZelknCeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26821.png - small - - https://s.yimg.com/iu/api/res/1.2/tOr0FaNwgLKveBZelknCeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26821.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29114 - 29114 - - T.Y. McGill - T.Y. - McGill - T.Y. - McGill - - nfl.p.29114 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/ZiGrmbWAI.hLNF00g2_MCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29114.1.png - small - - https://s.yimg.com/iu/api/res/1.2/ZiGrmbWAI.hLNF00g2_MCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29114.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28501 - 28501 - - Gabe Wright - Gabe - Wright - Gabe - Wright - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28501 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 74 - DT - - https://s.yimg.com/iu/api/res/1.2/5FvImyTeJyXOJDJS.gzpQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28501.png - small - - https://s.yimg.com/iu/api/res/1.2/5FvImyTeJyXOJDJS.gzpQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28501.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27688 - 27688 - - Ed Stinson - Ed - Stinson - Ed - Stinson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27688 - nfl.t.20 - New York Jets - NYJ - - 11 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/VOSWnJjhdKSMbCDbRObQeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27688.png - small - - https://s.yimg.com/iu/api/res/1.2/VOSWnJjhdKSMbCDbRObQeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27688.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28982 - 28982 - - DeShawn Williams - DeShawn - Williams - DeShawn - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28982 - nfl.t.7 - Denver Broncos - Den - - 10 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/f2RDTO7OigzM5a0yXUx6Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28982.1.png - small - - https://s.yimg.com/iu/api/res/1.2/f2RDTO7OigzM5a0yXUx6Hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28982.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27743 - 27743 - - Daniel McCullers - Daniel - McCullers - Daniel - McCullers - - nfl.p.27743 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/nejd_dc9L_oLAv.HDLpIQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27743.png - small - - https://s.yimg.com/iu/api/res/1.2/nejd_dc9L_oLAv.HDLpIQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27743.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27610 - 27610 - - Will Sutton - Will - Sutton - Will - Sutton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27610 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 66 - DT - - https://s.yimg.com/iu/api/res/1.2/ZsCFCFv.kivZClrLHI7KBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/27610.png - small - - https://s.yimg.com/iu/api/res/1.2/ZsCFCFv.kivZClrLHI7KBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/27610.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28591 - 28591 - - Darius Kilgo - Darius - Kilgo - Darius - Kilgo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28591 - nfl.t.34 - Houston Texans - Hou - - 10 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/5bx6UA0IDnBj4dvQKkOfCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28591.png - small - - https://s.yimg.com/iu/api/res/1.2/5bx6UA0IDnBj4dvQKkOfCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28591.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27298 - 27298 - - Stefan Charles - Stefan - Charles - Stefan - Charles - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27298 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/RhAx9x1rrlODMxDiN.zPdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27298.png - small - - https://s.yimg.com/iu/api/res/1.2/RhAx9x1rrlODMxDiN.zPdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27298.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27557 - 27557 - - Dominique Easley - Dominique - Easley - Dominique - Easley - - nfl.p.27557 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/DMZUopOuGxinIAmrB8ahVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27557.png - small - - https://s.yimg.com/iu/api/res/1.2/DMZUopOuGxinIAmrB8ahVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27557.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29330 - 29330 - - Vincent Valentine - Vincent - Valentine - Vincent - Valentine - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29330 - nfl.t.17 - New England Patriots - NE - - 11 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/ZjH_VI7cAJmQTgpiZcDoRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29330.png - small - - https://s.yimg.com/iu/api/res/1.2/ZjH_VI7cAJmQTgpiZcDoRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29330.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28539 - 28539 - - David Parry - David - Parry - David - Parry - - nfl.p.28539 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/q8aj7YZ26EV1iF74eQA47g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28539.1.png - small - - https://s.yimg.com/iu/api/res/1.2/q8aj7YZ26EV1iF74eQA47g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28539.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27217 - 27217 - - Mike Purcell - Mike - Purcell - Mike - Purcell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27217 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/w9U0fPXtF_Oe.fmii799Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27217.png - small - - https://s.yimg.com/iu/api/res/1.2/w9U0fPXtF_Oe.fmii799Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27217.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29581 - 29581 - - DaVonte Lambert - DaVonte - Lambert - DaVonte - Lambert - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29581 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 75 - DT - - https://s.yimg.com/iu/api/res/1.2/X1rXXdAS3_vZcAUvAH2L8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29581.png - small - - https://s.yimg.com/iu/api/res/1.2/X1rXXdAS3_vZcAUvAH2L8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29581.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28611 - 28611 - - Deon Simon - Deon - Simon - Deon - Simon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28611 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/chEpaMw6XHLV.GDEIus.6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28611.1.png - small - - https://s.yimg.com/iu/api/res/1.2/chEpaMw6XHLV.GDEIus.6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28611.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24133 - 24133 - - Arthur Jones - Arthur - Jones - Arthur - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24133 - nfl.t.28 - Washington Redskins - Was - - 4 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/3w785Z4BcyvIXBEmWDfD4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24133.1.png - small - - https://s.yimg.com/iu/api/res/1.2/3w785Z4BcyvIXBEmWDfD4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24133.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27686 - 27686 - - Caraun Reid - Caraun - Reid - Caraun - Reid - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27686 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/Eib_tqLWOGEBpq.Zoj_3nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27686.png - small - - https://s.yimg.com/iu/api/res/1.2/Eib_tqLWOGEBpq.Zoj_3nw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27686.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29960 - 29960 - - Darius Latham - Darius - Latham - Darius - Latham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29960 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 75 - DT - - https://s.yimg.com/iu/api/res/1.2/4..uCLELok6KTEonMYeQaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29960.png - small - - https://s.yimg.com/iu/api/res/1.2/4..uCLELok6KTEonMYeQaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29960.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28097 - 28097 - - Anthony Johnson - Anthony - Johnson - Anthony - Johnson - - IR - Injured Reserve - undisclosed - nfl.p.28097 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 96 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/9cp87VDfQbxr.6o2VzOA_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28097.1.png - small - - https://s.yimg.com/iu/api/res/1.2/9cp87VDfQbxr.6o2VzOA_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28097.1.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29278 - 29278 - - Jihad Ward - Jihad - Ward - Jihad - Ward - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29278 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 51 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/pIvpYLI_kRDruTvRo5AbRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29278.png - small - - https://s.yimg.com/iu/api/res/1.2/pIvpYLI_kRDruTvRo5AbRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29278.png - 0 - DP - - DT - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31784 - 31784 - - Dante Sawyer - Dante - Sawyer - Dante - Sawyer - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31784 - nfl.t.28 - Washington Redskins - Was - - 4 - - 63 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29767 - 29767 - - Lenny Jones - Lenny - Jones - Lenny - Jones - - IR - Injured Reserve - undisclosed - nfl.p.29767 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/tsrZYjGqy6Mi1Q8IqAME2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29767.png - small - - https://s.yimg.com/iu/api/res/1.2/tsrZYjGqy6Mi1Q8IqAME2g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29767.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31274 - 31274 - - Evan Perroni - Evan - Perroni - Evan - Perroni - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31274 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29488 - 29488 - - Johnny Maxey - Johnny - Maxey - Johnny - Maxey - - IR - Injured Reserve - undisclosed - nfl.p.29488 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/_GY78Te0CZMZPZqlL8SPJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29488.png - small - - https://s.yimg.com/iu/api/res/1.2/_GY78Te0CZMZPZqlL8SPJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29488.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31049 - 31049 - - Rasheem Green - Rasheem - Green - Rasheem - Green - - nfl.p.31049 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/2PqrQvQv3EXv8FqsPj7CeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31049.png - small - - https://s.yimg.com/iu/api/res/1.2/2PqrQvQv3EXv8FqsPj7CeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31049.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31578 - 31578 - - Joe Ostman - Joe - Ostman - Joe - Ostman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31578 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29593 - 29593 - - Channing Ward - Channing - Ward - Channing - Ward - - O - Out - nfl.p.29593 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/4LDUxzINnMIQbJfEfiPHiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29593.png - small - - https://s.yimg.com/iu/api/res/1.2/4LDUxzINnMIQbJfEfiPHiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29593.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25761 - 25761 - - Jerel Worthy - Jerel - Worthy - Jerel - Worthy - - nfl.p.25761 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 56 - DE - - https://s.yimg.com/iu/api/res/1.2/bcgDHNcFShMzXLRsNOW84w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25761.1.png - small - - https://s.yimg.com/iu/api/res/1.2/bcgDHNcFShMzXLRsNOW84w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25761.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31581 - 31581 - - Mason Gentry - Mason - Gentry - Mason - Gentry - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31581 - nfl.t.34 - Houston Texans - Hou - - 10 - - 79 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29460 - 29460 - - Jonathan Woodard - Jonathan - Woodard - Jonathan - Woodard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29460 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 76 - DE - - https://s.yimg.com/iu/api/res/1.2/a5MkUfQ9YpfjNrXRgXaQ7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29460.1.png - small - - https://s.yimg.com/iu/api/res/1.2/a5MkUfQ9YpfjNrXRgXaQ7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29460.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30536 - 30536 - - Jhaustin Thomas - Jhaustin - Thomas - Jhaustin - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30536 - nfl.t.7 - Denver Broncos - Den - - 10 - - 69 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29622 - 29622 - - Shaneil Jenkins - Shaneil - Jenkins - Shaneil - Jenkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29622 - nfl.t.20 - New York Jets - NYJ - - 11 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/kenzJLW_ZZTvhsSV96nk5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29622.1.png - small - - https://s.yimg.com/iu/api/res/1.2/kenzJLW_ZZTvhsSV96nk5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29622.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31602 - 31602 - - Mat Boesen - Mat - Boesen - Mat - Boesen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31602 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 43 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31267 - 31267 - - Lyndon Johnson - Lyndon - Johnson - Lyndon - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31267 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31098 - 31098 - - Kentavius Street - Kentavius - Street - Kentavius - Street - - O - Out - nfl.p.31098 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/ntQePxM9Kr2.tz0PZ_IWPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31098.png - small - - https://s.yimg.com/iu/api/res/1.2/ntQePxM9Kr2.tz0PZ_IWPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31098.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31702 - 31702 - - Pat Afriyie - Pat - Afriyie - Pat - Afriyie - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31702 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31765 - 31765 - - Kiante Anderson - Kiante - Anderson - Kiante - Anderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31765 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 76 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30363 - 30363 - - Pat O'Connor - Pat - O'Connor - Pat - O'Connor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30363 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 79 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30190 - 30190 - - Daeshon Hall - Daeshon - Hall - Daeshon - Hall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30190 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30386 - 30386 - - Francis Kallon - Francis - Kallon - Francis - Kallon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30386 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/VeUFFhfXow9yHrqD0Qwayw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30386.png - small - - https://s.yimg.com/iu/api/res/1.2/VeUFFhfXow9yHrqD0Qwayw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30386.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25915 - 25915 - - Billy Winn - Billy - Winn - Billy - Winn - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25915 - nfl.t.7 - Denver Broncos - Den - - 10 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/a6lZ3vQKWvaxJboHjR7M3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/25915.png - small - - https://s.yimg.com/iu/api/res/1.2/a6lZ3vQKWvaxJboHjR7M3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/25915.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31632 - 31632 - - Quincy Redmon - Quincy - Redmon - Quincy - Redmon - - undisclosed - nfl.p.31632 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 66 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28448 - 28448 - - Randy Gregory - Randy - Gregory - Randy - Gregory - - nfl.p.28448 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/AXK6nZ43Xpdi8TycP5pcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28448.png - small - - https://s.yimg.com/iu/api/res/1.2/AXK6nZ43Xpdi8TycP5pcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28448.png - 0 - DP - - DE - - 1 - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31594 - 31594 - - Jalen Wilkerson - Jalen - Wilkerson - Jalen - Wilkerson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31594 - nfl.t.28 - Washington Redskins - Was - - 4 - - 64 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30701 - 30701 - - Ricky Ali'ifua - Ricky - Ali'ifua - Ricky - Ali'ifua - - IR - Injured Reserve - undisclosed - nfl.p.30701 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 61 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27662 - 27662 - - Brent Urban - Brent - Urban - Brent - Urban - - nfl.p.27662 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/YGygQP9TfCLu.ES2EZls9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27662.png - small - - https://s.yimg.com/iu/api/res/1.2/YGygQP9TfCLu.ES2EZls9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27662.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27862 - 27862 - - Kerry Hyder Jr. - Kerry - Hyder Jr. - Kerry - Hyder Jr. - - nfl.p.27862 - nfl.t.8 - Detroit Lions - Det - - 6 - - 61 - DE - - https://s.yimg.com/iu/api/res/1.2/5xXCvRr.AF4KaKIeM2AsJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27862.png - small - - https://s.yimg.com/iu/api/res/1.2/5xXCvRr.AF4KaKIeM2AsJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27862.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31428 - 31428 - - Christian LaCouture - Christian - LaCouture - Christian - LaCouture - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31428 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29802 - 29802 - - Claude Pelon - Claude - Pelon - Claude - Pelon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29802 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/kzGBFxTyQwr3Wc969SZfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29802.1.png - small - - https://s.yimg.com/iu/api/res/1.2/kzGBFxTyQwr3Wc969SZfyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29802.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31710 - 31710 - - Connor Flagel - Connor - Flagel - Connor - Flagel - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31710 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29856 - 29856 - - Mitchell Loewen - Mitchell - Loewen - Mitchell - Loewen - - nfl.p.29856 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 70 - DE - - https://s.yimg.com/iu/api/res/1.2/ccDBlpKTTEuT35Ybun1SVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29856.png - small - - https://s.yimg.com/iu/api/res/1.2/ccDBlpKTTEuT35Ybun1SVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29856.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30823 - 30823 - - Shakir Soto - Shakir - Soto - Shakir - Soto - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30823 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 64 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30934 - 30934 - - Keionta Davis - Keionta - Davis - Keionta - Davis - - nfl.p.30934 - nfl.t.17 - New England Patriots - NE - - 11 - - 58 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28754 - 28754 - - Tavaris Barnes - Tavaris - Barnes - Tavaris - Barnes - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.28754 - nfl.t.28 - Washington Redskins - Was - - 4 - - 63 - DE - - https://s.yimg.com/iu/api/res/1.2/npg_5ggXfijR6mBeBVZuAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28754.png - small - - https://s.yimg.com/iu/api/res/1.2/npg_5ggXfijR6mBeBVZuAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28754.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31086 - 31086 - - Dorance Armstrong Jr. - Dorance - Armstrong Jr. - Dorance - Armstrong Jr. - - nfl.p.31086 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 58 - DE - - https://s.yimg.com/iu/api/res/1.2/_L0sQSo.dw3hB2.ApTUUdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31086.png - small - - https://s.yimg.com/iu/api/res/1.2/_L0sQSo.dw3hB2.ApTUUdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31086.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30649 - 30649 - - Joby Saint Fleur - Joby - Saint Fleur - Joby - Saint Fleur - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30649 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 67 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30880 - 30880 - - Alex Jenkins - Alex - Jenkins - Alex - Jenkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30880 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 69 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29335 - 29335 - - Charles Tapper - Charles - Tapper - Charles - Tapper - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29335 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 99 - DE - - https://s.yimg.com/iu/api/res/1.2/ob2ftylAMBpgiSYv_XMmcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29335.png - small - - https://s.yimg.com/iu/api/res/1.2/ob2ftylAMBpgiSYv_XMmcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29335.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30626 - 30626 - - Fadol Brown - Fadol - Brown - Fadol - Brown - - nfl.p.30626 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7467 - 7467 - - John Denney - John - Denney - John - Denney - - nfl.p.7467 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/ClS5GHqAUdevgPZZfFHiKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7467.1.png - small - - https://s.yimg.com/iu/api/res/1.2/ClS5GHqAUdevgPZZfFHiKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7467.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30984 - 30984 - - Marcus Davenport - Marcus - Davenport - Marcus - Davenport - - nfl.p.30984 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/5MZynzjRtqccJWd5IbCb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30984.png - small - - https://s.yimg.com/iu/api/res/1.2/5MZynzjRtqccJWd5IbCb_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30984.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30455 - 30455 - - JT Jones - JT - Jones - JT - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30455 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 55 - DE - - https://s.yimg.com/iu/api/res/1.2/pAkYieMWVW7njJKmS8hAUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30455.png - small - - https://s.yimg.com/iu/api/res/1.2/pAkYieMWVW7njJKmS8hAUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30455.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26862 - 26862 - - David King - David - King - David - King - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26862 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/rSdBqtYOwlZNem30as1Qpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26862.1.png - small - - https://s.yimg.com/iu/api/res/1.2/rSdBqtYOwlZNem30as1Qpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26862.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30333 - 30333 - - Ifeadi Odenigbo - Ifeadi - Odenigbo - Ifeadi - Odenigbo - - nfl.p.30333 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/WpBV3dnFRL9ZELyaWirEDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/30333.png - small - - https://s.yimg.com/iu/api/res/1.2/WpBV3dnFRL9ZELyaWirEDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/30333.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31307 - 31307 - - Alec James - Alec - James - Alec - James - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31307 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25947 - 25947 - - Cam Johnson - Cam - Johnson - Cam - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25947 - nfl.t.8 - Detroit Lions - Det - - 6 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/AkP0LM_KZ.hxc4zZxNxOMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25947.1.png - small - - https://s.yimg.com/iu/api/res/1.2/AkP0LM_KZ.hxc4zZxNxOMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25947.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31037 - 31037 - - Chad Thomas - Chad - Thomas - Chad - Thomas - - nfl.p.31037 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/pMeJ5dCcdgpTfv201.Lsiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31037.png - small - - https://s.yimg.com/iu/api/res/1.2/pMeJ5dCcdgpTfv201.Lsiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31037.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31678 - 31678 - - Albert Havili - Albert - Havili - Albert - Havili - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31678 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31726 - 31726 - - Nick Thurman - Nick - Thurman - Nick - Thurman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31726 - nfl.t.34 - Houston Texans - Hou - - 10 - - 68 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31188 - 31188 - - Ade Aruna - Ade - Aruna - Ade - Aruna - - IR - Injured Reserve - right knee - nfl.p.31188 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 61 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31243 - 31243 - - Jonathan Wynn - Jonathan - Wynn - Jonathan - Wynn - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31243 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 78 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31666 - 31666 - - Bunmi Rotimi - Bunmi - Rotimi - Bunmi - Rotimi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31666 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 74 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30427 - 30427 - - Tashawn Bower - Tashawn - Bower - Tashawn - Bower - - nfl.p.30427 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31084 - 31084 - - Da'Shawn Hand - Da'Shawn - Hand - Da'Shawn - Hand - - nfl.p.31084 - nfl.t.8 - Detroit Lions - Det - - 6 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/AMw_Lg5OOyFB8bW9zYai9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31084.png - small - - https://s.yimg.com/iu/api/res/1.2/AMw_Lg5OOyFB8bW9zYai9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31084.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31605 - 31605 - - Mike Love - Mike - Love - Mike - Love - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31605 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 56 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25510 - 25510 - - Justin Trattou - Justin - Trattou - Justin - Trattou - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25510 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 72 - DE - - https://s.yimg.com/iu/api/res/1.2/xy8BJ3OI2nrbnX0Wri2uyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25510.png - small - - https://s.yimg.com/iu/api/res/1.2/xy8BJ3OI2nrbnX0Wri2uyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25510.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31101 - 31101 - - Josh Sweat - Josh - Sweat - Josh - Sweat - - nfl.p.31101 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 75 - DE - - https://s.yimg.com/iu/api/res/1.2/bQUC6MBT5A.U2SwpiW7Dng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31101.png - small - - https://s.yimg.com/iu/api/res/1.2/bQUC6MBT5A.U2SwpiW7Dng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31101.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31353 - 31353 - - Mackendy Cheridor - Mackendy - Cheridor - Mackendy - Cheridor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31353 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26846 - 26846 - - Nick Williams - Nick - Williams - Nick - Williams - - nfl.p.26846 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/.fZeGVGk3AALV82b8wzy.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26846.1.png - small - - https://s.yimg.com/iu/api/res/1.2/.fZeGVGk3AALV82b8wzy.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26846.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31507 - 31507 - - Myles Humphrey - Myles - Humphrey - Myles - Humphrey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31507 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 59 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30766 - 30766 - - Alex Barrett - Alex - Barrett - Alex - Barrett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30766 - nfl.t.8 - Detroit Lions - Det - - 6 - - 58 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26300 - 26300 - - Jacquies Smith - Jacquies - Smith - Jacquies - Smith - - nfl.p.26300 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/FmO9YZP0RN3wmHLY2i0pUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26300.png - small - - https://s.yimg.com/iu/api/res/1.2/FmO9YZP0RN3wmHLY2i0pUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26300.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31442 - 31442 - - Conor Sheehy - Conor - Sheehy - Conor - Sheehy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31442 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 67 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31735 - 31735 - - Brian Womac - Brian - Womac - Brian - Womac - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31735 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 62 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31022 - 31022 - - Kemoko Turay - Kemoko - Turay - Kemoko - Turay - - nfl.p.31022 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/ZEydLvcv3ScqwANd7ypFOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31022.png - small - - https://s.yimg.com/iu/api/res/1.2/ZEydLvcv3ScqwANd7ypFOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31022.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31286 - 31286 - - Austin Larkin - Austin - Larkin - Austin - Larkin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31286 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 65 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28233 - 28233 - - Julius Warmsley - Julius - Warmsley - Julius - Warmsley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28233 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 72 - DE - - https://s.yimg.com/iu/api/res/1.2/gOuLJCSC.CAD_.fv._Wpvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28233.1.png - small - - https://s.yimg.com/iu/api/res/1.2/gOuLJCSC.CAD_.fv._Wpvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28233.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28462 - 28462 - - Owamagbe Odighizuwa - Owamagbe - Odighizuwa - Owamagbe - Odighizuwa - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28462 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 59 - DE - - https://s.yimg.com/iu/api/res/1.2/GZ03d5QgTyGCVR6mizDuVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28462.png - small - - https://s.yimg.com/iu/api/res/1.2/GZ03d5QgTyGCVR6mizDuVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28462.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30969 - 30969 - - Moubarak Djeri - Moubarak - Djeri - Moubarak - Djeri - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30969 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 61 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31565 - 31565 - - Ja'Von Rolland-Jones - Ja'Von - Rolland-Jones - Ja'Von - Rolland-Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31565 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28784 - 28784 - - Ryan Delaire - Ryan - Delaire - Ryan - Delaire - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28784 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 75 - DE - - https://s.yimg.com/iu/api/res/1.2/_UAPGETPxrBfOWJPo5Fweg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28784.png - small - - https://s.yimg.com/iu/api/res/1.2/_UAPGETPxrBfOWJPo5Fweg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28784.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28928 - 28928 - - Lavon Hooks - Lavon - Hooks - Lavon - Hooks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28928 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/wyEivmjjVj32vkoZge7eGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28928.png - small - - https://s.yimg.com/iu/api/res/1.2/wyEivmjjVj32vkoZge7eGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28928.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29304 - 29304 - - Bronson Kaufusi - Bronson - Kaufusi - Bronson - Kaufusi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29304 - nfl.t.20 - New York Jets - NYJ - - 11 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/r4az7Q0HtSA5z00GPTp52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29304.png - small - - https://s.yimg.com/iu/api/res/1.2/r4az7Q0HtSA5z00GPTp52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29304.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28386 - 28386 - - Efe Obada - Efe - Obada - Efe - Obada - - nfl.p.28386 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31473 - 31473 - - Marcell Frazier - Marcell - Frazier - Marcell - Frazier - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31473 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28485 - 28485 - - Geneo Grissom - Geneo - Grissom - Geneo - Grissom - - nfl.p.28485 - nfl.t.17 - New England Patriots - NE - - 11 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/9ooVaGs6PyNHOnTKgzdtJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28485.png - small - - https://s.yimg.com/iu/api/res/1.2/9ooVaGs6PyNHOnTKgzdtJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28485.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30948 - 30948 - - Whitney Richardson - Whitney - Richardson - Whitney - Richardson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30948 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30645 - 30645 - - Praise Martin-Oguike - Praise - Martin-Oguike - Praise - Martin-Oguike - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30645 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 51 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30405 - 30405 - - Carroll Phillips - Carroll - Phillips - Carroll - Phillips - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30405 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 59 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27578 - 27578 - - Jeremiah Attaochu - Jeremiah - Attaochu - Jeremiah - Attaochu - - nfl.p.27578 - nfl.t.20 - New York Jets - NYJ - - 11 - - 55 - DE - - https://s.yimg.com/iu/api/res/1.2/4iAw5xiHrzd.WPhlBoCd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27578.png - small - - https://s.yimg.com/iu/api/res/1.2/4iAw5xiHrzd.WPhlBoCd7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27578.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27726 - 27726 - - Zach Moore - Zach - Moore - Zach - Moore - - nfl.p.27726 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 56 - DE - - https://s.yimg.com/iu/api/res/1.2/wsHO9w.m26Xyr32hQXq.Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27726.png - small - - https://s.yimg.com/iu/api/res/1.2/wsHO9w.m26Xyr32hQXq.Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27726.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31256 - 31256 - - Demone Harris - Demone - Harris - Demone - Harris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31256 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 72 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30921 - 30921 - - Jeremy Faulk - Jeremy - Faulk - Jeremy - Faulk - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30921 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8869 - 8869 - - Cliff Avril - Cliff - Avril - Cliff - Avril - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8869 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 56 - DE - - https://s.yimg.com/iu/api/res/1.2/kekljEgSH6_6AQlUZcjm_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8869.png - small - - https://s.yimg.com/iu/api/res/1.2/kekljEgSH6_6AQlUZcjm_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8869.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31570 - 31570 - - Danny Ezechukwu - Danny - Ezechukwu - Danny - Ezechukwu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31570 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 63 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30804 - 30804 - - Matthew Godin - Matthew - Godin - Matthew - Godin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30804 - nfl.t.34 - Houston Texans - Hou - - 10 - - 69 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26770 - 26770 - - Steven Means - Steven - Means - Steven - Means - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26770 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 51 - DE - - https://s.yimg.com/iu/api/res/1.2/qB.7i4wR5quGt8Y9bYxXPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26770.png - small - - https://s.yimg.com/iu/api/res/1.2/qB.7i4wR5quGt8Y9bYxXPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26770.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26840 - 26840 - - Armonty Bryant - Armonty - Bryant - Armonty - Bryant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26840 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/F5ft5Sn_Qix5QKS.fCx3cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26840.1.png - small - - https://s.yimg.com/iu/api/res/1.2/F5ft5Sn_Qix5QKS.fCx3cA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26840.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25759 - 25759 - - Kendall Reyes - Kendall - Reyes - Kendall - Reyes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25759 - nfl.t.20 - New York Jets - NYJ - - 11 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/rLiJTP.iQjD_9x5wo5Ad7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25759.png - small - - https://s.yimg.com/iu/api/res/1.2/rLiJTP.iQjD_9x5wo5Ad7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25759.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31106 - 31106 - - Marquis Haynes - Marquis - Haynes - Marquis - Haynes - - nfl.p.31106 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/A1SZj0MZWLnZJ.Y0iTKAgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31106.png - small - - https://s.yimg.com/iu/api/res/1.2/A1SZj0MZWLnZJ.Y0iTKAgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31106.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30393 - 30393 - - Hunter Dimick - Hunter - Dimick - Hunter - Dimick - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30393 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 79 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30338 - 30338 - - Isaac Rochell - Isaac - Rochell - Isaac - Rochell - - nfl.p.30338 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30196 - 30196 - - Derek Rivers - Derek - Rivers - Derek - Rivers - - nfl.p.30196 - nfl.t.17 - New England Patriots - NE - - 11 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/BqEx.s5zlFeUog_jGLDJuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30196.png - small - - https://s.yimg.com/iu/api/res/1.2/BqEx.s5zlFeUog_jGLDJuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30196.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31738 - 31738 - - Blaine Woodson - Blaine - Woodson - Blaine - Woodson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31738 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 68 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30565 - 30565 - - Noble Nwachukwu - Noble - Nwachukwu - Noble - Nwachukwu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30565 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 67 - DE - - https://s.yimg.com/iu/api/res/1.2/yASQuWG6p44AeIvGBtRA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30565.png - small - - https://s.yimg.com/iu/api/res/1.2/yASQuWG6p44AeIvGBtRA7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30565.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30644 - 30644 - - Cameron Malveaux - Cameron - Malveaux - Cameron - Malveaux - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30644 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 75 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31047 - 31047 - - Sam Hubbard - Sam - Hubbard - Sam - Hubbard - - nfl.p.31047 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/Hy6Gn_x_RK88Ql8d7PXBOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31047.png - small - - https://s.yimg.com/iu/api/res/1.2/Hy6Gn_x_RK88Ql8d7PXBOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31047.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30309 - 30309 - - Al-Quadin Muhammad - Al-Quadin - Muhammad - Al-Quadin - Muhammad - - nfl.p.30309 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31277 - 31277 - - Antonio Simmons - Antonio - Simmons - Antonio - Simmons - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31277 - nfl.t.7 - Denver Broncos - Den - - 10 - - 69 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26765 - 26765 - - Lavar Edwards - Lavar - Edwards - Lavar - Edwards - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26765 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/TJUfq1Bp61jUWJKJluEqWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26765.1.png - small - - https://s.yimg.com/iu/api/res/1.2/TJUfq1Bp61jUWJKJluEqWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26765.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30015 - 30015 - - Zach Wood - Zach - Wood - Zach - Wood - - nfl.p.30015 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 49 - DE - - https://s.yimg.com/iu/api/res/1.2/sSbxdERiB3ELMK7q6HNNkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30015.png - small - - https://s.yimg.com/iu/api/res/1.2/sSbxdERiB3ELMK7q6HNNkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30015.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31520 - 31520 - - Evan Perrizo - Evan - Perrizo - Evan - Perrizo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31520 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 78 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31728 - 31728 - - Da'Sean Downey - Da'Sean - Downey - Da'Sean - Downey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31728 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 49 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29522 - 29522 - - Chris Landrum - Chris - Landrum - Chris - Landrum - - Q - Questionable - nfl.p.29522 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 46 - DE - - https://s.yimg.com/iu/api/res/1.2/nbYnLs4_1YBZH0y1VUuMOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29522.png - small - - https://s.yimg.com/iu/api/res/1.2/nbYnLs4_1YBZH0y1VUuMOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29522.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.5897 - 5897 - - Dwight Freeney - Dwight - Freeney - Dwight - Freeney - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.5897 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/cRSH6EYAogHlaG57R.0Aiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130923/5897.png - small - - https://s.yimg.com/iu/api/res/1.2/cRSH6EYAogHlaG57R.0Aiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/http://l.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20130923/5897.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25836 - 25836 - - Jared Crick - Jared - Crick - Jared - Crick - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25836 - nfl.t.7 - Denver Broncos - Den - - 10 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/TZXzjPSU26DMzW1FE80LMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25836.1.png - small - - https://s.yimg.com/iu/api/res/1.2/TZXzjPSU26DMzW1FE80LMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25836.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31558 - 31558 - - Gaelin Elmore - Gaelin - Elmore - Gaelin - Elmore - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31558 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 69 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31539 - 31539 - - Claudy Mathieu - Claudy - Mathieu - Claudy - Mathieu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31539 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 60 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29566 - 29566 - - Kameron Canaday - Kameron - Canaday - Kameron - Canaday - - nfl.p.29566 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/gSBdks8z.jDK3.faUCRnNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29566.png - small - - https://s.yimg.com/iu/api/res/1.2/gSBdks8z.jDK3.faUCRnNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29566.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29596 - 29596 - - Sterling Bailey - Sterling - Bailey - Sterling - Bailey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29596 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 79 - DE - - https://s.yimg.com/iu/api/res/1.2/3l3g6xONG97rKfZma0WRkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29596.1.png - small - - https://s.yimg.com/iu/api/res/1.2/3l3g6xONG97rKfZma0WRkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29596.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31105 - 31105 - - John Franklin-Myers - John - Franklin-Myers - John - Franklin-Myers - - nfl.p.31105 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/xKaP7KFbInfEVXMOTKpL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31105.png - small - - https://s.yimg.com/iu/api/res/1.2/xKaP7KFbInfEVXMOTKpL4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31105.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31214 - 31214 - - Justin Lawler - Justin - Lawler - Justin - Lawler - - nfl.p.31214 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 53 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8843 - 8843 - - Kendall Langford - Kendall - Langford - Kendall - Langford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8843 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/4dKq9OlAWP2Lhim0S7.ASg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/8843.png - small - - https://s.yimg.com/iu/api/res/1.2/4dKq9OlAWP2Lhim0S7.ASg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/8843.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29751 - 29751 - - Trevon Coley - Trevon - Coley - Trevon - Coley - - nfl.p.29751 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/M3Nq31l4LbyGpLkUsOlPdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29751.1.png - small - - https://s.yimg.com/iu/api/res/1.2/M3Nq31l4LbyGpLkUsOlPdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29751.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30201 - 30201 - - Eddie Vanderdoes - Eddie - Vanderdoes - Eddie - Vanderdoes - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.30201 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/3M4NMAq7pkgvwZvEjqxtbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30201.png - small - - https://s.yimg.com/iu/api/res/1.2/3M4NMAq7pkgvwZvEjqxtbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30201.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30168 - 30168 - - Dalvin Tomlinson - Dalvin - Tomlinson - Dalvin - Tomlinson - - nfl.p.30168 - nfl.t.19 - New York Giants - NYG - - 9 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/mLZgtD_YeoLiiLuDDXjwxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30168.png - small - - https://s.yimg.com/iu/api/res/1.2/mLZgtD_YeoLiiLuDDXjwxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30168.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29630 - 29630 - - Kyle Peko - Kyle - Peko - Kyle - Peko - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29630 - nfl.t.7 - Denver Broncos - Den - - 10 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/L.yaEec.Qd9MjsfI0UCFeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/29630.png - small - - https://s.yimg.com/iu/api/res/1.2/L.yaEec.Qd9MjsfI0UCFeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/29630.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28694 - 28694 - - Olsen Pierre - Olsen - Pierre - Olsen - Pierre - - Q - Questionable - nfl.p.28694 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 72 - DT - - https://s.yimg.com/iu/api/res/1.2/EVzFjsnTpa3EzfMWmNEnMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28694.png - small - - https://s.yimg.com/iu/api/res/1.2/EVzFjsnTpa3EzfMWmNEnMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28694.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28109 - 28109 - - Garrison Smith - Garrison - Smith - Garrison - Smith - - nfl.p.28109 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/P4P3eLwZ.kMMd8x6AVQrDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28109.png - small - - https://s.yimg.com/iu/api/res/1.2/P4P3eLwZ.kMMd8x6AVQrDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28109.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30655 - 30655 - - Adam Butler - Adam - Butler - Adam - Butler - - nfl.p.30655 - nfl.t.17 - New England Patriots - NE - - 11 - - 70 - DT - - https://s.yimg.com/iu/api/res/1.2/TZ7__pFyEGJzMGHeKaVepg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30655.png - small - - https://s.yimg.com/iu/api/res/1.2/TZ7__pFyEGJzMGHeKaVepg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30655.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29356 - 29356 - - Andrew Billings - Andrew - Billings - Andrew - Billings - - nfl.p.29356 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/D5bqr3KKVYThsVm5BFTOQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29356.1.png - small - - https://s.yimg.com/iu/api/res/1.2/D5bqr3KKVYThsVm5BFTOQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29356.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30792 - 30792 - - Eli Ankou - Eli - Ankou - Eli - Ankou - - nfl.p.30792 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 54 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29366 - 29366 - - Willie Henry - Willie - Henry - Willie - Henry - - O - Out - nfl.p.29366 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 69 - DT - - https://s.yimg.com/iu/api/res/1.2/5_0NcLp1QXpX3kAOfLZseA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29366.png - small - - https://s.yimg.com/iu/api/res/1.2/5_0NcLp1QXpX3kAOfLZseA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29366.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30307 - 30307 - - Vincent Taylor - Vincent - Taylor - Vincent - Taylor - - nfl.p.30307 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30251 - 30251 - - Ryan Glasgow - Ryan - Glasgow - Ryan - Glasgow - - nfl.p.30251 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30291 - 30291 - - Davon Godchaux - Davon - Godchaux - Davon - Godchaux - - nfl.p.30291 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 56 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30298 - 30298 - - Caleb Brantley - Caleb - Brantley - Caleb - Brantley - - nfl.p.30298 - nfl.t.28 - Washington Redskins - Was - - 4 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30130 - 30130 - - Jonathan Allen - Jonathan - Allen - Jonathan - Allen - - nfl.p.30130 - nfl.t.28 - Washington Redskins - Was - - 4 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/nz7NbCwmDYbt8mPXt8N4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30130.png - small - - https://s.yimg.com/iu/api/res/1.2/nz7NbCwmDYbt8mPXt8N4RQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30130.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30178 - 30178 - - Larry Ogunjobi - Larry - Ogunjobi - Larry - Ogunjobi - - nfl.p.30178 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 65 - DT - - https://s.yimg.com/iu/api/res/1.2/F5WvuWc7j9FkdpfTsnueWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30178.png - small - - https://s.yimg.com/iu/api/res/1.2/F5WvuWc7j9FkdpfTsnueWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30178.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30215 - 30215 - - Nazair Jones - Nazair - Jones - Nazair - Jones - - nfl.p.30215 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/k8UEfKPQDHCpAcLITQpNAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30215.png - small - - https://s.yimg.com/iu/api/res/1.2/k8UEfKPQDHCpAcLITQpNAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30215.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28478 - 28478 - - Carl Davis - Carl - Davis - Carl - Davis - - nfl.p.28478 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/WkkJ1gcJ4f9ocW2oBUmWTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28478.png - small - - https://s.yimg.com/iu/api/res/1.2/WkkJ1gcJ4f9ocW2oBUmWTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28478.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29263 - 29263 - - Robert Nkemdiche - Robert - Nkemdiche - Robert - Nkemdiche - - Q - Questionable - nfl.p.29263 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/fTaT2jMDcoBaqZw3Go2d5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29263.png - small - - https://s.yimg.com/iu/api/res/1.2/fTaT2jMDcoBaqZw3Go2d5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29263.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30310 - 30310 - - D.J. Jones - D.J. - Jones - D.J. - Jones - - nfl.p.30310 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/CjsH6gG_R2IkyBGmphYnhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30310.png - small - - https://s.yimg.com/iu/api/res/1.2/CjsH6gG_R2IkyBGmphYnhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30310.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30317 - 30317 - - Jeremiah Ledbetter - Jeremiah - Ledbetter - Jeremiah - Ledbetter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30317 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 78 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28598 - 28598 - - Christian Ringo - Christian - Ringo - Christian - Ringo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28598 - nfl.t.8 - Detroit Lions - Det - - 6 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/GmeQtospogR5c4A9A_8sWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28598.png - small - - https://s.yimg.com/iu/api/res/1.2/GmeQtospogR5c4A9A_8sWg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28598.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29747 - 29747 - - Brian Price - Brian - Price - Brian - Price - - nfl.p.29747 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/yV6qbmwSHRM0WX3spH_OzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29747.png - small - - https://s.yimg.com/iu/api/res/1.2/yV6qbmwSHRM0WX3spH_OzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29747.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27245 - 27245 - - A.J. Francis - A.J. - Francis - A.J. - Francis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27245 - nfl.t.19 - New York Giants - NYG - - 9 - - 65 - DT - - https://s.yimg.com/iu/api/res/1.2/YxCcucTN6BHGm.O1fDWqUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27245.png - small - - https://s.yimg.com/iu/api/res/1.2/YxCcucTN6BHGm.O1fDWqUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27245.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30257 - 30257 - - Grover Stewart - Grover - Stewart - Grover - Stewart - - nfl.p.30257 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30302 - 30302 - - Tanzel Smart - Tanzel - Smart - Tanzel - Smart - - nfl.p.30302 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30357 - 30357 - - Treyvon Hester - Treyvon - Hester - Treyvon - Hester - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30357 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24824 - 24824 - - Jabaal Sheard - Jabaal - Sheard - Jabaal - Sheard - - nfl.p.24824 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 93 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/OTVMGv1Z2YHF4VvsuvYkfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24824.1.png - small - - https://s.yimg.com/iu/api/res/1.2/OTVMGv1Z2YHF4VvsuvYkfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24824.1.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.25782 - 25782 - - Olivier Vernon - Olivier - Vernon - Olivier - Vernon - - Q - Questionable - nfl.p.25782 - nfl.t.19 - New York Giants - NYG - - 9 - - 54 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/7x7VjZSO8eOQOQKS4pBSZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25782.png - small - - https://s.yimg.com/iu/api/res/1.2/7x7VjZSO8eOQOQKS4pBSZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25782.png - 0 - DP - - LB - DE - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.25731 - 25731 - - Chandler Jones - Chandler - Jones - Chandler - Jones - - nfl.p.25731 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 55 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/f9LV9tPCsQma7KCDQpAIJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25731.png - small - - https://s.yimg.com/iu/api/res/1.2/f9LV9tPCsQma7KCDQpAIJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25731.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 41 - 0 - - - - 380.p.26752 - 26752 - - John Simon - John - Simon - John - Simon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26752 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 51 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/Xc2GZbADNYm4QahPXPb9Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26752.1.png - small - - https://s.yimg.com/iu/api/res/1.2/Xc2GZbADNYm4QahPXPb9Kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26752.1.png - 0 - DP - - LB - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28446 - 28446 - - Markus Golden - Markus - Golden - Markus - Golden - - Q - Questionable - nfl.p.28446 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 44 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/BzRcl6ry673Mi5EGk6SzXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28446.png - small - - https://s.yimg.com/iu/api/res/1.2/BzRcl6ry673Mi5EGk6SzXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28446.png - 0 - DP - - LB - DE - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25725 - 25725 - - Bruce Irvin - Bruce - Irvin - Bruce - Irvin - - nfl.p.25725 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 51 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/9GSB3SYL6aW1Eg1nMYsZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25725.png - small - - https://s.yimg.com/iu/api/res/1.2/9GSB3SYL6aW1Eg1nMYsZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/25725.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.29867 - 29867 - - Romeo Okwara - Romeo - Okwara - Romeo - Okwara - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29867 - nfl.t.19 - New York Giants - NYG - - 9 - - 78 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/jIpMb1S7soCfI4bTydGt2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29867.png - small - - https://s.yimg.com/iu/api/res/1.2/jIpMb1S7soCfI4bTydGt2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29867.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24154 - 24154 - - Arthur Moats - Arthur - Moats - Arthur - Moats - - IR - Injured Reserve - knee - nfl.p.24154 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 93 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/IXkV8zH1JIlQ29NUtHKaTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24154.png - small - - https://s.yimg.com/iu/api/res/1.2/IXkV8zH1JIlQ29NUtHKaTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24154.png - 0 - DP - - LB - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24801 - 24801 - - Robert Quinn - Robert - Quinn - Robert - Quinn - - nfl.p.24801 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 94 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/SEdcDFl99GrZysDPALTJrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24801.png - small - - https://s.yimg.com/iu/api/res/1.2/SEdcDFl99GrZysDPALTJrQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24801.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27554 - 27554 - - Marcus Smith II - Marcus - Smith II - Marcus - Smith II - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27554 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 44 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/rmR5VhDHh7tdEosMXrIiFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27554.png - small - - https://s.yimg.com/iu/api/res/1.2/rmR5VhDHh7tdEosMXrIiFg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27554.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29797 - 29797 - - Ufomba Kamalu - Ufomba - Kamalu - Ufomba - Kamalu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29797 - nfl.t.34 - Houston Texans - Hou - - 10 - - 94 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/fZ3pSF9nbDvF0O17w8LRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29797.1.png - small - - https://s.yimg.com/iu/api/res/1.2/fZ3pSF9nbDvF0O17w8LRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29797.1.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30229 - 30229 - - Carl Lawson - Carl - Lawson - Carl - Lawson - - nfl.p.30229 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 58 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/cXNpX75U.NU_o9A2OvWA9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30229.png - small - - https://s.yimg.com/iu/api/res/1.2/cXNpX75U.NU_o9A2OvWA9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30229.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30280 - 30280 - - Avery Moss - Avery - Moss - Avery - Moss - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30280 - nfl.t.19 - New York Giants - NYG - - 9 - - 91 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/TRjbN7LcRGhb5WmkDAKUqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30280.png - small - - https://s.yimg.com/iu/api/res/1.2/TRjbN7LcRGhb5WmkDAKUqg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/30280.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30193 - 30193 - - Tarell Basham - Tarell - Basham - Tarell - Basham - - Q - Questionable - nfl.p.30193 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 58 - LB,DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - LB - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7872 - 7872 - - Domata Peko - Domata - Peko - Domata - Peko - - nfl.p.7872 - nfl.t.7 - Denver Broncos - Den - - 10 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/kbK1Ol4pgw3BkUAgAadOxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/7872.png - small - - https://s.yimg.com/iu/api/res/1.2/kbK1Ol4pgw3BkUAgAadOxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/7872.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29759 - 29759 - - Michael Pierce - Michael - Pierce - Michael - Pierce - - nfl.p.29759 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/snT3B__kofYHdNjQfPqiYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29759.png - small - - https://s.yimg.com/iu/api/res/1.2/snT3B__kofYHdNjQfPqiYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29759.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29246 - 29246 - - Sheldon Rankins - Sheldon - Rankins - Sheldon - Rankins - - nfl.p.29246 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/OmPeYGyUD6tscMTyCtRzrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29246.png - small - - https://s.yimg.com/iu/api/res/1.2/OmPeYGyUD6tscMTyCtRzrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29246.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29687 - 29687 - - Destiny Vaeao - Destiny - Vaeao - Destiny - Vaeao - - nfl.p.29687 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/RJmN1GEr4.UlYDfhaDE7LQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29687.png - small - - https://s.yimg.com/iu/api/res/1.2/RJmN1GEr4.UlYDfhaDE7LQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29687.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24294 - 24294 - - Kyle Love - Kyle - Love - Kyle - Love - - nfl.p.24294 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/RM_c3Fx7NhuyH_BTD95nDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24294.png - small - - https://s.yimg.com/iu/api/res/1.2/RM_c3Fx7NhuyH_BTD95nDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24294.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25847 - 25847 - - Malik Jackson - Malik - Jackson - Malik - Jackson - - nfl.p.25847 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/CUytEvv.c.eoNGp7BpzqLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25847.png - small - - https://s.yimg.com/iu/api/res/1.2/CUytEvv.c.eoNGp7BpzqLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25847.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.24929 - 24929 - - Karl Klug - Karl - Klug - Karl - Klug - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24929 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/_GbQWFur2NNuetlqQvtkoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24929.png - small - - https://s.yimg.com/iu/api/res/1.2/_GbQWFur2NNuetlqQvtkoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24929.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26636 - 26636 - - Sheldon Richardson - Sheldon - Richardson - Sheldon - Richardson - - nfl.p.26636 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/JpBODsvu7mmXt4eu2QEoXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26636.png - small - - https://s.yimg.com/iu/api/res/1.2/JpBODsvu7mmXt4eu2QEoXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26636.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.28504 - 28504 - - Rodney Gunter - Rodney - Gunter - Rodney - Gunter - - nfl.p.28504 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/0hR1JRZioLTPopRhGpGdxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28504.png - small - - https://s.yimg.com/iu/api/res/1.2/0hR1JRZioLTPopRhGpGdxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28504.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29314 - 29314 - - Adolphus Washington - Adolphus - Washington - Adolphus - Washington - - nfl.p.29314 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/VWo0vgSlf3AJmEc8ORNbhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29314.1.png - small - - https://s.yimg.com/iu/api/res/1.2/VWo0vgSlf3AJmEc8ORNbhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29314.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24864 - 24864 - - Jurrell Casey - Jurrell - Casey - Jurrell - Casey - - nfl.p.24864 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/iDMGTp0FYl0qzx78DR2DeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24864.png - small - - https://s.yimg.com/iu/api/res/1.2/iDMGTp0FYl0qzx78DR2DeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24864.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.24805 - 24805 - - Corey Liuget - Corey - Liuget - Corey - Liuget - - SUSP - Suspended - nfl.p.24805 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/nARbous_HhOgr8vvPoMwdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24805.png - small - - https://s.yimg.com/iu/api/res/1.2/nARbous_HhOgr8vvPoMwdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24805.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25791 - 25791 - - Tyrone Crawford - Tyrone - Crawford - Tyrone - Crawford - - nfl.p.25791 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/.HswnPSrwEZkgBdEYqc7GQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25791.png - small - - https://s.yimg.com/iu/api/res/1.2/.HswnPSrwEZkgBdEYqc7GQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25791.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29096 - 29096 - - David Irving - David - Irving - David - Irving - - SUSP - Suspended - nfl.p.29096 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/JZX3.GZDxAAt6PY4M6RUkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29096.png - small - - https://s.yimg.com/iu/api/res/1.2/JZX3.GZDxAAt6PY4M6RUkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29096.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27752 - 27752 - - Beau Allen - Beau - Allen - Beau - Allen - - nfl.p.27752 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/ewYuHMd03ZIMorRo2961OQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27752.png - small - - https://s.yimg.com/iu/api/res/1.2/ewYuHMd03ZIMorRo2961OQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27752.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.23978 - 23978 - - Gerald McCoy - Gerald - McCoy - Gerald - McCoy - - nfl.p.23978 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/hbfAO42AEfqC79ykTvlm9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23978.png - small - - https://s.yimg.com/iu/api/res/1.2/hbfAO42AEfqC79ykTvlm9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23978.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.24778 - 24778 - - Tom Johnson - Tom - Johnson - Tom - Johnson - - nfl.p.24778 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/eLAsErotIA0ExQN4qcfWTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24778.png - small - - https://s.yimg.com/iu/api/res/1.2/eLAsErotIA0ExQN4qcfWTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24778.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7840 - 7840 - - Frostee Rucker - Frostee - Rucker - Frostee - Rucker - - nfl.p.7840 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/fSOq804b4Oc18r3azKjZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7840.png - small - - https://s.yimg.com/iu/api/res/1.2/fSOq804b4Oc18r3azKjZvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/7840.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27748 - 27748 - - Shamar Stephen - Shamar - Stephen - Shamar - Stephen - - nfl.p.27748 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/rYDRyeIc_Er0p45yTl1qYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27748.png - small - - https://s.yimg.com/iu/api/res/1.2/rYDRyeIc_Er0p45yTl1qYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27748.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24056 - 24056 - - Earl Mitchell - Earl - Mitchell - Earl - Mitchell - - nfl.p.24056 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/JLmCqL8L.wh.IZI1I6gx7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24056.png - small - - https://s.yimg.com/iu/api/res/1.2/JLmCqL8L.wh.IZI1I6gx7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/24056.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.23977 - 23977 - - Ndamukong Suh - Ndamukong - Suh - Ndamukong - Suh - - nfl.p.23977 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/u6LOxcN8wBjUsGZww2CFVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/23977.png - small - - https://s.yimg.com/iu/api/res/1.2/u6LOxcN8wBjUsGZww2CFVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/23977.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 12 - 0 - - - - 380.p.29261 - 29261 - - Kenny Clark - Kenny - Clark - Kenny - Clark - - nfl.p.29261 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/41HrAiHK3B_.0GhqvJimMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29261.png - small - - https://s.yimg.com/iu/api/res/1.2/41HrAiHK3B_.0GhqvJimMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29261.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27983 - 27983 - - Jamie Meder - Jamie - Meder - Jamie - Meder - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27983 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/a1opajqINyvWbTmyigfC3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27983.1.png - small - - https://s.yimg.com/iu/api/res/1.2/a1opajqINyvWbTmyigfC3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27983.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8854 - 8854 - - Pat Sims - Pat - Sims - Pat - Sims - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8854 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/XCqXL2rCTR4.Ac6_FVMSDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8854.1.png - small - - https://s.yimg.com/iu/api/res/1.2/XCqXL2rCTR4.Ac6_FVMSDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8854.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9513 - 9513 - - Clinton McDonald - Clinton - McDonald - Clinton - McDonald - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9513 - nfl.t.7 - Denver Broncos - Den - - 10 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/6l4jiu09i2.xXKCS1C3rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9513.png - small - - https://s.yimg.com/iu/api/res/1.2/6l4jiu09i2.xXKCS1C3rsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9513.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7761 - 7761 - - Haloti Ngata - Haloti - Ngata - Haloti - Ngata - - nfl.p.7761 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/OHKs4zOU6nwRem_51iQWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7761.png - small - - https://s.yimg.com/iu/api/res/1.2/OHKs4zOU6nwRem_51iQWXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7761.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25797 - 25797 - - John Hughes III - John - Hughes III - John - Hughes III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25797 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/HoJ0NLHFN2d5_5jM3mE7Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25797.1.png - small - - https://s.yimg.com/iu/api/res/1.2/HoJ0NLHFN2d5_5jM3mE7Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25797.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28525 - 28525 - - Grady Jarrett - Grady - Jarrett - Grady - Jarrett - - nfl.p.28525 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/lS5Q8CARJ6kJWMMqxY_g5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28525.png - small - - https://s.yimg.com/iu/api/res/1.2/lS5Q8CARJ6kJWMMqxY_g5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28525.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27853 - 27853 - - Tenny Palepoi - Tenny - Palepoi - Tenny - Palepoi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27853 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 63 - DT - - https://s.yimg.com/iu/api/res/1.2/U1ARWAQjLTdouzXWYEIM6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27853.png - small - - https://s.yimg.com/iu/api/res/1.2/U1ARWAQjLTdouzXWYEIM6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27853.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25842 - 25842 - - Mike Daniels - Mike - Daniels - Mike - Daniels - - nfl.p.25842 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 76 - DT - - https://s.yimg.com/iu/api/res/1.2/nWG_.YqWo.t7wY_IijqKnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25842.png - small - - https://s.yimg.com/iu/api/res/1.2/nWG_.YqWo.t7wY_IijqKnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25842.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24021 - 24021 - - Linval Joseph - Linval - Joseph - Linval - Joseph - - nfl.p.24021 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/USiP1R1LihP0_D9wwufKmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24021.png - small - - https://s.yimg.com/iu/api/res/1.2/USiP1R1LihP0_D9wwufKmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24021.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.27056 - 27056 - - Damion Square - Damion - Square - Damion - Square - - nfl.p.27056 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 71 - DT - - https://s.yimg.com/iu/api/res/1.2/hRRd8qaS8xmC6UZZ1jWkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27056.png - small - - https://s.yimg.com/iu/api/res/1.2/hRRd8qaS8xmC6UZZ1jWkUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27056.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26672 - 26672 - - Johnathan Hankins - Johnathan - Hankins - Johnathan - Hankins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26672 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/7yiN0AjQ6Utog5TMDS9J5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/26672.png - small - - https://s.yimg.com/iu/api/res/1.2/7yiN0AjQ6Utog5TMDS9J5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/26672.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29241 - 29241 - - DeForest Buckner - DeForest - Buckner - DeForest - Buckner - - nfl.p.29241 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/NNjyP5lrjEQXqI0Hj1Ufow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29241.png - small - - https://s.yimg.com/iu/api/res/1.2/NNjyP5lrjEQXqI0Hj1Ufow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29241.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 12 - 0 - - - - 380.p.24790 - 24790 - - Marcell Dareus - Marcell - Dareus - Marcell - Dareus - - Q - Questionable - nfl.p.24790 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/4CMu1Ed8a9Iuje_sBADe_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24790.png - small - - https://s.yimg.com/iu/api/res/1.2/4CMu1Ed8a9Iuje_sBADe_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24790.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28427 - 28427 - - Eddie Goldman - Eddie - Goldman - Eddie - Goldman - - nfl.p.28427 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/CcLjIdatvbqbWdJZGjUBcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28427.png - small - - https://s.yimg.com/iu/api/res/1.2/CcLjIdatvbqbWdJZGjUBcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28427.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8967 - 8967 - - Ahtyba Rubin - Ahtyba - Rubin - Ahtyba - Rubin - - IR - Injured Reserve - undisclosed - nfl.p.8967 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/d65PXsXeOEU.76uKYe35hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8967.png - small - - https://s.yimg.com/iu/api/res/1.2/d65PXsXeOEU.76uKYe35hw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8967.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28400 - 28400 - - Danny Shelton - Danny - Shelton - Danny - Shelton - - nfl.p.28400 - nfl.t.17 - New England Patriots - NE - - 11 - - 71 - DT - - https://s.yimg.com/iu/api/res/1.2/TjOG1RyUGi0LT3DCo4JC1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28400.png - small - - https://s.yimg.com/iu/api/res/1.2/TjOG1RyUGi0LT3DCo4JC1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28400.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25225 - 25225 - - Sealver Siliga - Sealver - Siliga - Sealver - Siliga - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25225 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/6lD4DUCzjIsUd.kDoRNR0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25225.png - small - - https://s.yimg.com/iu/api/res/1.2/6lD4DUCzjIsUd.kDoRNR0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25225.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28420 - 28420 - - Malcom Brown - Malcom - Brown - Malcom - Brown - - nfl.p.28420 - nfl.t.17 - New England Patriots - NE - - 11 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/Tyjo51l0CduBXizfhcvKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28420.png - small - - https://s.yimg.com/iu/api/res/1.2/Tyjo51l0CduBXizfhcvKPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28420.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26054 - 26054 - - Tyrunn Walker - Tyrunn - Walker - Tyrunn - Walker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26054 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/hV8GTLohn7p6kOGoEMKn7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26054.png - small - - https://s.yimg.com/iu/api/res/1.2/hV8GTLohn7p6kOGoEMKn7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26054.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26828 - 26828 - - Stacy McGee - Stacy - McGee - Stacy - McGee - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.26828 - nfl.t.28 - Washington Redskins - Was - - 4 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/AsaFPmzceS4hWWsj1vWrEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26828.png - small - - https://s.yimg.com/iu/api/res/1.2/AsaFPmzceS4hWWsj1vWrEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26828.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28178 - 28178 - - Robert Thomas - Robert - Thomas - Robert - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28178 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/nRxoh7UxOlNBl9hiQBNxgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28178.png - small - - https://s.yimg.com/iu/api/res/1.2/nRxoh7UxOlNBl9hiQBNxgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28178.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25724 - 25724 - - Michael Brockers - Michael - Brockers - Michael - Brockers - - nfl.p.25724 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/T9ofOW3TFcjnbbwmjwwAbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25724.png - small - - https://s.yimg.com/iu/api/res/1.2/T9ofOW3TFcjnbbwmjwwAbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25724.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.26717 - 26717 - - Brandon Williams - Brandon - Williams - Brandon - Williams - - nfl.p.26717 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/Tj7Q.88KhARJkPO9n4V6jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26717.png - small - - https://s.yimg.com/iu/api/res/1.2/Tj7Q.88KhARJkPO9n4V6jQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26717.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26705 - 26705 - - John Jenkins - John - Jenkins - John - Jenkins - - nfl.p.26705 - nfl.t.19 - New York Giants - NYG - - 9 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/zxNRGM48MpjCWIKjat4mWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26705.png - small - - https://s.yimg.com/iu/api/res/1.2/zxNRGM48MpjCWIKjat4mWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26705.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28481 - 28481 - - Henry Anderson - Henry - Anderson - Henry - Anderson - - nfl.p.28481 - nfl.t.20 - New York Jets - NYJ - - 11 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/d2t._jRR6a7KYsqKIt8WMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28481.png - small - - https://s.yimg.com/iu/api/res/1.2/d2t._jRR6a7KYsqKIt8WMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28481.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26690 - 26690 - - Bennie Logan - Bennie - Logan - Bennie - Logan - - nfl.p.26690 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/9MfkVqbSwlP8bWlnpmtuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26690.png - small - - https://s.yimg.com/iu/api/res/1.2/9MfkVqbSwlP8bWlnpmtuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26690.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28542 - 28542 - - Tyeler Davison - Tyeler - Davison - Tyeler - Davison - - nfl.p.28542 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/pPodZpMQs4b20xPWdceJOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28542.png - small - - https://s.yimg.com/iu/api/res/1.2/pPodZpMQs4b20xPWdceJOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28542.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24098 - 24098 - - Al Woods - Al - Woods - Al - Woods - - nfl.p.24098 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/q7A6oI59e__zFZgKG9OuSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24098.png - small - - https://s.yimg.com/iu/api/res/1.2/q7A6oI59e__zFZgKG9OuSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24098.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29323 - 29323 - - Javon Hargrave - Javon - Hargrave - Javon - Hargrave - - nfl.p.29323 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 79 - DT - - https://s.yimg.com/iu/api/res/1.2/zY8VM00Cy2aa5UAjXM8huw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29323.png - small - - https://s.yimg.com/iu/api/res/1.2/zY8VM00Cy2aa5UAjXM8huw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29323.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27104 - 27104 - - Abry Jones - Abry - Jones - Abry - Jones - - nfl.p.27104 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 95 - DT - - https://s.yimg.com/iu/api/res/1.2/RAjur6aRiNpN.gCYFCNbpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27104.1.png - small - - https://s.yimg.com/iu/api/res/1.2/RAjur6aRiNpN.gCYFCNbpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27104.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26723 - 26723 - - Akeem Spence - Akeem - Spence - Akeem - Spence - - nfl.p.26723 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/S4GhGg_P5ZRMXDvwpv3Kcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26723.png - small - - https://s.yimg.com/iu/api/res/1.2/S4GhGg_P5ZRMXDvwpv3Kcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26723.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29354 - 29354 - - David Onyemata - David - Onyemata - David - Onyemata - - nfl.p.29354 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/qlE42pq6QegboipIxlOmbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29354.png - small - - https://s.yimg.com/iu/api/res/1.2/qlE42pq6QegboipIxlOmbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29354.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27602 - 27602 - - Jay Bromley - Jay - Bromley - Jay - Bromley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27602 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/duVBWtnl_xOxJixdKY5rkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27602.png - small - - https://s.yimg.com/iu/api/res/1.2/duVBWtnl_xOxJixdKY5rkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/27602.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27635 - 27635 - - Justin Ellis - Justin - Ellis - Justin - Ellis - - nfl.p.27635 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 78 - DT - - https://s.yimg.com/iu/api/res/1.2/Qs2RPjN.EQrqr6G2.GUjuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27635.png - small - - https://s.yimg.com/iu/api/res/1.2/Qs2RPjN.EQrqr6G2.GUjuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27635.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27541 - 27541 - - Aaron Donald - Aaron - Donald - Aaron - Donald - - nfl.p.27541 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/waFe8fR0GYR3jwROgA3FUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27541.png - small - - https://s.yimg.com/iu/api/res/1.2/waFe8fR0GYR3jwROgA3FUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27541.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 40 - 0 - - - - 380.p.25745 - 25745 - - Courtney Upshaw - Courtney - Upshaw - Courtney - Upshaw - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25745 - nfl.t.20 - New York Jets - NYJ - - 11 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/wd2XfolLCMh4DbDFoI4Jzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25745.png - small - - https://s.yimg.com/iu/api/res/1.2/wd2XfolLCMh4DbDFoI4Jzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25745.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24095 - 24095 - - Geno Atkins - Geno - Atkins - Geno - Atkins - - nfl.p.24095 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/HMJ_kiH7_07_ainQglsR0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24095.png - small - - https://s.yimg.com/iu/api/res/1.2/HMJ_kiH7_07_ainQglsR0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24095.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.26153 - 26153 - - Damon Harrison - Damon - Harrison - Damon - Harrison - - nfl.p.26153 - nfl.t.19 - New York Giants - NYG - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/hv0.JzZNVbbLpzlVh85W_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26153.png - small - - https://s.yimg.com/iu/api/res/1.2/hv0.JzZNVbbLpzlVh85W_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26153.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.9508 - 9508 - - Ricky Jean Francois - Ricky - Jean Francois - Ricky - Jean Francois - - nfl.p.9508 - nfl.t.8 - Detroit Lions - Det - - 6 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/fGpiVRa4M.LS2iBKLDKFHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/9508.png - small - - https://s.yimg.com/iu/api/res/1.2/fGpiVRa4M.LS2iBKLDKFHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/9508.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29400 - 29400 - - D.J. Reader - D.J. - Reader - D.J. - Reader - - nfl.p.29400 - nfl.t.34 - Houston Texans - Hou - - 10 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/ewD2COIhtTz1UCGY954gcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29400.1.png - small - - https://s.yimg.com/iu/api/res/1.2/ewD2COIhtTz1UCGY954gcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29400.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25722 - 25722 - - Fletcher Cox - Fletcher - Cox - Fletcher - Cox - - nfl.p.25722 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/mD8ekbBRI10ZUM6dsV.LeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25722.png - small - - https://s.yimg.com/iu/api/res/1.2/mD8ekbBRI10ZUM6dsV.LeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25722.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.26667 - 26667 - - Kawann Short - Kawann - Short - Kawann - Short - - nfl.p.26667 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/DBQwkc6ELURIPf6e7hOzPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26667.png - small - - https://s.yimg.com/iu/api/res/1.2/DBQwkc6ELURIPf6e7hOzPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26667.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.29289 - 29289 - - Jarran Reed - Jarran - Reed - Jarran - Reed - - nfl.p.29289 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 90 - DT - - https://s.yimg.com/iu/api/res/1.2/XyLvBrMbblwR8_FoRtLewg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29289.png - small - - https://s.yimg.com/iu/api/res/1.2/XyLvBrMbblwR8_FoRtLewg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29289.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8339 - 8339 - - Brandon Mebane - Brandon - Mebane - Brandon - Mebane - - nfl.p.8339 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/VRNEHexvbXha_JefoPdRAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/8339.png - small - - https://s.yimg.com/iu/api/res/1.2/VRNEHexvbXha_JefoPdRAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/8339.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29376 - 29376 - - Ronald Blair III - Ronald - Blair III - Ronald - Blair III - - nfl.p.29376 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/TPjl1T.3B7FeZH6lwdt3Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29376.png - small - - https://s.yimg.com/iu/api/res/1.2/TPjl1T.3B7FeZH6lwdt3Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29376.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29337 - 29337 - - Sheldon Day - Sheldon - Day - Sheldon - Day - - nfl.p.29337 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/05pSbGoxIr3S_iZ7hs9KRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29337.1.png - small - - https://s.yimg.com/iu/api/res/1.2/05pSbGoxIr3S_iZ7hs9KRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29337.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29264 - 29264 - - Vernon Butler - Vernon - Butler - Vernon - Butler - - nfl.p.29264 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/0liL8EAYUZIT1a3i3fTUAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29264.png - small - - https://s.yimg.com/iu/api/res/1.2/0liL8EAYUZIT1a3i3fTUAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29264.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28405 - 28405 - - Arik Armstead - Arik - Armstead - Arik - Armstead - - nfl.p.28405 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/9dDNlvfToUfzEecslFGtcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28405.png - small - - https://s.yimg.com/iu/api/res/1.2/9dDNlvfToUfzEecslFGtcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28405.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.8287 - 8287 - - Alan Branch - Alan - Branch - Alan - Branch - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8287 - nfl.t.17 - New England Patriots - NE - - 11 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/1N.wmPgSQUye5tmfn8a98g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/8287.png - small - - https://s.yimg.com/iu/api/res/1.2/1N.wmPgSQUye5tmfn8a98g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/8287.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9535 - 9535 - - Chris Baker - Chris - Baker - Chris - Baker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9535 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/ee0uG9r0XVmLl03OfhKFrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9535.png - small - - https://s.yimg.com/iu/api/res/1.2/ee0uG9r0XVmLl03OfhKFrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9535.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24852 - 24852 - - Terrell McClain - Terrell - McClain - Terrell - McClain - - nfl.p.24852 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/61QEf2weVPZLh6U._7GTow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24852.png - small - - https://s.yimg.com/iu/api/res/1.2/61QEf2weVPZLh6U._7GTow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24852.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9673 - 9673 - - Steve McLendon - Steve - McLendon - Steve - McLendon - - Q - Questionable - nfl.p.9673 - nfl.t.20 - New York Jets - NYJ - - 11 - - 99 - DT - - https://s.yimg.com/iu/api/res/1.2/LgyKuiEcz5L5OwH8MLSG8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9673.1.png - small - - https://s.yimg.com/iu/api/res/1.2/LgyKuiEcz5L5OwH8MLSG8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9673.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25048 - 25048 - - Cedric Thornton - Cedric - Thornton - Cedric - Thornton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25048 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 63 - DT - - https://s.yimg.com/iu/api/res/1.2/_lrv5s3F85xhSj0l1GCYcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25048.png - small - - https://s.yimg.com/iu/api/res/1.2/_lrv5s3F85xhSj0l1GCYcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25048.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29280 - 29280 - - A'Shawn Robinson - A'Shawn - Robinson - A'Shawn - Robinson - - nfl.p.29280 - nfl.t.8 - Detroit Lions - Det - - 6 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/XU3oLJfHWK2PB.yZuW8KCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29280.png - small - - https://s.yimg.com/iu/api/res/1.2/XU3oLJfHWK2PB.yZuW8KCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29280.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26637 - 26637 - - Star Lotulelei - Star - Lotulelei - Star - Lotulelei - - nfl.p.26637 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/6xSlx0kcQ8SCqrLoq8CzLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26637.png - small - - https://s.yimg.com/iu/api/res/1.2/6xSlx0kcQ8SCqrLoq8CzLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26637.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26651 - 26651 - - Sylvester Williams - Sylvester - Williams - Sylvester - Williams - - nfl.p.26651 - nfl.t.8 - Detroit Lions - Det - - 6 - - 92 - DT - - https://s.yimg.com/iu/api/res/1.2/oI8J5tbnt2EpJkaxH5hSoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26651.png - small - - https://s.yimg.com/iu/api/res/1.2/oI8J5tbnt2EpJkaxH5hSoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26651.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29301 - 29301 - - Maliek Collins - Maliek - Collins - Maliek - Collins - - nfl.p.29301 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 96 - DT - - https://s.yimg.com/iu/api/res/1.2/4r.hw3QaF2TRLNspZzL0cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29301.png - small - - https://s.yimg.com/iu/api/res/1.2/4r.hw3QaF2TRLNspZzL0cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29301.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28440 - 28440 - - Jordan Phillips - Jordan - Phillips - Jordan - Phillips - - nfl.p.28440 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 97 - DT - - https://s.yimg.com/iu/api/res/1.2/rhs.lYE3HGnSUThWfQEnDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28440.1.png - small - - https://s.yimg.com/iu/api/res/1.2/rhs.lYE3HGnSUThWfQEnDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28440.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28085 - 28085 - - Mike Pennel - Mike - Pennel - Mike - Pennel - - nfl.p.28085 - nfl.t.20 - New York Jets - NYJ - - 11 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/dFuXFYOwqyAwlh4TsuYisA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28085.png - small - - https://s.yimg.com/iu/api/res/1.2/dFuXFYOwqyAwlh4TsuYisA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28085.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28815 - 28815 - - Xavier Williams - Xavier - Williams - Xavier - Williams - - nfl.p.28815 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/lPshOL1tK88URp_BVs7DIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28815.png - small - - https://s.yimg.com/iu/api/res/1.2/lPshOL1tK88URp_BVs7DIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/28815.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24058 - 24058 - - Corey Peters - Corey - Peters - Corey - Peters - - Q - Questionable - nfl.p.24058 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 98 - DT - - https://s.yimg.com/iu/api/res/1.2/tc3BlxH2mfbdMxZyzaIFvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24058.png - small - - https://s.yimg.com/iu/api/res/1.2/tc3BlxH2mfbdMxZyzaIFvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24058.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26780 - 26780 - - Quinton Dial - Quinton - Dial - Quinton - Dial - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26780 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/Dso9bH4Z5kqFt9duP3IjCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26780.png - small - - https://s.yimg.com/iu/api/res/1.2/Dso9bH4Z5kqFt9duP3IjCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26780.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29277 - 29277 - - Austin Johnson - Austin - Johnson - Austin - Johnson - - nfl.p.29277 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 94 - DT - - https://s.yimg.com/iu/api/res/1.2/hqIVyxmvhRXZeQdK.mgTXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29277.png - small - - https://s.yimg.com/iu/api/res/1.2/hqIVyxmvhRXZeQdK.mgTXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29277.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8039 - 8039 - - Tony McDaniel - Tony - McDaniel - Tony - McDaniel - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8039 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 76 - DT - - https://s.yimg.com/iu/api/res/1.2/EDhECjhqoCP9N3tCIQkOYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/8039.png - small - - https://s.yimg.com/iu/api/res/1.2/EDhECjhqoCP9N3tCIQkOYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/8039.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29350 - 29350 - - Hassan Ridgeway - Hassan - Ridgeway - Hassan - Ridgeway - - nfl.p.29350 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 91 - DT - - https://s.yimg.com/iu/api/res/1.2/66QF6n8xtPCP9cx2o5elgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29350.1.png - small - - https://s.yimg.com/iu/api/res/1.2/66QF6n8xtPCP9cx2o5elgA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29350.1.png - 0 - DP - - DT - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30316 - 30316 - - Derrick Jones - Derrick - Jones - Derrick - Jones - - nfl.p.30316 - nfl.t.20 - New York Jets - NYJ - - 11 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31636 - 31636 - - Chris Jones - Chris - Jones - Chris - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31636 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30744 - 30744 - - Jeremy Boykins - Jeremy - Boykins - Jeremy - Boykins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30744 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 1 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31179 - 31179 - - Cornell Armstrong - Cornell - Armstrong - Cornell - Armstrong - - nfl.p.31179 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27685 - 27685 - - Shaq Richardson - Shaq - Richardson - Shaq - Richardson - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.27685 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/fkSkXJWUz.YelrH9DORrwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27685.png - small - - https://s.yimg.com/iu/api/res/1.2/fkSkXJWUz.YelrH9DORrwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27685.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31095 - 31095 - - Avonte Maddox - Avonte - Maddox - Avonte - Maddox - - nfl.p.31095 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/Mis3tUzLnw2FswA11VvmUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31095.png - small - - https://s.yimg.com/iu/api/res/1.2/Mis3tUzLnw2FswA11VvmUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31095.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31422 - 31422 - - Darious Williams - Darious - Williams - Darious - Williams - - nfl.p.31422 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30479 - 30479 - - Jonathan Moxey - Jonathan - Moxey - Jonathan - Moxey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30479 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31140 - 31140 - - Darius Phillips - Darius - Phillips - Darius - Phillips - - nfl.p.31140 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/PNBCY692anxrxTD5siIGMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31140.png - small - - https://s.yimg.com/iu/api/res/1.2/PNBCY692anxrxTD5siIGMA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31140.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31667 - 31667 - - Kevin Toliver II - Kevin - Toliver II - Kevin - Toliver II - - nfl.p.31667 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29684 - 29684 - - C.J. Smith - C.J. - Smith - C.J. - Smith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29684 - nfl.t.7 - Denver Broncos - Den - - 10 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/cKm_w.Ohf8ZAuyGz1cfpYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29684.png - small - - https://s.yimg.com/iu/api/res/1.2/cKm_w.Ohf8ZAuyGz1cfpYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29684.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28552 - 28552 - - Lorenzo Doss - Lorenzo - Doss - Lorenzo - Doss - - nfl.p.28552 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/JvV03R6Z4_L84gm2queKkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28552.png - small - - https://s.yimg.com/iu/api/res/1.2/JvV03R6Z4_L84gm2queKkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28552.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31295 - 31295 - - Donovan Olumba - Donovan - Olumba - Donovan - Olumba - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31295 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28444 - 28444 - - Senquez Golson - Senquez - Golson - Senquez - Golson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28444 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 40 - CB - - https://s.yimg.com/iu/api/res/1.2/nq0lzCsDHTFxJBmNDJeQ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28444.png - small - - https://s.yimg.com/iu/api/res/1.2/nq0lzCsDHTFxJBmNDJeQ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28444.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31091 - 31091 - - Taron Johnson - Taron - Johnson - Taron - Johnson - - nfl.p.31091 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/pLD4bFH_MFqs9DvR58alVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31091.png - small - - https://s.yimg.com/iu/api/res/1.2/pLD4bFH_MFqs9DvR58alVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31091.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31573 - 31573 - - Andre Chachere - Andre - Chachere - Andre - Chachere - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31573 - nfl.t.34 - Houston Texans - Hou - - 10 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28270 - 28270 - - Tyler Patmon - Tyler - Patmon - Tyler - Patmon - - nfl.p.28270 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/nKBGt9WOgou8XRYlwbW6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28270.1.png - small - - https://s.yimg.com/iu/api/res/1.2/nKBGt9WOgou8XRYlwbW6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28270.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30607 - 30607 - - Donatello Brown - Donatello - Brown - Donatello - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30607 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 44 - CB - - https://s.yimg.com/iu/api/res/1.2/_B7l3WHdbVaqXkgHkpYSFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30607.png - small - - https://s.yimg.com/iu/api/res/1.2/_B7l3WHdbVaqXkgHkpYSFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30607.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31603 - 31603 - - Levi Wallace - Levi - Wallace - Levi - Wallace - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31603 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 47 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25879 - 25879 - - Asa Jackson - Asa - Jackson - Asa - Jackson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25879 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/kGbUpBmFplj.wv77E8GMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25879.png - small - - https://s.yimg.com/iu/api/res/1.2/kGbUpBmFplj.wv77E8GMRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25879.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25833 - 25833 - - Brandon Boykin - Brandon - Boykin - Brandon - Boykin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25833 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/ESTVhhUSsV0UxselOIBreA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/25833.png - small - - https://s.yimg.com/iu/api/res/1.2/ESTVhhUSsV0UxselOIBreA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/25833.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31025 - 31025 - - Donte Jackson - Donte - Jackson - Donte - Jackson - - nfl.p.31025 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/KBZDiHGSsdXuM.Zu5U4DxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31025.png - small - - https://s.yimg.com/iu/api/res/1.2/KBZDiHGSsdXuM.Zu5U4DxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31025.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31270 - 31270 - - Quenton Meeks - Quenton - Meeks - Quenton - Meeks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31270 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31660 - 31660 - - Michael Joseph - Michael - Joseph - Michael - Joseph - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31660 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30415 - 30415 - - Arthur Maulet - Arthur - Maulet - Arthur - Maulet - - nfl.p.30415 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31550 - 31550 - - Aaron Davis - Aaron - Davis - Aaron - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31550 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31555 - 31555 - - Grant Haley - Grant - Haley - Grant - Haley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31555 - nfl.t.19 - New York Giants - NYG - - 9 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24508 - 24508 - - Sam Shields - Sam - Shields - Sam - Shields - - SUSP - Suspended - nfl.p.24508 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/mdg0XnJ1CIHWbNJAtGeApw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24508.png - small - - https://s.yimg.com/iu/api/res/1.2/mdg0XnJ1CIHWbNJAtGeApw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24508.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31211 - 31211 - - Greg Stroman - Greg - Stroman - Greg - Stroman - - nfl.p.31211 - nfl.t.28 - Washington Redskins - Was - - 4 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30335 - 30335 - - Jalen Myrick - Jalen - Myrick - Jalen - Myrick - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30335 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30156 - 30156 - - Sidney Jones - Sidney - Jones - Sidney - Jones - - nfl.p.30156 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31166 - 31166 - - Tremon Smith - Tremon - Smith - Tremon - Smith - - nfl.p.31166 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30093 - 30093 - - Jeff Richards - Jeff - Richards - Jeff - Richards - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30093 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31368 - 31368 - - Lashard Durr - Lashard - Durr - Lashard - Durr - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31368 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31607 - 31607 - - Rico Gafford - Rico - Gafford - Rico - Gafford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31607 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 40 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27833 - 27833 - - Lou Young III - Lou - Young III - Lou - Young III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27833 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/6iKrqI.Asm1wITLKm3g6rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27833.png - small - - https://s.yimg.com/iu/api/res/1.2/6iKrqI.Asm1wITLKm3g6rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27833.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29896 - 29896 - - Jeremiah McKinnon - Jeremiah - McKinnon - Jeremiah - McKinnon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29896 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 47 - CB - - https://s.yimg.com/iu/api/res/1.2/TWhDz5OkniExcmiqrvdwTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29896.png - small - - https://s.yimg.com/iu/api/res/1.2/TWhDz5OkniExcmiqrvdwTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29896.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26571 - 26571 - - Chris Lewis-Harris - Chris - Lewis-Harris - Chris - Lewis-Harris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26571 - nfl.t.19 - New York Giants - NYG - - 9 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/jsc.M5Ied_Uu4HA87nBiCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26571.1.png - small - - https://s.yimg.com/iu/api/res/1.2/jsc.M5Ied_Uu4HA87nBiCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26571.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29564 - 29564 - - Elie Bouka - Elie - Bouka - Elie - Bouka - - IR - Injured Reserve - undisclosed - nfl.p.29564 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/zvCD0Iy9jDirrAR_74EptA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29564.png - small - - https://s.yimg.com/iu/api/res/1.2/zvCD0Iy9jDirrAR_74EptA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29564.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29027 - 29027 - - Jonathon Mincy - Jonathon - Mincy - Jonathon - Mincy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29027 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31445 - 31445 - - Reggie Hall - Reggie - Hall - Reggie - Hall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31445 - nfl.t.20 - New York Jets - NYJ - - 11 - - - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31459 - 31459 - - Montrel Meander - Montrel - Meander - Montrel - Meander - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31459 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31706 - 31706 - - Josh Okonye - Josh - Okonye - Josh - Okonye - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31706 - nfl.t.8 - Detroit Lions - Det - - 6 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30265 - 30265 - - Corn Elder - Corn - Elder - Corn - Elder - - nfl.p.30265 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31756 - 31756 - - Juante Baldwin - Juante - Baldwin - Juante - Baldwin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31756 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24746 - 24746 - - Teddy Williams - Teddy - Williams - Teddy - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24746 - nfl.t.19 - New York Giants - NYG - - 9 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/7jGBBKkeo8Js1WrYAtTMNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24746.png - small - - https://s.yimg.com/iu/api/res/1.2/7jGBBKkeo8Js1WrYAtTMNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24746.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31630 - 31630 - - Amari Coleman - Amari - Coleman - Amari - Coleman - - IR - Injured Reserve - undisclosed - nfl.p.31630 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 44 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27254 - 27254 - - Terrell Sinkfield Jr. - Terrell - Sinkfield Jr. - Terrell - Sinkfield Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27254 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/L1BCWTfrEoVGfUu6jF0XaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27254.png - small - - https://s.yimg.com/iu/api/res/1.2/L1BCWTfrEoVGfUu6jF0XaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27254.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31671 - 31671 - - Tony Brown - Tony - Brown - Tony - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31671 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31634 - 31634 - - Mike Ford - Mike - Ford - Mike - Ford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31634 - nfl.t.8 - Detroit Lions - Det - - 6 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31764 - 31764 - - Sam Beal - Sam - Beal - Sam - Beal - - IR - Injured Reserve - shoulder - nfl.p.31764 - nfl.t.19 - New York Giants - NYG - - 9 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31703 - 31703 - - Mike Jones - Mike - Jones - Mike - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31703 - nfl.t.19 - New York Giants - NYG - - 9 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30646 - 30646 - - Torry McTyer - Torry - McTyer - Torry - McTyer - - nfl.p.30646 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29302 - 29302 - - Will Redmond - Will - Redmond - Will - Redmond - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29302 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/Sx_iVzuIs5gi1oTwOKFCYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29302.png - small - - https://s.yimg.com/iu/api/res/1.2/Sx_iVzuIs5gi1oTwOKFCYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29302.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30913 - 30913 - - Jarell Carter - Jarell - Carter - Jarell - Carter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30913 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31712 - 31712 - - John Franklin III - John - Franklin III - John - Franklin III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31712 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30286 - 30286 - - Brian Allen - Brian - Allen - Brian - Allen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30286 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/.PTrrwYky6kmaMKAjh2LzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30286.png - small - - https://s.yimg.com/iu/api/res/1.2/.PTrrwYky6kmaMKAjh2LzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30286.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30491 - 30491 - - Ryan Lewis - Ryan - Lewis - Ryan - Lewis - - nfl.p.30491 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/QGPcHayoJ3eK2ZP17gCXMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30491.png - small - - https://s.yimg.com/iu/api/res/1.2/QGPcHayoJ3eK2ZP17gCXMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30491.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29749 - 29749 - - Herb Waters - Herb - Waters - Herb - Waters - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29749 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/H1QXT3kujAG74.IooEQUfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29749.png - small - - https://s.yimg.com/iu/api/res/1.2/H1QXT3kujAG74.IooEQUfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29749.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31690 - 31690 - - Marko Myers - Marko - Myers - Marko - Myers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31690 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30549 - 30549 - - Channing Stribling - Channing - Stribling - Channing - Stribling - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30549 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 42 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28637 - 28637 - - Akeem King - Akeem - King - Akeem - King - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28637 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/yg2x2tsPqZEeKdJjEM9JWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28637.png - small - - https://s.yimg.com/iu/api/res/1.2/yg2x2tsPqZEeKdJjEM9JWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28637.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31121 - 31121 - - Davontae Harris - Davontae - Harris - Davontae - Harris - - IR - Injured Reserve - knee - nfl.p.31121 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/fgGW..K9liUAFwVDo7N4IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31121.png - small - - https://s.yimg.com/iu/api/res/1.2/fgGW..K9liUAFwVDo7N4IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31121.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31375 - 31375 - - Henre' Toliver - Henre' - Toliver - Henre' - Toliver - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31375 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 42 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29407 - 29407 - - Trey Caldwell - Trey - Caldwell - Trey - Caldwell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29407 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/CmljHXnkXQkUFfb0FqfhEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29407.1.png - small - - https://s.yimg.com/iu/api/res/1.2/CmljHXnkXQkUFfb0FqfhEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29407.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29483 - 29483 - - Prince Charles Iworah - Prince Charles - Iworah - Prince Charles - Iworah - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29483 - nfl.t.28 - Washington Redskins - Was - - 4 - - 47 - CB - - https://s.yimg.com/iu/api/res/1.2/5FsQWAqdpg3qvYJB8hzsUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29483.png - small - - https://s.yimg.com/iu/api/res/1.2/5FsQWAqdpg3qvYJB8hzsUw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29483.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31080 - 31080 - - Nick Nelson - Nick - Nelson - Nick - Nelson - - Q - Questionable - nfl.p.31080 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/CKyV8.4MigcGMPGpx.9tWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31080.png - small - - https://s.yimg.com/iu/api/res/1.2/CKyV8.4MigcGMPGpx.9tWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/31080.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28959 - 28959 - - Robertson Daniel - Robertson - Daniel - Robertson - Daniel - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28959 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/Tqd1uQnJFfCm3iI.bMiRYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28959.png - small - - https://s.yimg.com/iu/api/res/1.2/Tqd1uQnJFfCm3iI.bMiRYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/28959.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31386 - 31386 - - Emmanuel Moseley - Emmanuel - Moseley - Emmanuel - Moseley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31386 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30311 - 30311 - - Jeremy Clark - Jeremy - Clark - Jeremy - Clark - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30311 - nfl.t.20 - New York Jets - NYJ - - 11 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31028 - 31028 - - Isaiah Oliver - Isaiah - Oliver - Isaiah - Oliver - - Q - Questionable - nfl.p.31028 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/wqxxV5V44denS.jj6RMJrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31028.png - small - - https://s.yimg.com/iu/api/res/1.2/wqxxV5V44denS.jj6RMJrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31028.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31261 - 31261 - - Dee Delaney - Dee - Delaney - Dee - Delaney - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31261 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31786 - 31786 - - Mike Basile - Mike - Basile - Mike - Basile - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31786 - nfl.t.19 - New York Giants - NYG - - 9 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30664 - 30664 - - D.J. Killings - D.J. - Killings - D.J. - Killings - - IR - Injured Reserve - undisclosed - nfl.p.30664 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/_QNo6LBg0bgFN1_O2K909g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30664.png - small - - https://s.yimg.com/iu/api/res/1.2/_QNo6LBg0bgFN1_O2K909g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30664.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31402 - 31402 - - Danny Johnson - Danny - Johnson - Danny - Johnson - - nfl.p.31402 - nfl.t.28 - Washington Redskins - Was - - 4 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29308 - 29308 - - KeiVarae Russell - KeiVarae - Russell - KeiVarae - Russell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29308 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/N.0Yoqp5UfeN0AU.1iiVMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29308.1.png - small - - https://s.yimg.com/iu/api/res/1.2/N.0Yoqp5UfeN0AU.1iiVMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29308.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29808 - 29808 - - Duke Thomas - Duke - Thomas - Duke - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29808 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/ChXaLH_PgKJxdffG9sSRlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29808.png - small - - https://s.yimg.com/iu/api/res/1.2/ChXaLH_PgKJxdffG9sSRlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29808.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31293 - 31293 - - Charvarius Ward - Charvarius - Ward - Charvarius - Ward - - nfl.p.31293 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31358 - 31358 - - Joseph Putu - Joseph - Putu - Joseph - Putu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31358 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31023 - 31023 - - M.J. Stewart - M.J. - Stewart - M.J. - Stewart - - Q - Questionable - nfl.p.31023 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/4dtYV9tTkiLLxhAMMI6kwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31023.png - small - - https://s.yimg.com/iu/api/res/1.2/4dtYV9tTkiLLxhAMMI6kwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31023.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31755 - 31755 - - Jackson Porter - Jackson - Porter - Jackson - Porter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31755 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31069 - 31069 - - Isaac Yiadom - Isaac - Yiadom - Isaac - Yiadom - - nfl.p.31069 - nfl.t.7 - Denver Broncos - Den - - 10 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/NpFWqpRLIX9TEU2EmUnMLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31069.png - small - - https://s.yimg.com/iu/api/res/1.2/NpFWqpRLIX9TEU2EmUnMLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31069.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31262 - 31262 - - Tre Herndon III - Tre - Herndon III - Tre - Herndon III - - nfl.p.31262 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30716 - 30716 - - Jomal Wiltz - Jomal - Wiltz - Jomal - Wiltz - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30716 - nfl.t.17 - New England Patriots - NE - - 11 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30710 - 30710 - - Randall Goforth - Randall - Goforth - Randall - Goforth - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30710 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29916 - 29916 - - Taveze Calhoun - Taveze - Calhoun - Taveze - Calhoun - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29916 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 40 - CB - - https://s.yimg.com/iu/api/res/1.2/MuxKFk.1ssKtwVPOXLAGNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29916.png - small - - https://s.yimg.com/iu/api/res/1.2/MuxKFk.1ssKtwVPOXLAGNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29916.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31524 - 31524 - - Malik Reaves - Malik - Reaves - Malik - Reaves - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31524 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30495 - 30495 - - Sojourn Shelton - Sojourn - Shelton - Sojourn - Shelton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30495 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/BZu19C5dTxlez67aark.Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30495.png - small - - https://s.yimg.com/iu/api/res/1.2/BZu19C5dTxlez67aark.Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/30495.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31650 - 31650 - - J.C. Jackson - J.C. - Jackson - J.C. - Jackson - - nfl.p.31650 - nfl.t.17 - New England Patriots - NE - - 11 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30137 - 30137 - - Gareon Conley - Gareon - Conley - Gareon - Conley - - nfl.p.30137 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/uhBL1R1O9.Q0fMhIb8C3pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30137.png - small - - https://s.yimg.com/iu/api/res/1.2/uhBL1R1O9.Q0fMhIb8C3pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/30137.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30569 - 30569 - - Xavier Coleman - Xavier - Coleman - Xavier - Coleman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30569 - nfl.t.20 - New York Jets - NYJ - - 11 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27676 - 27676 - - Bene Benwikere - Bene - Benwikere - Bene - Benwikere - - nfl.p.27676 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/U.X2OqGZvLmsPgbw_i2I6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27676.png - small - - https://s.yimg.com/iu/api/res/1.2/U.X2OqGZvLmsPgbw_i2I6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27676.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31672 - 31672 - - B.J. Clay - B.J. - Clay - B.J. - Clay - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31672 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31789 - 31789 - - Bryce Canady - Bryce - Canady - Bryce - Canady - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31789 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31370 - 31370 - - Robert Jackson - Robert - Jackson - Robert - Jackson - - IR - Injured Reserve - undisclosed - nfl.p.31370 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28656 - 28656 - - Denzel Rice - Denzel - Rice - Denzel - Rice - - nfl.p.28656 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/sJWOuEQueSWuBNbQR0Miww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28656.png - small - - https://s.yimg.com/iu/api/res/1.2/sJWOuEQueSWuBNbQR0Miww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28656.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30108 - 30108 - - Bradley Sylve - Bradley - Sylve - Bradley - Sylve - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30108 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31321 - 31321 - - Tavierre Thomas - Tavierre - Thomas - Tavierre - Thomas - - nfl.p.31321 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31498 - 31498 - - Arrion Springs - Arrion - Springs - Arrion - Springs - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31498 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31658 - 31658 - - Rashard Fant - Rashard - Fant - Rashard - Fant - - undisclosed - nfl.p.31658 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31600 - 31600 - - Ryan Carter - Ryan - Carter - Ryan - Carter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31600 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 46 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27123 - 27123 - - Sheldon Price - Sheldon - Price - Sheldon - Price - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27123 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/DvKCwOphIuL8KtiG0QzX2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27123.png - small - - https://s.yimg.com/iu/api/res/1.2/DvKCwOphIuL8KtiG0QzX2Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/27123.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30207 - 30207 - - Cameron Sutton - Cameron - Sutton - Cameron - Sutton - - nfl.p.30207 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/TTzuFHlC5pWNwqzcbfx67Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30207.png - small - - https://s.yimg.com/iu/api/res/1.2/TTzuFHlC5pWNwqzcbfx67Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/30207.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30695 - 30695 - - Raysean Pringle - Raysean - Pringle - Raysean - Pringle - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30695 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/_gbAesz77aBvww7ps.uzwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30695.png - small - - https://s.yimg.com/iu/api/res/1.2/_gbAesz77aBvww7ps.uzwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30695.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31406 - 31406 - - Ranthony Texada - Ranthony - Texada - Ranthony - Texada - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31406 - nfl.t.28 - Washington Redskins - Was - - 4 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31451 - 31451 - - Elijah Campbell - Elijah - Campbell - Elijah - Campbell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31451 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30974 - 30974 - - Denzel Ward - Denzel - Ward - Denzel - Ward - - Q - Questionable - nfl.p.30974 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/x_9vj3Tk.xNrRUri2wF.gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30974.png - small - - https://s.yimg.com/iu/api/res/1.2/x_9vj3Tk.xNrRUri2wF.gQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30974.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.29723 - 29723 - - Makinton Dorleant - Makinton - Dorleant - Makinton - Dorleant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29723 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/OJYkYzBhG1YL5x_E4s1jvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29723.png - small - - https://s.yimg.com/iu/api/res/1.2/OJYkYzBhG1YL5x_E4s1jvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29723.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29956 - 29956 - - Kenneth Durden - Kenneth - Durden - Kenneth - Durden - - nfl.p.29956 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/fflKz3HllkC7MABfKFA26Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29956.png - small - - https://s.yimg.com/iu/api/res/1.2/fflKz3HllkC7MABfKFA26Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29956.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30329 - 30329 - - Marquez White - Marquez - White - Marquez - White - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30329 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/uXAuSVLBl0F6t.XMIbSPZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30329.png - small - - https://s.yimg.com/iu/api/res/1.2/uXAuSVLBl0F6t.XMIbSPZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30329.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29924 - 29924 - - Kevin Peterson - Kevin - Peterson - Kevin - Peterson - - IR - Injured Reserve - torn ACL - nfl.p.29924 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/EN1SMviVhLAq_izw1vDIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29924.png - small - - https://s.yimg.com/iu/api/res/1.2/EN1SMviVhLAq_izw1vDIPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29924.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31610 - 31610 - - Ryan McKinley - Ryan - McKinley - Ryan - McKinley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31610 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30846 - 30846 - - Jaylen Hill - Jaylen - Hill - Jaylen - Hill - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.30846 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/ontw412.rmGSYyUGT3.V0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30846.png - small - - https://s.yimg.com/iu/api/res/1.2/ontw412.rmGSYyUGT3.V0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30846.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31294 - 31294 - - Kam Kelly - Kam - Kelly - Kam - Kelly - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31294 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30623 - 30623 - - Breon Borders - Breon - Borders - Breon - Borders - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30623 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30683 - 30683 - - Ashton Lampkin - Ashton - Lampkin - Ashton - Lampkin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30683 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 6 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31112 - 31112 - - D.J. Reed Jr. - D.J. - Reed Jr. - D.J. - Reed Jr. - - nfl.p.31112 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/e1.ldYe6XVBvXKUP0Y5NaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31112.png - small - - https://s.yimg.com/iu/api/res/1.2/e1.ldYe6XVBvXKUP0Y5NaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31112.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30472 - 30472 - - Maurice Fleming - Maurice - Fleming - Maurice - Fleming - - IR - Injured Reserve - undisclosed - nfl.p.30472 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27989 - 27989 - - Sammy Seamster - Sammy - Seamster - Sammy - Seamster - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27989 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/B3A2zXG3msxSR0wQ3WW5Tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27989.png - small - - https://s.yimg.com/iu/api/res/1.2/B3A2zXG3msxSR0wQ3WW5Tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27989.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31000 - 31000 - - Mike Hughes - Mike - Hughes - Mike - Hughes - - nfl.p.31000 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/JsJbpjMca5yR5RDE6drZRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31000.png - small - - https://s.yimg.com/iu/api/res/1.2/JsJbpjMca5yR5RDE6drZRQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31000.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28136 - 28136 - - Dashaun Phillips - Dashaun - Phillips - Dashaun - Phillips - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28136 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/jTzHRN90gyAURDxnXNPgJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28136.png - small - - https://s.yimg.com/iu/api/res/1.2/jTzHRN90gyAURDxnXNPgJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28136.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29706 - 29706 - - Darius Hillary - Darius - Hillary - Darius - Hillary - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29706 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/.Bvjuj9twLJg9OhdWpSB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29706.1.png - small - - https://s.yimg.com/iu/api/res/1.2/.Bvjuj9twLJg9OhdWpSB8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29706.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30443 - 30443 - - Horace Richardson - Horace - Richardson - Horace - Richardson - - IR - Injured Reserve - nfl.p.30443 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28715 - 28715 - - Trovon Reed - Trovon - Reed - Trovon - Reed - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28715 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/uxeOMIPh6zAk_dIjBSyW3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28715.png - small - - https://s.yimg.com/iu/api/res/1.2/uxeOMIPh6zAk_dIjBSyW3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28715.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30477 - 30477 - - Greg Mabin - Greg - Mabin - Greg - Mabin - - nfl.p.30477 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31033 - 31033 - - Carlton Davis - Carlton - Davis - Carlton - Davis - - nfl.p.31033 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/u3oV3aYuxgpbkWDfno13ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31033.png - small - - https://s.yimg.com/iu/api/res/1.2/u3oV3aYuxgpbkWDfno13ow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31033.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31418 - 31418 - - Trey Johnson - Trey - Johnson - Trey - Johnson - - IR - Injured Reserve - shoulder - nfl.p.31418 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30348 - 30348 - - Joshua Holsey - Joshua - Holsey - Joshua - Holsey - - O - Out - nfl.p.30348 - nfl.t.28 - Washington Redskins - Was - - 4 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31589 - 31589 - - Chandon Sullivan - Chandon - Sullivan - Chandon - Sullivan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31589 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30794 - 30794 - - Dee Virgin - Dee - Virgin - Dee - Virgin - - nfl.p.30794 - nfl.t.8 - Detroit Lions - Det - - 6 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30859 - 30859 - - Bryce Jones - Bryce - Jones - Bryce - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30859 - nfl.t.34 - Houston Texans - Hou - - 10 - - 44 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30776 - 30776 - - Josh Thornton - Josh - Thornton - Josh - Thornton - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30776 - nfl.t.34 - Houston Texans - Hou - - 10 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31509 - 31509 - - Craig James - Craig - James - Craig - James - - IR - Injured Reserve - undisclosed - nfl.p.31509 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28639 - 28639 - - Taurean Nixon - Taurean - Nixon - Taurean - Nixon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28639 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/jsdDmsChgaI7BWfflW8AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28639.png - small - - https://s.yimg.com/iu/api/res/1.2/jsdDmsChgaI7BWfflW8AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28639.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31385 - 31385 - - Tarvarus McFadden - Tarvarus - McFadden - Tarvarus - McFadden - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31385 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31152 - 31152 - - Christian Campbell - Christian - Campbell - Christian - Campbell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31152 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30988 - 30988 - - Jaire Alexander - Jaire - Alexander - Jaire - Alexander - - nfl.p.30988 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/dnz5twArrd25VA7n31_UmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30988.png - small - - https://s.yimg.com/iu/api/res/1.2/dnz5twArrd25VA7n31_UmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30988.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31676 - 31676 - - Brandon Facyson - Brandon - Facyson - Brandon - Facyson - - nfl.p.31676 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31779 - 31779 - - Christian Boutte - Christian - Boutte - Christian - Boutte - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31779 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 40 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30239 - 30239 - - Howard Wilson - Howard - Wilson - Howard - Wilson - - IR - Injured Reserve - torn left patellar tendon - nfl.p.30239 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29487 - 29487 - - Kalan Reed - Kalan - Reed - Kalan - Reed - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.29487 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/CbWXa9uLJ75Yu1BkWU5bww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29487.png - small - - https://s.yimg.com/iu/api/res/1.2/CbWXa9uLJ75Yu1BkWU5bww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29487.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30821 - 30821 - - Marcus Rios - Marcus - Rios - Marcus - Rios - - IR - Injured Reserve - undisclosed - nfl.p.30821 - nfl.t.7 - Denver Broncos - Den - - 10 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31553 - 31553 - - Bryon Fields Jr. - Bryon - Fields Jr. - Bryon - Fields Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31553 - nfl.t.19 - New York Giants - NYG - - 9 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29021 - 29021 - - Tim Scott - Tim - Scott - Tim - Scott - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29021 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 45 - CB - - https://s.yimg.com/iu/api/res/1.2/RrB_08MapM6_dr64IKV0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29021.1.png - small - - https://s.yimg.com/iu/api/res/1.2/RrB_08MapM6_dr64IKV0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29021.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28509 - 28509 - - Doran Grant - Doran - Grant - Doran - Grant - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28509 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/hib_.oWKokPeUhNlZy8Edw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28509.png - small - - https://s.yimg.com/iu/api/res/1.2/hib_.oWKokPeUhNlZy8Edw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28509.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31534 - 31534 - - Jalen Davis - Jalen - Davis - Jalen - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31534 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 1 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31088 - 31088 - - Anthony Averett - Anthony - Averett - Anthony - Averett - - nfl.p.31088 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/xRIyRsUISqYZmq3HPDlyZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31088.png - small - - https://s.yimg.com/iu/api/res/1.2/xRIyRsUISqYZmq3HPDlyZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31088.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31545 - 31545 - - Johnathan Alston - Johnathan - Alston - Johnathan - Alston - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31545 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31314 - 31314 - - Deatrick Nichols - Deatrick - Nichols - Deatrick - Nichols - - nfl.p.31314 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31675 - 31675 - - Marcus Edmond - Marcus - Edmond - Marcus - Edmond - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31675 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31192 - 31192 - - Jermaine Kelly Jr. - Jermaine - Kelly Jr. - Jermaine - Kelly Jr. - - IR - Injured Reserve - undisclosed - nfl.p.31192 - nfl.t.34 - Houston Texans - Hou - - 10 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31026 - 31026 - - Duke Dawson - Duke - Dawson - Duke - Dawson - - Q - Questionable - nfl.p.31026 - nfl.t.17 - New England Patriots - NE - - 11 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/ncojEzn3HjRLJCAFfxn4bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31026.png - small - - https://s.yimg.com/iu/api/res/1.2/ncojEzn3HjRLJCAFfxn4bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31026.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31149 - 31149 - - Parry Nickerson - Parry - Nickerson - Parry - Nickerson - - Q - Questionable - nfl.p.31149 - nfl.t.20 - New York Jets - NYJ - - 11 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31631 - 31631 - - Antwuan Davis - Antwuan - Davis - Antwuan - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31631 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 49 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29936 - 29936 - - Bryson Keeton - Bryson - Keeton - Bryson - Keeton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29936 - nfl.t.20 - New York Jets - NYJ - - 11 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/x1K0hWN.wMY.kZ0v3nAM4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29936.1.png - small - - https://s.yimg.com/iu/api/res/1.2/x1K0hWN.wMY.kZ0v3nAM4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29936.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30532 - 30532 - - Reggie Porter - Reggie - Porter - Reggie - Porter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30532 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26120 - 26120 - - Terrance Parks - Terrance - Parks - Terrance - Parks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26120 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 46 - CB - - https://s.yimg.com/iu/api/res/1.2/oySZo8vrUgdR6bL6sAX6yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/26120.3.png - small - - https://s.yimg.com/iu/api/res/1.2/oySZo8vrUgdR6bL6sAX6yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/26120.3.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29848 - 29848 - - Michael Hunter - Michael - Hunter - Michael - Hunter - - Q - Questionable - nfl.p.29848 - nfl.t.7 - Denver Broncos - Den - - 10 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/arEKFr4m2xR3EQa8JtEqmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29848.png - small - - https://s.yimg.com/iu/api/res/1.2/arEKFr4m2xR3EQa8JtEqmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29848.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31015 - 31015 - - Josh Jackson - Josh - Jackson - Josh - Jackson - - nfl.p.31015 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/xSGC0LjTeVcmE7bhuNBBSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31015.png - small - - https://s.yimg.com/iu/api/res/1.2/xSGC0LjTeVcmE7bhuNBBSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31015.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31762 - 31762 - - Adonis Alexander - Adonis - Alexander - Adonis - Alexander - - nfl.p.31762 - nfl.t.28 - Washington Redskins - Was - - 4 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30381 - 30381 - - Cole Luke - Cole - Luke - Cole - Luke - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30381 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26693 - 26693 - - Blidi Wreh-Wilson - Blidi - Wreh-Wilson - Blidi - Wreh-Wilson - - Q - Questionable - nfl.p.26693 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/6Fg8i94Gp0G1WqGOyLQvWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26693.png - small - - https://s.yimg.com/iu/api/res/1.2/6Fg8i94Gp0G1WqGOyLQvWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26693.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31297 - 31297 - - Elijah Battle - Elijah - Battle - Elijah - Battle - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31297 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 7 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31409 - 31409 - - Curtis Mikell Jr. - Curtis - Mikell Jr. - Curtis - Mikell Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31409 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29090 - 29090 - - De'Vante Bausby - De'Vante - Bausby - De'Vante - Bausby - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29090 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/k9S_etXNymz6mFVr5PW5yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29090.png - small - - https://s.yimg.com/iu/api/res/1.2/k9S_etXNymz6mFVr5PW5yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29090.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30620 - 30620 - - David Rivers III - David - Rivers III - David - Rivers III - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30620 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27586 - 27586 - - Stanley Jean-Baptiste - Stanley - Jean-Baptiste - Stanley - Jean-Baptiste - - IR - Injured Reserve - undisclosed - nfl.p.27586 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/QOu2deu9hsiGxh.2agegPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27586.png - small - - https://s.yimg.com/iu/api/res/1.2/QOu2deu9hsiGxh.2agegPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27586.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31233 - 31233 - - Holton Hill - Holton - Hill - Holton - Hill - - nfl.p.31233 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31591 - 31591 - - Jordan Thomas - Jordan - Thomas - Jordan - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31591 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 48 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27725 - 27725 - - Demetri Goodson - Demetri - Goodson - Demetri - Goodson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27725 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/4.pRnM3Qz43z6kRN50ChDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27725.png - small - - https://s.yimg.com/iu/api/res/1.2/4.pRnM3Qz43z6kRN50ChDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27725.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25776 - 25776 - - Josh Robinson - Josh - Robinson - Josh - Robinson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25776 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/HdTZVQy3FNv5U61Zs3qayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25776.png - small - - https://s.yimg.com/iu/api/res/1.2/HdTZVQy3FNv5U61Zs3qayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25776.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29338 - 29338 - - Tavon Young - Tavon - Young - Tavon - Young - - nfl.p.29338 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/gaRtg4bCleq90TWYgCc9cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29338.png - small - - https://s.yimg.com/iu/api/res/1.2/gaRtg4bCleq90TWYgCc9cg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29338.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27698 - 27698 - - Keith Reaser - Keith - Reaser - Keith - Reaser - - IR - Injured Reserve - undisclosed - nfl.p.27698 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/q7mRZXRLdSafkPqecn79Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27698.png - small - - https://s.yimg.com/iu/api/res/1.2/q7mRZXRLdSafkPqecn79Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27698.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25994 - 25994 - - Deshawn Shead - Deshawn - Shead - Deshawn - Shead - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25994 - nfl.t.8 - Detroit Lions - Det - - 6 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/2_xOlKCDGHkCmlKlKNpkRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25994.png - small - - https://s.yimg.com/iu/api/res/1.2/2_xOlKCDGHkCmlKlKNpkRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25994.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29771 - 29771 - - Adairius Barnes - Adairius - Barnes - Adairius - Barnes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29771 - nfl.t.8 - Detroit Lions - Det - - 6 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/3t.TXJfXu_VdEvR2UHiBeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29771.png - small - - https://s.yimg.com/iu/api/res/1.2/3t.TXJfXu_VdEvR2UHiBeQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29771.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27553 - 27553 - - Jason Verrett - Jason - Verrett - Jason - Verrett - - IR - Injured Reserve - torn Achilles tendon - nfl.p.27553 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/XBjZTIKBEJ9tgsY43f7rww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/27553.png - small - - https://s.yimg.com/iu/api/res/1.2/XBjZTIKBEJ9tgsY43f7rww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/27553.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26691 - 26691 - - Leon McFadden - Leon - McFadden - Leon - McFadden - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26691 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/L6fYkdgd1fNqUIMawJlifQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26691.png - small - - https://s.yimg.com/iu/api/res/1.2/L6fYkdgd1fNqUIMawJlifQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/26691.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28371 - 28371 - - Delvin Breaux Sr. - Delvin - Breaux Sr. - Delvin - Breaux Sr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28371 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 40 - CB - - https://s.yimg.com/iu/api/res/1.2/WhNNDUXlmXZbNpEAnb4ijg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28371.png - small - - https://s.yimg.com/iu/api/res/1.2/WhNNDUXlmXZbNpEAnb4ijg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28371.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28544 - 28544 - - Tony Lippett - Tony - Lippett - Tony - Lippett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28544 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/vLXaDoIGVbsSYyZqwRKwGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28544.1.png - small - - https://s.yimg.com/iu/api/res/1.2/vLXaDoIGVbsSYyZqwRKwGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28544.1.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29375 - 29375 - - Zack Sanchez - Zack - Sanchez - Zack - Sanchez - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29375 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/vIZHVpU3HBL4Jbah8APMUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29375.png - small - - https://s.yimg.com/iu/api/res/1.2/vIZHVpU3HBL4Jbah8APMUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29375.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25401 - 25401 - - Sterling Moore - Sterling - Moore - Sterling - Moore - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25401 - nfl.t.8 - Detroit Lions - Det - - 6 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/_E9mkXP2xWj6NWrR0DE_DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/25401.png - small - - https://s.yimg.com/iu/api/res/1.2/_E9mkXP2xWj6NWrR0DE_DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/25401.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25872 - 25872 - - Corey White - Corey - White - Corey - White - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25872 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/LvJS1pkvY0BlGRBVpItLJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25872.1.png - small - - https://s.yimg.com/iu/api/res/1.2/LvJS1pkvY0BlGRBVpItLJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25872.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29412 - 29412 - - D.J. White - D.J. - White - D.J. - White - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29412 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/iPlSkaVdwlOUhMqbz8dKjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29412.png - small - - https://s.yimg.com/iu/api/res/1.2/iPlSkaVdwlOUhMqbz8dKjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29412.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29361 - 29361 - - Deiondre' Hall - Deiondre' - Hall - Deiondre' - Hall - - SUSP - Suspended - nfl.p.29361 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/ZMr0805DkBkd6dP9VyfHpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29361.png - small - - https://s.yimg.com/iu/api/res/1.2/ZMr0805DkBkd6dP9VyfHpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29361.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28925 - 28925 - - LaDarius Gunter - LaDarius - Gunter - LaDarius - Gunter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28925 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/j2m1e9R4zotgtGzIsfo.FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28925.png - small - - https://s.yimg.com/iu/api/res/1.2/j2m1e9R4zotgtGzIsfo.FQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28925.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29326 - 29326 - - Brandon Williams - Brandon - Williams - Brandon - Williams - - Q - Questionable - nfl.p.29326 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/FBkxbbVT7lru1lFzYlakNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29326.png - small - - https://s.yimg.com/iu/api/res/1.2/FBkxbbVT7lru1lFzYlakNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29326.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26737 - 26737 - - B.W. Webb - B.W. - Webb - B.W. - Webb - - nfl.p.26737 - nfl.t.19 - New York Giants - NYG - - 9 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/CSmVxjqDn8UpBXQ5djIw5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26737.png - small - - https://s.yimg.com/iu/api/res/1.2/CSmVxjqDn8UpBXQ5djIw5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26737.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29814 - 29814 - - DeAndre Elliott - DeAndre - Elliott - DeAndre - Elliott - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29814 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/pBt88xilPCQJpccscTUFEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29814.png - small - - https://s.yimg.com/iu/api/res/1.2/pBt88xilPCQJpccscTUFEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29814.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28471 - 28471 - - Craig Mager - Craig - Mager - Craig - Mager - - nfl.p.28471 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/i_0kvCUAUtOOFKa9QJnj3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28471.png - small - - https://s.yimg.com/iu/api/res/1.2/i_0kvCUAUtOOFKa9QJnj3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28471.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28237 - 28237 - - Robert Nelson Jr. - Robert - Nelson Jr. - Robert - Nelson Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28237 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/tTPlRxa95GLZg6sifswL1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28237.1.png - small - - https://s.yimg.com/iu/api/res/1.2/tTPlRxa95GLZg6sifswL1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28237.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29667 - 29667 - - Tracy Howard - Tracy - Howard - Tracy - Howard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29667 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/BLWGeIDdwKrY8jQvREwuLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29667.1.png - small - - https://s.yimg.com/iu/api/res/1.2/BLWGeIDdwKrY8jQvREwuLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29667.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30811 - 30811 - - Justin Hardee - Justin - Hardee - Justin - Hardee - - nfl.p.30811 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 34 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/NDVSGt1aTBAHyLRUn0bSQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30811.png - small - - https://s.yimg.com/iu/api/res/1.2/NDVSGt1aTBAHyLRUn0bSQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30811.png - 0 - DP - - DB - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26043 - 26043 - - Leonard Johnson - Leonard - Johnson - Leonard - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26043 - nfl.t.19 - New York Giants - NYG - - 9 - - 28 - DB,CB - - https://s.yimg.com/iu/api/res/1.2/V3sMC_Nl2QU3oqBiB4K3YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20140830/26043.png - small - - https://s.yimg.com/iu/api/res/1.2/V3sMC_Nl2QU3oqBiB4K3YQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20140830/26043.png - 0 - DP - - DB - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30787 - 30787 - - Lewis Neal - Lewis - Neal - Lewis - Neal - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30787 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 66 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/sx3VvV2HZ_i0rd2ywxkfFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30787.png - small - - https://s.yimg.com/iu/api/res/1.2/sx3VvV2HZ_i0rd2ywxkfFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30787.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29381 - 29381 - - Quinton Jefferson - Quinton - Jefferson - Quinton - Jefferson - - nfl.p.29381 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 99 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/36mHzjSqKyTmVoaH4L_8Bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29381.png - small - - https://s.yimg.com/iu/api/res/1.2/36mHzjSqKyTmVoaH4L_8Bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29381.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29028 - 29028 - - Richard Ash - Richard - Ash - Richard - Ash - - NA - Inactive: Coach's Decision or Not on Roster - knee - nfl.p.29028 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 93 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/CJ.0M76Bk0FGPmzVe0bjWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29028.png - small - - https://s.yimg.com/iu/api/res/1.2/CJ.0M76Bk0FGPmzVe0bjWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29028.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.23995 - 23995 - - Kareem Jackson - Kareem - Jackson - Kareem - Jackson - - nfl.p.23995 - nfl.t.34 - Houston Texans - Hou - - 10 - - 25 - S,CB - - https://s.yimg.com/iu/api/res/1.2/pcY8G4qQrlNaGavKf.OCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23995.png - small - - https://s.yimg.com/iu/api/res/1.2/pcY8G4qQrlNaGavKf.OCTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23995.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28415 - 28415 - - Byron Jones - Byron - Jones - Byron - Jones - - nfl.p.28415 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 31 - S,CB - - https://s.yimg.com/iu/api/res/1.2/CzmmrNVOlXN7Og8ae57IFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28415.png - small - - https://s.yimg.com/iu/api/res/1.2/CzmmrNVOlXN7Og8ae57IFQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28415.png - 0 - DP - - S - CB - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.26676 - 26676 - - Margus Hunt - Margus - Hunt - Margus - Hunt - - nfl.p.26676 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 92 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/qZhqsNz7XNPB8wuxouvYHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26676.png - small - - https://s.yimg.com/iu/api/res/1.2/qZhqsNz7XNPB8wuxouvYHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26676.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28266 - 28266 - - Denico Autry - Denico - Autry - Denico - Autry - - Q - Questionable - nfl.p.28266 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 96 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/LDoZaLxDVB0JnyI5ZQ.R.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28266.png - small - - https://s.yimg.com/iu/api/res/1.2/LDoZaLxDVB0JnyI5ZQ.R.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28266.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28605 - 28605 - - Rakeem Nunez-Roches - Rakeem - Nunez-Roches - Rakeem - Nunez-Roches - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28605 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 55 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/8vKGNKc5BXQYwTCYToq2dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28605.1.png - small - - https://s.yimg.com/iu/api/res/1.2/8vKGNKc5BXQYwTCYToq2dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28605.1.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24818 - 24818 - - Cameron Heyward - Cameron - Heyward - Cameron - Heyward - - nfl.p.24818 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 97 - DT,DE - - https://s.yimg.com/iu/api/res/1.2/S8V1kNkYS2J1lz8IJQzcCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24818.png - small - - https://s.yimg.com/iu/api/res/1.2/S8V1kNkYS2J1lz8IJQzcCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24818.png - 0 - DP - - DT - DE - - - - - - - - - - - - - week - 1 - 14 - 0 - - - - 380.p.30768 - 30768 - - Tion Green - Tion - Green - Tion - Green - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30768 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 37 - RB - - https://s.yimg.com/iu/api/res/1.2/wfSJRwuH8EK.canqK9LuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30768.png - small - - https://s.yimg.com/iu/api/res/1.2/wfSJRwuH8EK.canqK9LuPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30768.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28432 - 28432 - - Hau'oli Kikaha - Hau'oli - Kikaha - Hau'oli - Kikaha - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28432 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 44 - DE - - https://s.yimg.com/iu/api/res/1.2/8SVZYp94jXFJT_TIrblyaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28432.png - small - - https://s.yimg.com/iu/api/res/1.2/8SVZYp94jXFJT_TIrblyaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28432.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28439 - 28439 - - Nate Orchard - Nate - Orchard - Nate - Orchard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28439 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 44 - DE - - https://s.yimg.com/iu/api/res/1.2/UhfhWEQbnNAerXFiuQhu2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28439.1.png - small - - https://s.yimg.com/iu/api/res/1.2/UhfhWEQbnNAerXFiuQhu2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28439.1.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9282 - 9282 - - Robert Ayers Jr. - Robert - Ayers Jr. - Robert - Ayers Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9282 - nfl.t.8 - Detroit Lions - Det - - 6 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/lQOOPyMODFDGfGaoyOsekw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9282.png - small - - https://s.yimg.com/iu/api/res/1.2/lQOOPyMODFDGfGaoyOsekw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9282.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30114 - 30114 - - Myles Garrett - Myles - Garrett - Myles - Garrett - - nfl.p.30114 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/tuuvLFaNgrsAUu9Xosv94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30114.png - small - - https://s.yimg.com/iu/api/res/1.2/tuuvLFaNgrsAUu9Xosv94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30114.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 29 - 0 - - - - 380.p.28423 - 28423 - - Mario Edwards Jr. - Mario - Edwards Jr. - Mario - Edwards Jr. - - nfl.p.28423 - nfl.t.19 - New York Giants - NYG - - 9 - - 99 - DE - - https://s.yimg.com/iu/api/res/1.2/gTjKYBYec.D2c3bxhJUnoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28423.png - small - - https://s.yimg.com/iu/api/res/1.2/gTjKYBYec.D2c3bxhJUnoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/28423.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27763 - 27763 - - Shelby Harris - Shelby - Harris - Shelby - Harris - - nfl.p.27763 - nfl.t.7 - Denver Broncos - Den - - 10 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/lYARd6kotuHgCQUCXkpHfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27763.1.png - small - - https://s.yimg.com/iu/api/res/1.2/lYARd6kotuHgCQUCXkpHfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27763.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25147 - 25147 - - Mario Addison - Mario - Addison - Mario - Addison - - nfl.p.25147 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/V.IFyHsRqvluSKfBdKwrnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25147.png - small - - https://s.yimg.com/iu/api/res/1.2/V.IFyHsRqvluSKfBdKwrnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25147.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.27533 - 27533 - - Khalil Mack - Khalil - Mack - Khalil - Mack - - nfl.p.27533 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 52 - DE - - https://s.yimg.com/iu/api/res/1.2/voYflJKxMn_LcxtH4bV2iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27533.png - small - - https://s.yimg.com/iu/api/res/1.2/voYflJKxMn_LcxtH4bV2iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/27533.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 66 - 0 - - - - 380.p.24075 - 24075 - - Everson Griffen - Everson - Griffen - Everson - Griffen - - nfl.p.24075 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/YaidwJoss_cHHm.F46Z3pA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24075.png - small - - https://s.yimg.com/iu/api/res/1.2/YaidwJoss_cHHm.F46Z3pA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24075.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.29273 - 29273 - - Noah Spence - Noah - Spence - Noah - Spence - - nfl.p.29273 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/etk4ftfhRqGjpMjLF_JZlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29273.png - small - - https://s.yimg.com/iu/api/res/1.2/etk4ftfhRqGjpMjLF_JZlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29273.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8880 - 8880 - - William Hayes - William - Hayes - William - Hayes - - Q - Questionable - nfl.p.8880 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/MZ6hS89_aqB.y9q38ZVRQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8880.png - small - - https://s.yimg.com/iu/api/res/1.2/MZ6hS89_aqB.y9q38ZVRQg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8880.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30139 - 30139 - - Takkarist McKinley - Takkarist - McKinley - Takkarist - McKinley - - nfl.p.30139 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/pEThNI3BELTaHog_udEoCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30139.png - small - - https://s.yimg.com/iu/api/res/1.2/pEThNI3BELTaHog_udEoCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30139.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25020 - 25020 - - Lawrence Guy - Lawrence - Guy - Lawrence - Guy - - nfl.p.25020 - nfl.t.17 - New England Patriots - NE - - 11 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/2bXOej9zW3MF4XVq8Rx6iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/25020.png - small - - https://s.yimg.com/iu/api/res/1.2/2bXOej9zW3MF4XVq8Rx6iQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/25020.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24811 - 24811 - - Cameron Jordan - Cameron - Jordan - Cameron - Jordan - - nfl.p.24811 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/CS9Gu_dX2LaqZlZWzvBE8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24811.png - small - - https://s.yimg.com/iu/api/res/1.2/CS9Gu_dX2LaqZlZWzvBE8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24811.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 36 - 0 - - - - 380.p.29436 - 29436 - - Anthony Zettel - Anthony - Zettel - Anthony - Zettel - - nfl.p.29436 - nfl.t.8 - Detroit Lions - Det - - 6 - - 69 - DE - - https://s.yimg.com/iu/api/res/1.2/OwdNiGXs64uSv5VfCqoL9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29436.png - small - - https://s.yimg.com/iu/api/res/1.2/OwdNiGXs64uSv5VfCqoL9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29436.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8356 - 8356 - - Brian Robison - Brian - Robison - Brian - Robison - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8356 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/LVO.KNdUdmyO37vBUPoQxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8356.png - small - - https://s.yimg.com/iu/api/res/1.2/LVO.KNdUdmyO37vBUPoQxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8356.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30135 - 30135 - - Charles Harris - Charles - Harris - Charles - Harris - - nfl.p.30135 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/4kWcgywBTgi2OG7tCzp8uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30135.png - small - - https://s.yimg.com/iu/api/res/1.2/4kWcgywBTgi2OG7tCzp8uA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30135.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27636 - 27636 - - Cassius Marsh - Cassius - Marsh - Cassius - Marsh - - nfl.p.27636 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 54 - DE - - https://s.yimg.com/iu/api/res/1.2/OHodqXHpm5NZ.bmE3Gj6Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27636.png - small - - https://s.yimg.com/iu/api/res/1.2/OHodqXHpm5NZ.bmE3Gj6Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27636.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28587 - 28587 - - L.T. Walton - L.T. - Walton - L.T. - Walton - - nfl.p.28587 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/P2NdOQ3dvIG9O_WR32xlxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28587.png - small - - https://s.yimg.com/iu/api/res/1.2/P2NdOQ3dvIG9O_WR32xlxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/28587.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9110 - 9110 - - Leger Douzable - Leger - Douzable - Leger - Douzable - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9110 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/rLlAfLq6FKVqUvyNSxICbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9110.1.png - small - - https://s.yimg.com/iu/api/res/1.2/rLlAfLq6FKVqUvyNSxICbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9110.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29306 - 29306 - - Jonathan Bullard - Jonathan - Bullard - Jonathan - Bullard - - nfl.p.29306 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/iYqFxx_UXYgbEjq7y9_Bdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29306.png - small - - https://s.yimg.com/iu/api/res/1.2/iYqFxx_UXYgbEjq7y9_Bdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29306.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26085 - 26085 - - Ryan Davis - Ryan - Davis - Ryan - Davis - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.26085 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/j62TTENTNFTbZ8iMQ6v41A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26085.1.png - small - - https://s.yimg.com/iu/api/res/1.2/j62TTENTNFTbZ8iMQ6v41A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26085.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28391 - 28391 - - Dante Fowler Jr. - Dante - Fowler Jr. - Dante - Fowler Jr. - - SUSP - Suspended - nfl.p.28391 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 56 - DE - - https://s.yimg.com/iu/api/res/1.2/90mDoExKOyl7ZivGwX1jjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28391.png - small - - https://s.yimg.com/iu/api/res/1.2/90mDoExKOyl7ZivGwX1jjg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28391.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.8779 - 8779 - - Chris Long - Chris - Long - Chris - Long - - nfl.p.8779 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 56 - DE - - https://s.yimg.com/iu/api/res/1.2/1Q1kX8SmwxLlwr2V2Feudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8779.png - small - - https://s.yimg.com/iu/api/res/1.2/1Q1kX8SmwxLlwr2V2Feudg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8779.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29714 - 29714 - - Morgan Fox - Morgan - Fox - Morgan - Fox - - IR - Injured Reserve - undisclosed - nfl.p.29714 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/FbFssB5DEY.ahZayM_omZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29714.png - small - - https://s.yimg.com/iu/api/res/1.2/FbFssB5DEY.ahZayM_omZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29714.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25748 - 25748 - - Andre Branch - Andre - Branch - Andre - Branch - - nfl.p.25748 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 50 - DE - - https://s.yimg.com/iu/api/res/1.2/xzLPzYFRMn4KQ6xKNFyDRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25748.png - small - - https://s.yimg.com/iu/api/res/1.2/xzLPzYFRMn4KQ6xKNFyDRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25748.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28051 - 28051 - - Kerry Wynn - Kerry - Wynn - Kerry - Wynn - - nfl.p.28051 - nfl.t.19 - New York Giants - NYG - - 9 - - 72 - DE - - https://s.yimg.com/iu/api/res/1.2/WUNrNaNM6SaLgsb1HHtXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28051.png - small - - https://s.yimg.com/iu/api/res/1.2/WUNrNaNM6SaLgsb1HHtXcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/28051.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26626 - 26626 - - Dion Jordan - Dion - Jordan - Dion - Jordan - - Q - Questionable - nfl.p.26626 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/I_6FndWM9VumPkwI1qWuog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26626.png - small - - https://s.yimg.com/iu/api/res/1.2/I_6FndWM9VumPkwI1qWuog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26626.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30216 - 30216 - - Trey Hendrickson - Trey - Hendrickson - Trey - Hendrickson - - nfl.p.30216 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24829 - 24829 - - Brooks Reed - Brooks - Reed - Brooks - Reed - - nfl.p.24829 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 50 - DE - - https://s.yimg.com/iu/api/res/1.2/oVap86jYtcVqXN87g7td.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24829.png - small - - https://s.yimg.com/iu/api/res/1.2/oVap86jYtcVqXN87g7td.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24829.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28488 - 28488 - - Angelo Blackson - Angelo - Blackson - Angelo - Blackson - - nfl.p.28488 - nfl.t.34 - Houston Texans - Hou - - 10 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/GWpJ9rH_L7I136jgzevjrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28488.png - small - - https://s.yimg.com/iu/api/res/1.2/GWpJ9rH_L7I136jgzevjrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28488.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29794 - 29794 - - Joel Heath - Joel - Heath - Joel - Heath - - nfl.p.29794 - nfl.t.34 - Houston Texans - Hou - - 10 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/uo8BaLMMcN_1BaRSFOfdIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29794.1.png - small - - https://s.yimg.com/iu/api/res/1.2/uo8BaLMMcN_1BaRSFOfdIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29794.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27640 - 27640 - - DaQuan Jones - DaQuan - Jones - DaQuan - Jones - - nfl.p.27640 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/T5edoqEujSkGAtcixOkErA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27640.png - small - - https://s.yimg.com/iu/api/res/1.2/T5edoqEujSkGAtcixOkErA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27640.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26811 - 26811 - - Cornelius Washington - Cornelius - Washington - Cornelius - Washington - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26811 - nfl.t.8 - Detroit Lions - Det - - 6 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/2c32Cqe3Mkl0OElNko0QtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/26811.png - small - - https://s.yimg.com/iu/api/res/1.2/2c32Cqe3Mkl0OElNko0QtA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/26811.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27529 - 27529 - - Jadeveon Clowney - Jadeveon - Clowney - Jadeveon - Clowney - - nfl.p.27529 - nfl.t.34 - Houston Texans - Hou - - 10 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/fd9jivEkaCxLTW3_J6l1.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27529.png - small - - https://s.yimg.com/iu/api/res/1.2/fd9jivEkaCxLTW3_J6l1.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27529.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 40 - 0 - - - - 380.p.8337 - 8337 - - Charles Johnson - Charles - Johnson - Charles - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8337 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/v6qJb0n76oyl5JQNTTDDCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8337.png - small - - https://s.yimg.com/iu/api/res/1.2/v6qJb0n76oyl5JQNTTDDCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/8337.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30186 - 30186 - - Jordan Willis - Jordan - Willis - Jordan - Willis - - nfl.p.30186 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 75 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24665 - 24665 - - George Johnson - George - Johnson - George - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24665 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/oqCmY87A3vXVpQTqcckp9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24665.png - small - - https://s.yimg.com/iu/api/res/1.2/oqCmY87A3vXVpQTqcckp9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24665.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.23990 - 23990 - - Jason Pierre-Paul - Jason - Pierre-Paul - Jason - Pierre-Paul - - nfl.p.23990 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/pviWPpxxWRGakGdis3q9vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23990.png - small - - https://s.yimg.com/iu/api/res/1.2/pviWPpxxWRGakGdis3q9vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/23990.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 14 - 0 - - - - 380.p.27093 - 27093 - - Wes Horton - Wes - Horton - Wes - Horton - - nfl.p.27093 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/xebUs0KJw9f2Vpxbal2e6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27093.png - small - - https://s.yimg.com/iu/api/res/1.2/xebUs0KJw9f2Vpxbal2e6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27093.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29297 - 29297 - - Adam Gotsis - Adam - Gotsis - Adam - Gotsis - - nfl.p.29297 - nfl.t.7 - Denver Broncos - Den - - 10 - - 99 - DE - - https://s.yimg.com/iu/api/res/1.2/NpIOwfL3SEsxZfByTPUR8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29297.png - small - - https://s.yimg.com/iu/api/res/1.2/NpIOwfL3SEsxZfByTPUR8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29297.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24873 - 24873 - - Allen Bailey - Allen - Bailey - Allen - Bailey - - nfl.p.24873 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/W07V_xIer.vqzXCbqEn0yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24873.1.png - small - - https://s.yimg.com/iu/api/res/1.2/W07V_xIer.vqzXCbqEn0yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24873.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27835 - 27835 - - Brandon Dunn - Brandon - Dunn - Brandon - Dunn - - nfl.p.27835 - nfl.t.34 - Houston Texans - Hou - - 10 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/PBhp9mdRlYbm2XNI1bgBdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27835.1.png - small - - https://s.yimg.com/iu/api/res/1.2/PBhp9mdRlYbm2XNI1bgBdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27835.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25868 - 25868 - - Jack Crawford - Jack - Crawford - Jack - Crawford - - nfl.p.25868 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/iO0ttzOwoam9ofa7qyjwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25868.png - small - - https://s.yimg.com/iu/api/res/1.2/iO0ttzOwoam9ofa7qyjwHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/25868.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27574 - 27574 - - Stephon Tuitt - Stephon - Tuitt - Stephon - Tuitt - - nfl.p.27574 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/OCJOKRqSYXhHN6sIJIhF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27574.png - small - - https://s.yimg.com/iu/api/res/1.2/OCJOKRqSYXhHN6sIJIhF_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27574.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28604 - 28604 - - Christian Covington - Christian - Covington - Christian - Covington - - nfl.p.28604 - nfl.t.34 - Houston Texans - Hou - - 10 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/fMaklGPmC2P7emdidrysSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28604.1.png - small - - https://s.yimg.com/iu/api/res/1.2/fMaklGPmC2P7emdidrysSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28604.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27588 - 27588 - - Kony Ealy - Kony - Ealy - Kony - Ealy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27588 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 76 - DE - - https://s.yimg.com/iu/api/res/1.2/PoLSs2ULsRftLRP6VAxqJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27588.png - small - - https://s.yimg.com/iu/api/res/1.2/PoLSs2ULsRftLRP6VAxqJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27588.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27562 - 27562 - - DeMarcus Lawrence - DeMarcus - Lawrence - DeMarcus - Lawrence - - nfl.p.27562 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/p8R9OEBx16L5mj.GTeYR_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27562.png - small - - https://s.yimg.com/iu/api/res/1.2/p8R9OEBx16L5mj.GTeYR_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27562.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 26 - 0 - - - - 380.p.25746 - 25746 - - Derek Wolfe - Derek - Wolfe - Derek - Wolfe - - nfl.p.25746 - nfl.t.7 - Denver Broncos - Den - - 10 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/rIS8mqD0iSYeqpqt4EYXUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25746.png - small - - https://s.yimg.com/iu/api/res/1.2/rIS8mqD0iSYeqpqt4EYXUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25746.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.9296 - 9296 - - Ziggy Hood - Ziggy - Hood - Ziggy - Hood - - nfl.p.9296 - nfl.t.28 - Washington Redskins - Was - - 4 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/JdEakwEFsfb.N3uadSAtQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9296.png - small - - https://s.yimg.com/iu/api/res/1.2/JdEakwEFsfb.N3uadSAtQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9296.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27762 - 27762 - - Terrence Fede - Terrence - Fede - Terrence - Fede - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27762 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/OWeQDb2l0hYRGvtqdAcMug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27762.1.png - small - - https://s.yimg.com/iu/api/res/1.2/OWeQDb2l0hYRGvtqdAcMug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27762.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.23988 - 23988 - - Brandon Graham - Brandon - Graham - Brandon - Graham - - nfl.p.23988 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 55 - DE - - https://s.yimg.com/iu/api/res/1.2/.Ekg80p8VSJWXdZ75mnq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23988.png - small - - https://s.yimg.com/iu/api/res/1.2/.Ekg80p8VSJWXdZ75mnq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/23988.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.25769 - 25769 - - Vinny Curry - Vinny - Curry - Vinny - Curry - - nfl.p.25769 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/bj3KIArIWY.OBqJt4HOxwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25769.png - small - - https://s.yimg.com/iu/api/res/1.2/bj3KIArIWY.OBqJt4HOxwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/25769.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26649 - 26649 - - Datone Jones - Datone - Jones - Datone - Jones - - IR - Injured Reserve - nfl.p.26649 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 56 - DE - - https://s.yimg.com/iu/api/res/1.2/VFACs9i5NSeL7GoIPSRYKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26649.png - small - - https://s.yimg.com/iu/api/res/1.2/VFACs9i5NSeL7GoIPSRYKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26649.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30778 - 30778 - - Jeremiah Valoaga - Jeremiah - Valoaga - Jeremiah - Valoaga - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30778 - nfl.t.8 - Detroit Lions - Det - - 6 - - 78 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26726 - 26726 - - Alex Okafor - Alex - Okafor - Alex - Okafor - - nfl.p.26726 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/YMzQtb3oQ7KmmEZLTUmguw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26726.png - small - - https://s.yimg.com/iu/api/res/1.2/YMzQtb3oQ7KmmEZLTUmguw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26726.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26749 - 26749 - - William Gholston - William - Gholston - William - Gholston - - nfl.p.26749 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/T2HBPlHRc3QLtWHFve5EnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26749.png - small - - https://s.yimg.com/iu/api/res/1.2/T2HBPlHRc3QLtWHFve5EnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26749.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29271 - 29271 - - Chris Jones - Chris - Jones - Chris - Jones - - nfl.p.29271 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/MKns2.isRPML.AY07FppVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29271.png - small - - https://s.yimg.com/iu/api/res/1.2/MKns2.isRPML.AY07FppVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29271.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27413 - 27413 - - Benson Mayowa - Benson - Mayowa - Benson - Mayowa - - nfl.p.27413 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/mwAO2LfoQaJZqTxGaMOhIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27413.png - small - - https://s.yimg.com/iu/api/res/1.2/mwAO2LfoQaJZqTxGaMOhIw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27413.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29303 - 29303 - - Yannick Ngakoue - Yannick - Ngakoue - Yannick - Ngakoue - - nfl.p.29303 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/ANwggGhtLR4A40DTXYdtrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29303.png - small - - https://s.yimg.com/iu/api/res/1.2/ANwggGhtLR4A40DTXYdtrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29303.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.29029 - 29029 - - Cap Capi - Cap - Capi - Cap - Capi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29029 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 61 - DE - - https://s.yimg.com/iu/api/res/1.2/wCn582o_W_7YGXYsKRfpvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29029.png - small - - https://s.yimg.com/iu/api/res/1.2/wCn582o_W_7YGXYsKRfpvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29029.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28242 - 28242 - - Chris McCain - Chris - McCain - Chris - McCain - - IR - Injured Reserve - undisclosed - nfl.p.28242 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 76 - DE - - https://s.yimg.com/iu/api/res/1.2/wAqo3WBrcLT9vqx.nY05RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28242.1.png - small - - https://s.yimg.com/iu/api/res/1.2/wAqo3WBrcLT9vqx.nY05RA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28242.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28580 - 28580 - - Darius Philon - Darius - Philon - Darius - Philon - - nfl.p.28580 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/J_QbF0EifiYfYDWGgL8Eyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28580.png - small - - https://s.yimg.com/iu/api/res/1.2/J_QbF0EifiYfYDWGgL8Eyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28580.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30181 - 30181 - - Dawuane Smoot - Dawuane - Smoot - Dawuane - Smoot - - nfl.p.30181 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29386 - 29386 - - Matt Ioannidis - Matt - Ioannidis - Matt - Ioannidis - - nfl.p.29386 - nfl.t.28 - Washington Redskins - Was - - 4 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/f3Y0oFG4ggTN6GVu_JGVaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29386.png - small - - https://s.yimg.com/iu/api/res/1.2/f3Y0oFG4ggTN6GVu_JGVaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29386.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27687 - 27687 - - Chris Smith - Chris - Smith - Chris - Smith - - nfl.p.27687 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 50 - DE - - https://s.yimg.com/iu/api/res/1.2/VJBW7DqFJSUYmTcNYs2GPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27687.1.png - small - - https://s.yimg.com/iu/api/res/1.2/VJBW7DqFJSUYmTcNYs2GPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27687.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29799 - 29799 - - Eric Lee - Eric - Lee - Eric - Lee - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29799 - nfl.t.8 - Detroit Lions - Det - - 6 - - 55 - DE - - https://s.yimg.com/iu/api/res/1.2/U_or9Sa3glnsW_5MI8g.hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29799.1.png - small - - https://s.yimg.com/iu/api/res/1.2/U_or9Sa3glnsW_5MI8g.hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29799.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29266 - 29266 - - Emmanuel Ogbah - Emmanuel - Ogbah - Emmanuel - Ogbah - - nfl.p.29266 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/iLzYJE9M0M1RHdefHEwL0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29266.png - small - - https://s.yimg.com/iu/api/res/1.2/iLzYJE9M0M1RHdefHEwL0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29266.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28476 - 28476 - - Danielle Hunter - Danielle - Hunter - Danielle - Hunter - - nfl.p.28476 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 99 - DE - - https://s.yimg.com/iu/api/res/1.2/9Pf73UUg27NIxHSlBtwswQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28476.png - small - - https://s.yimg.com/iu/api/res/1.2/9Pf73UUg27NIxHSlBtwswQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28476.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 16 - 0 - - - - 380.p.30116 - 30116 - - Solomon Thomas - Solomon - Thomas - Solomon - Thomas - - nfl.p.30116 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/oZxQTVSW18LnZ5u4EaZ.1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30116.png - small - - https://s.yimg.com/iu/api/res/1.2/oZxQTVSW18LnZ5u4EaZ.1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30116.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.28484 - 28484 - - Xavier Cooper - Xavier - Cooper - Xavier - Cooper - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28484 - nfl.t.20 - New York Jets - NYJ - - 11 - - 75 - DE - - https://s.yimg.com/iu/api/res/1.2/fO7R72mbWIZT5dVc9tiJYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28484.1.png - small - - https://s.yimg.com/iu/api/res/1.2/fO7R72mbWIZT5dVc9tiJYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28484.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26628 - 26628 - - Ezekiel Ansah - Ezekiel - Ansah - Ezekiel - Ansah - - nfl.p.26628 - nfl.t.8 - Detroit Lions - Det - - 6 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/dUL4T6TjrDvJ3tOIhwfk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26628.png - small - - https://s.yimg.com/iu/api/res/1.2/dUL4T6TjrDvJ3tOIhwfk3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26628.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 21 - 0 - - - - 380.p.29636 - 29636 - - Eddie Yarbrough - Eddie - Yarbrough - Eddie - Yarbrough - - nfl.p.29636 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 54 - DE - - https://s.yimg.com/iu/api/res/1.2/Csrd540X1FSDBOeUA.Yctg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29636.1.png - small - - https://s.yimg.com/iu/api/res/1.2/Csrd540X1FSDBOeUA.Yctg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29636.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24807 - 24807 - - Adrian Clayborn - Adrian - Clayborn - Adrian - Clayborn - - nfl.p.24807 - nfl.t.17 - New England Patriots - NE - - 11 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/l7wVocifi.MfWtCg96irSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24807.png - small - - https://s.yimg.com/iu/api/res/1.2/l7wVocifi.MfWtCg96irSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24807.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24029 - 24029 - - Carlos Dunlap - Carlos - Dunlap - Carlos - Dunlap - - nfl.p.24029 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/07hmmIsFu8pojxXxpvnE3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24029.png - small - - https://s.yimg.com/iu/api/res/1.2/07hmmIsFu8pojxXxpvnE3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24029.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.30255 - 30255 - - Carlos Watkins - Carlos - Watkins - Carlos - Watkins - - nfl.p.30255 - nfl.t.34 - Houston Texans - Hou - - 10 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24006 - 24006 - - Jerry Hughes - Jerry - Hughes - Jerry - Hughes - - nfl.p.24006 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 55 - DE - - https://s.yimg.com/iu/api/res/1.2/oh8haGMrXc.OgepE_o6L3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24006.png - small - - https://s.yimg.com/iu/api/res/1.2/oh8haGMrXc.OgepE_o6L3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24006.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30127 - 30127 - - Derek Barnett - Derek - Barnett - Derek - Barnett - - nfl.p.30127 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/vHLNApa0Du4EemY5NuyJ6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30127.png - small - - https://s.yimg.com/iu/api/res/1.2/vHLNApa0Du4EemY5NuyJ6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30127.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.9334 - 9334 - - Michael Johnson - Michael - Johnson - Michael - Johnson - - nfl.p.9334 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/ANjzuwWSNqf6GtugoKZ_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9334.png - small - - https://s.yimg.com/iu/api/res/1.2/ANjzuwWSNqf6GtugoKZ_Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/9334.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9568 - 9568 - - Michael Bennett - Michael - Bennett - Michael - Bennett - - Q - Questionable - nfl.p.9568 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 77 - DE - - https://s.yimg.com/iu/api/res/1.2/X9BM.XTnTn4fsf_a5WE04A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9568.png - small - - https://s.yimg.com/iu/api/res/1.2/X9BM.XTnTn4fsf_a5WE04A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9568.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.24798 - 24798 - - J.J. Watt - J.J. - Watt - J.J. - Watt - - nfl.p.24798 - nfl.t.34 - Houston Texans - Hou - - 10 - - 99 - DE - - https://s.yimg.com/iu/api/res/1.2/NWEYF9M5yJbmoYYadTF_9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24798.png - small - - https://s.yimg.com/iu/api/res/1.2/NWEYF9M5yJbmoYYadTF_9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24798.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 66 - 0 - - - - 380.p.29696 - 29696 - - Anthony Lanier - Anthony - Lanier - Anthony - Lanier - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29696 - nfl.t.28 - Washington Redskins - Was - - 4 - - 72 - DE - - https://s.yimg.com/iu/api/res/1.2/mAX59z7Ci8_r3R1cXBSzdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29696.png - small - - https://s.yimg.com/iu/api/res/1.2/mAX59z7Ci8_r3R1cXBSzdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29696.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28551 - 28551 - - Ryan Russell - Ryan - Russell - Ryan - Russell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28551 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 59 - DE - - https://s.yimg.com/iu/api/res/1.2/Eh.KPt.R5aF53Nw2IFNTZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28551.png - small - - https://s.yimg.com/iu/api/res/1.2/Eh.KPt.R5aF53Nw2IFNTZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28551.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24817 - 24817 - - Muhammad Wilkerson - Muhammad - Wilkerson - Muhammad - Wilkerson - - nfl.p.24817 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/V2sVHaNFm6K0VIHyjYB1NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24817.png - small - - https://s.yimg.com/iu/api/res/1.2/V2sVHaNFm6K0VIHyjYB1NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24817.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.28451 - 28451 - - Frank Clark - Frank - Clark - Frank - Clark - - Q - Questionable - nfl.p.28451 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 55 - DE - - https://s.yimg.com/iu/api/res/1.2/whZBNYJYULnpaAsLbrLoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28451.png - small - - https://s.yimg.com/iu/api/res/1.2/whZBNYJYULnpaAsLbrLoQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28451.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.30164 - 30164 - - DeMarcus Walker - DeMarcus - Walker - DeMarcus - Walker - - nfl.p.30164 - nfl.t.7 - Denver Broncos - Den - - 10 - - 57 - DE - - https://s.yimg.com/iu/api/res/1.2/5B1HJifEaEYhsTXXGwYt_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30164.png - small - - https://s.yimg.com/iu/api/res/1.2/5B1HJifEaEYhsTXXGwYt_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30164.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27815 - 27815 - - Josh Mauro - Josh - Mauro - Josh - Mauro - - SUSP - Suspended - nfl.p.27815 - nfl.t.19 - New York Giants - NYG - - 9 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/EbP9VFqsTmRbVFwBuZZdbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27815.png - small - - https://s.yimg.com/iu/api/res/1.2/EbP9VFqsTmRbVFwBuZZdbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/27815.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27616 - 27616 - - Will Clarke - Will - Clarke - Will - Clarke - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27616 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/kuZ9wDdaupxTlm3qC9zHTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27616.1.png - small - - https://s.yimg.com/iu/api/res/1.2/kuZ9wDdaupxTlm3qC9zHTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27616.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.5888 - 5888 - - Julius Peppers - Julius - Peppers - Julius - Peppers - - nfl.p.5888 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/9.ih1bLrFVeSVOKvY4Q6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5888.png - small - - https://s.yimg.com/iu/api/res/1.2/9.ih1bLrFVeSVOKvY4Q6Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5888.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30244 - 30244 - - Deatrich Wise Jr. - Deatrich - Wise Jr. - Deatrich - Wise Jr. - - nfl.p.30244 - nfl.t.17 - New England Patriots - NE - - 11 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/nkUbi_HqCilc5Mb2JKNimA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30244.png - small - - https://s.yimg.com/iu/api/res/1.2/nkUbi_HqCilc5Mb2JKNimA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30244.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29461 - 29461 - - Stephen Weatherly - Stephen - Weatherly - Stephen - Weatherly - - nfl.p.29461 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/8aqc4TFtYKFHE.weOsXKKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29461.png - small - - https://s.yimg.com/iu/api/res/1.2/8aqc4TFtYKFHE.weOsXKKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29461.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8827 - 8827 - - Calais Campbell - Calais - Campbell - Calais - Campbell - - nfl.p.8827 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/0q2hnQITDonAh5HBrnN6vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8827.png - small - - https://s.yimg.com/iu/api/res/1.2/0q2hnQITDonAh5HBrnN6vA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8827.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 31 - 0 - - - - 380.p.30379 - 30379 - - Bryan Cox Jr. - Bryan - Cox Jr. - Bryan - Cox Jr. - - nfl.p.30379 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30141 - 30141 - - Taco Charlton - Taco - Charlton - Taco - Charlton - - nfl.p.30141 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 97 - DE - - https://s.yimg.com/iu/api/res/1.2/mwVL.V16yGL4KV65WcE30A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30141.png - small - - https://s.yimg.com/iu/api/res/1.2/mwVL.V16yGL4KV65WcE30A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30141.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.23985 - 23985 - - Tyson Alualu - Tyson - Alualu - Tyson - Alualu - - nfl.p.23985 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/6s4VzKJTkYfeC08_ENkzQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/23985.png - small - - https://s.yimg.com/iu/api/res/1.2/6s4VzKJTkYfeC08_ENkzQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/23985.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27972 - 27972 - - Ethan Westbrooks - Ethan - Westbrooks - Ethan - Westbrooks - - nfl.p.27972 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/zMI5wSNDFEP1bz0x8hhWAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27972.png - small - - https://s.yimg.com/iu/api/res/1.2/zMI5wSNDFEP1bz0x8hhWAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27972.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29371 - 29371 - - Dean Lowry - Dean - Lowry - Dean - Lowry - - nfl.p.29371 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/K1.ayreejidsZ9Eg3dRjxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29371.png - small - - https://s.yimg.com/iu/api/res/1.2/K1.ayreejidsZ9Eg3dRjxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29371.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28489 - 28489 - - Trey Flowers - Trey - Flowers - Trey - Flowers - - Q - Questionable - nfl.p.28489 - nfl.t.17 - New England Patriots - NE - - 11 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/ISi09EA0CCx2R52oWuTzcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28489.png - small - - https://s.yimg.com/iu/api/res/1.2/ISi09EA0CCx2R52oWuTzcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28489.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - 380.p.29299 - 29299 - - Carl Nassib - Carl - Nassib - Carl - Nassib - - nfl.p.29299 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/jdGrTG6vNZRIzpHmDa2klA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29299.png - small - - https://s.yimg.com/iu/api/res/1.2/jdGrTG6vNZRIzpHmDa2klA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29299.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29253 - 29253 - - Shaq Lawson - Shaq - Lawson - Shaq - Lawson - - nfl.p.29253 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/_XQc_RvGBDNdRkIyMCJJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29253.png - small - - https://s.yimg.com/iu/api/res/1.2/_XQc_RvGBDNdRkIyMCJJtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29253.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24451 - 24451 - - Mitch Unrein - Mitch - Unrein - Mitch - Unrein - - IR - Injured Reserve - concussion - nfl.p.24451 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 98 - DE - - https://s.yimg.com/iu/api/res/1.2/gpgifHLx_.WotEUdj68tSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24451.png - small - - https://s.yimg.com/iu/api/res/1.2/gpgifHLx_.WotEUdj68tSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24451.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29237 - 29237 - - Joey Bosa - Joey - Bosa - Joey - Bosa - - Q - Questionable - nfl.p.29237 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 99 - DE - - https://s.yimg.com/iu/api/res/1.2/fzRR4qvoa4zenT6XkQ2pCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29237.png - small - - https://s.yimg.com/iu/api/res/1.2/fzRR4qvoa4zenT6XkQ2pCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29237.png - 0 - DP - - DE - - 1 - - - - - - - - - - - - week - 1 - 68 - 0 - - - - 380.p.26663 - 26663 - - Tank Carradine - Tank - Carradine - Tank - Carradine - - nfl.p.26663 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/kEb9d81e96Qp8BfBTOT9Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26663.png - small - - https://s.yimg.com/iu/api/res/1.2/kEb9d81e96Qp8BfBTOT9Tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26663.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24828 - 24828 - - Jarvis Jenkins - Jarvis - Jenkins - Jarvis - Jenkins - - nfl.p.24828 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 94 - DE - - https://s.yimg.com/iu/api/res/1.2/UGglNwTsxZtTyd5d_wh2QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24828.png - small - - https://s.yimg.com/iu/api/res/1.2/UGglNwTsxZtTyd5d_wh2QA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24828.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25728 - 25728 - - Melvin Ingram - Melvin - Ingram - Melvin - Ingram - - nfl.p.25728 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 54 - DE - - https://s.yimg.com/iu/api/res/1.2/kjhf3doqXehq6YhWW725Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25728.png - small - - https://s.yimg.com/iu/api/res/1.2/kjhf3doqXehq6YhWW725Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/25728.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 31 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27905 - 27905 - - Zach Kerr - Zach - Kerr - Zach - Kerr - - nfl.p.27905 - nfl.t.7 - Denver Broncos - Den - - 10 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/oL5bSlQfrgHfjWlod0.XsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27905.1.png - small - - https://s.yimg.com/iu/api/res/1.2/oL5bSlQfrgHfjWlod0.XsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27905.1.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26297 - 26297 - - Derrick Shelby - Derrick - Shelby - Derrick - Shelby - - nfl.p.26297 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 90 - DE - - https://s.yimg.com/iu/api/res/1.2/4giRFUFSfdN0AuFcCv0kbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26297.png - small - - https://s.yimg.com/iu/api/res/1.2/4giRFUFSfdN0AuFcCv0kbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/26297.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30187 - 30187 - - Chris Wormley - Chris - Wormley - Chris - Wormley - - nfl.p.30187 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/Lrj2F5VhZkyrunCKt4cl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30187.png - small - - https://s.yimg.com/iu/api/res/1.2/Lrj2F5VhZkyrunCKt4cl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/30187.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29920 - 29920 - - Roy Robertson-Harris - Roy - Robertson-Harris - Roy - Robertson-Harris - - nfl.p.29920 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 95 - DE - - https://s.yimg.com/iu/api/res/1.2/shsmteBBDyteNId70VPTjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29920.png - small - - https://s.yimg.com/iu/api/res/1.2/shsmteBBDyteNId70VPTjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/29920.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25799 - 25799 - - Akiem Hicks - Akiem - Hicks - Akiem - Hicks - - Q - Questionable - nfl.p.25799 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 96 - DE - - https://s.yimg.com/iu/api/res/1.2/W9vBOFk5zlaIczhSR4IcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25799.png - small - - https://s.yimg.com/iu/api/res/1.2/W9vBOFk5zlaIczhSR4IcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25799.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.29999 - 29999 - - Branden Jackson - Branden - Jackson - Branden - Jackson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29999 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 93 - DE - - https://s.yimg.com/iu/api/res/1.2/eQPFYV82.hWSLNcTx1Tx7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29999.png - small - - https://s.yimg.com/iu/api/res/1.2/eQPFYV82.hWSLNcTx1Tx7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29999.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28394 - 28394 - - Leonard Williams - Leonard - Williams - Leonard - Williams - - nfl.p.28394 - nfl.t.20 - New York Jets - NYJ - - 11 - - 92 - DE - - https://s.yimg.com/iu/api/res/1.2/u8h4bW1mJdExI3vt0hlJ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28394.png - small - - https://s.yimg.com/iu/api/res/1.2/u8h4bW1mJdExI3vt0hlJ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28394.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.9691 - 9691 - - Cameron Wake - Cameron - Wake - Cameron - Wake - - nfl.p.9691 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 91 - DE - - https://s.yimg.com/iu/api/res/1.2/gjQ8rLcL8sY2dIjI_3nCQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9691.png - small - - https://s.yimg.com/iu/api/res/1.2/gjQ8rLcL8sY2dIjI_3nCQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9691.png - 0 - DP - - DE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.23996 - 23996 - - Jermaine Gresham - Jermaine - Gresham - Jermaine - Gresham - - Q - Questionable - nfl.p.23996 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/31YPYNtZe3nlxrmwNbTKXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23996.png - small - - https://s.yimg.com/iu/api/res/1.2/31YPYNtZe3nlxrmwNbTKXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/23996.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30140 - 30140 - - Tre'Davious White - Tre'Davious - White - Tre'Davious - White - - nfl.p.30140 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/5FMoH9I9WjyVe0NbwBEoNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30140.png - small - - https://s.yimg.com/iu/api/res/1.2/5FMoH9I9WjyVe0NbwBEoNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30140.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 8 - 0 - - - - 380.p.27608 - 27608 - - Dexter McDougle - Dexter - McDougle - Dexter - McDougle - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27608 - nfl.t.8 - Detroit Lions - Det - - 6 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/iL5EWo1K6cBou1JHcIhVnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27608.1.png - small - - https://s.yimg.com/iu/api/res/1.2/iL5EWo1K6cBou1JHcIhVnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27608.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30669 - 30669 - - Kenny Moore II - Kenny - Moore II - Kenny - Moore II - - nfl.p.30669 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/.s0Xe98T4EitWR4i461wrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30669.png - small - - https://s.yimg.com/iu/api/res/1.2/.s0Xe98T4EitWR4i461wrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/30669.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30146 - 30146 - - Kevin King - Kevin - King - Kevin - King - - Q - Questionable - nfl.p.30146 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/T1UQ1ydbqfemsJ83D3GunA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30146.png - small - - https://s.yimg.com/iu/api/res/1.2/T1UQ1ydbqfemsJ83D3GunA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30146.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30205 - 30205 - - Jourdan Lewis - Jourdan - Lewis - Jourdan - Lewis - - nfl.p.30205 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/Y5QnyWhT9mhI4NE5bEdThg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30205.png - small - - https://s.yimg.com/iu/api/res/1.2/Y5QnyWhT9mhI4NE5bEdThg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30205.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30159 - 30159 - - Quincy Wilson - Quincy - Wilson - Quincy - Wilson - - Q - Questionable - nfl.p.30159 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/W_.oLxC8vem9kffzctSgEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30159.png - small - - https://s.yimg.com/iu/api/res/1.2/W_.oLxC8vem9kffzctSgEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30159.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28265 - 28265 - - K'Waun Williams - K'Waun - Williams - K'Waun - Williams - - nfl.p.28265 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/0CQFfSe8H_8KlBmSpZCNMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28265.png - small - - https://s.yimg.com/iu/api/res/1.2/0CQFfSe8H_8KlBmSpZCNMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28265.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30619 - 30619 - - Lenzy Pipkins - Lenzy - Pipkins - Lenzy - Pipkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30619 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 37 - CB - - https://s.yimg.com/iu/api/res/1.2/fao0zBBsHD.T2bCmiGh_yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30619.png - small - - https://s.yimg.com/iu/api/res/1.2/fao0zBBsHD.T2bCmiGh_yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30619.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29962 - 29962 - - Tony McRae - Tony - McRae - Tony - McRae - - nfl.p.29962 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30179 - 30179 - - Ahkello Witherspoon - Ahkello - Witherspoon - Ahkello - Witherspoon - - nfl.p.30179 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/ZuV98aj_QEiBPetRhsf94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30179.png - small - - https://s.yimg.com/iu/api/res/1.2/ZuV98aj_QEiBPetRhsf94A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30179.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28558 - 28558 - - Tye Smith - Tye - Smith - Tye - Smith - - IR - Injured Reserve - undisclosed - nfl.p.28558 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/02REXMNe0hz.F.q6V0Ekww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28558.png - small - - https://s.yimg.com/iu/api/res/1.2/02REXMNe0hz.F.q6V0Ekww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28558.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30129 - 30129 - - Marlon Humphrey - Marlon - Humphrey - Marlon - Humphrey - - nfl.p.30129 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/E_EDEzOzdoquh6PL1.0dkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30129.png - small - - https://s.yimg.com/iu/api/res/1.2/E_EDEzOzdoquh6PL1.0dkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30129.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30124 - 30124 - - Marshon Lattimore - Marshon - Lattimore - Marshon - Lattimore - - nfl.p.30124 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/HJ9EYcTvW2Zdd2crtuwyug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30124.png - small - - https://s.yimg.com/iu/api/res/1.2/HJ9EYcTvW2Zdd2crtuwyug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/30124.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 26 - 0 - - - - 380.p.30212 - 30212 - - Rasul Douglas - Rasul - Douglas - Rasul - Douglas - - nfl.p.30212 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/YH2h1fLnl9DMf9Gu2QGglA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30212.png - small - - https://s.yimg.com/iu/api/res/1.2/YH2h1fLnl9DMf9Gu2QGglA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/02022018/30212.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30194 - 30194 - - Fabian Moreau - Fabian - Moreau - Fabian - Moreau - - nfl.p.30194 - nfl.t.28 - Washington Redskins - Was - - 4 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/OjKY8M9QEQGxa_YPDrwFVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30194.png - small - - https://s.yimg.com/iu/api/res/1.2/OjKY8M9QEQGxa_YPDrwFVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30194.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29430 - 29430 - - Blake Countess - Blake - Countess - Blake - Countess - - nfl.p.29430 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/qqE4_DnKdOP3k1s21Bbsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29430.png - small - - https://s.yimg.com/iu/api/res/1.2/qqE4_DnKdOP3k1s21Bbsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29430.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30271 - 30271 - - Nate Hairston - Nate - Hairston - Nate - Hairston - - Q - Questionable - nfl.p.30271 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29846 - 29846 - - Donte Deayon - Donte - Deayon - Donte - Deayon - - nfl.p.29846 - nfl.t.19 - New York Giants - NYG - - 9 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/77NR7F0nZK.4WkmLjDDeTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29846.png - small - - https://s.yimg.com/iu/api/res/1.2/77NR7F0nZK.4WkmLjDDeTQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/10032017/29846.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29607 - 29607 - - Chris Milton - Chris - Milton - Chris - Milton - - nfl.p.29607 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/g.EQ4lvYYPbukNaU9QEaSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29607.1.png - small - - https://s.yimg.com/iu/api/res/1.2/g.EQ4lvYYPbukNaU9QEaSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29607.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27542 - 27542 - - Kyle Fuller - Kyle - Fuller - Kyle - Fuller - - nfl.p.27542 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/pdtijlC1QCd2_0q9TDAdag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27542.png - small - - https://s.yimg.com/iu/api/res/1.2/pdtijlC1QCd2_0q9TDAdag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27542.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 10 - 0 - - - - 380.p.29287 - 29287 - - Mackensie Alexander - Mackensie - Alexander - Mackensie - Alexander - - Q - Questionable - nfl.p.29287 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/VrKzb.zm85JAh0PqsIEGkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29287.png - small - - https://s.yimg.com/iu/api/res/1.2/VrKzb.zm85JAh0PqsIEGkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29287.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27723 - 27723 - - Brandon Dixon - Brandon - Dixon - Brandon - Dixon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27723 - nfl.t.19 - New York Giants - NYG - - 9 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/Ajxm2Ymcp8H.1GOXQK98Bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27723.png - small - - https://s.yimg.com/iu/api/res/1.2/Ajxm2Ymcp8H.1GOXQK98Bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/27723.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30865 - 30865 - - Dominique Hatfield - Dominique - Hatfield - Dominique - Hatfield - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30865 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28466 - 28466 - - P.J. Williams - P.J. - Williams - P.J. - Williams - - Q - Questionable - nfl.p.28466 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/6Vpe5IGJN4u0Bci0AC6ljA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28466.png - small - - https://s.yimg.com/iu/api/res/1.2/6Vpe5IGJN4u0Bci0AC6ljA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28466.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29443 - 29443 - - Maurice Canady - Maurice - Canady - Maurice - Canady - - Q - Questionable - nfl.p.29443 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/mdDCW1RoiO7Ol8rGKRiMHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29443.png - small - - https://s.yimg.com/iu/api/res/1.2/mdDCW1RoiO7Ol8rGKRiMHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/29443.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30166 - 30166 - - Teez Tabor - Teez - Tabor - Teez - Tabor - - nfl.p.30166 - nfl.t.8 - Detroit Lions - Det - - 6 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/h.keLvPzw5M6DbU4DY14kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30166.png - small - - https://s.yimg.com/iu/api/res/1.2/h.keLvPzw5M6DbU4DY14kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30166.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30014 - 30014 - - Javien Elliott - Javien - Elliott - Javien - Elliott - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30014 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29438 - 29438 - - Jordan Lucas - Jordan - Lucas - Jordan - Lucas - - nfl.p.29438 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/XngfddoivJedx1F.DHA56g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29438.1.png - small - - https://s.yimg.com/iu/api/res/1.2/XngfddoivJedx1F.DHA56g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29438.1.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30422 - 30422 - - Michael Davis - Michael - Davis - Michael - Davis - - nfl.p.30422 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 43 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27655 - 27655 - - Pierre Desir - Pierre - Desir - Pierre - Desir - - nfl.p.27655 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/f710jwTyfZ5yQ0FEoIxDdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27655.1.png - small - - https://s.yimg.com/iu/api/res/1.2/f710jwTyfZ5yQ0FEoIxDdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27655.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30214 - 30214 - - Brendan Langley - Brendan - Langley - Brendan - Langley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30214 - nfl.t.7 - Denver Broncos - Den - - 10 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29062 - 29062 - - Curtis Riley - Curtis - Riley - Curtis - Riley - - nfl.p.29062 - nfl.t.19 - New York Giants - NYG - - 9 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/MJRarIgJ0UUrs2adF8C6Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29062.png - small - - https://s.yimg.com/iu/api/res/1.2/MJRarIgJ0UUrs2adF8C6Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29062.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28630 - 28630 - - Dexter McDonald - Dexter - McDonald - Dexter - McDonald - - IR - Injured Reserve - undisclosed - nfl.p.28630 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/H0PZUD0sa8UaaO5hA.4neg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28630.png - small - - https://s.yimg.com/iu/api/res/1.2/H0PZUD0sa8UaaO5hA.4neg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28630.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30203 - 30203 - - Shaquill Griffin - Shaquill - Griffin - Shaquill - Griffin - - nfl.p.30203 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/gjnw3HDCFbfpjNEN0JeVcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30203.png - small - - https://s.yimg.com/iu/api/res/1.2/gjnw3HDCFbfpjNEN0JeVcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30203.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30548 - 30548 - - Kai Nacua - Kai - Nacua - Kai - Nacua - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30548 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30282 - 30282 - - Treston Decoud - Treston - Decoud - Treston - Decoud - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30282 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29510 - 29510 - - Mike Hilton - Mike - Hilton - Mike - Hilton - - nfl.p.29510 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/Z_E9a7_BIyl2Dzx.4.87EQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29510.png - small - - https://s.yimg.com/iu/api/res/1.2/Z_E9a7_BIyl2Dzx.4.87EQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09272017/29510.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30173 - 30173 - - Chidobe Awuzie - Chidobe - Awuzie - Chidobe - Awuzie - - nfl.p.30173 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/RFRUl1vgK0wF6jppCkcX8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30173.png - small - - https://s.yimg.com/iu/api/res/1.2/RFRUl1vgK0wF6jppCkcX8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30173.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29835 - 29835 - - Lafayette Pitts - Lafayette - Pitts - Lafayette - Pitts - - nfl.p.29835 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/RVoCsfu5jbLmwCXDuqspcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29835.1.png - small - - https://s.yimg.com/iu/api/res/1.2/RVoCsfu5jbLmwCXDuqspcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29835.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30342 - 30342 - - Adrian Colbert - Adrian - Colbert - Adrian - Colbert - - nfl.p.30342 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/Nodnk1JcjakwdsYoRR9Jsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30342.png - small - - https://s.yimg.com/iu/api/res/1.2/Nodnk1JcjakwdsYoRR9Jsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30342.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30210 - 30210 - - Cordrea Tankersley - Cordrea - Tankersley - Cordrea - Tankersley - - nfl.p.30210 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29957 - 29957 - - Antonio Hamilton - Antonio - Hamilton - Antonio - Hamilton - - nfl.p.29957 - nfl.t.19 - New York Giants - NYG - - 9 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/OoMGIid4k5HQMJUvHpQ0DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29957.png - small - - https://s.yimg.com/iu/api/res/1.2/OoMGIid4k5HQMJUvHpQ0DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29957.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30264 - 30264 - - Desmond King - Desmond - King - Desmond - King - - nfl.p.30264 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/4PY1_OhlUtqFBILoLCl6HA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30264.png - small - - https://s.yimg.com/iu/api/res/1.2/4PY1_OhlUtqFBILoLCl6HA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/30264.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.28508 - 28508 - - Josh Shaw - Josh - Shaw - Josh - Shaw - - undisclosed - nfl.p.28508 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/tUvJStNXuWaSUCfZeAS7hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28508.png - small - - https://s.yimg.com/iu/api/res/1.2/tUvJStNXuWaSUCfZeAS7hA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28508.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29842 - 29842 - - Ken Crawley - Ken - Crawley - Ken - Crawley - - nfl.p.29842 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/mmxlhWjfukgttaCvrUorug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29842.png - small - - https://s.yimg.com/iu/api/res/1.2/mmxlhWjfukgttaCvrUorug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29842.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24924 - 24924 - - Buster Skrine - Buster - Skrine - Buster - Skrine - - nfl.p.24924 - nfl.t.20 - New York Jets - NYJ - - 11 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/2Fn7EELep4TOIQ_ZfBgQEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24924.png - small - - https://s.yimg.com/iu/api/res/1.2/2Fn7EELep4TOIQ_ZfBgQEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24924.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8909 - 8909 - - Orlando Scandrick - Orlando - Scandrick - Orlando - Scandrick - - nfl.p.8909 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/uN5uQC0WzAYSjp5j6T9jig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8909.png - small - - https://s.yimg.com/iu/api/res/1.2/uN5uQC0WzAYSjp5j6T9jig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8909.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29352 - 29352 - - Juston Burris - Juston - Burris - Juston - Burris - - nfl.p.29352 - nfl.t.20 - New York Jets - NYJ - - 11 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/paPpEzczMz7OPkVTgisZMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29352.1.png - small - - https://s.yimg.com/iu/api/res/1.2/paPpEzczMz7OPkVTgisZMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29352.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29729 - 29729 - - Josh Hawkins - Josh - Hawkins - Josh - Hawkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29729 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/mJcqEgUY4XRTp4Nbhw5u3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29729.png - small - - https://s.yimg.com/iu/api/res/1.2/mJcqEgUY4XRTp4Nbhw5u3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29729.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9467 - 9467 - - Jason McCourty - Jason - McCourty - Jason - McCourty - - nfl.p.9467 - nfl.t.17 - New England Patriots - NE - - 11 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/lrnuBfOnA_l191fDbnHQ2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9467.png - small - - https://s.yimg.com/iu/api/res/1.2/lrnuBfOnA_l191fDbnHQ2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9467.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.25775 - 25775 - - Trumaine Johnson - Trumaine - Johnson - Trumaine - Johnson - - nfl.p.25775 - nfl.t.20 - New York Jets - NYJ - - 11 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/SbDWNixVJ_jgNSYniUxr4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/25775.png - small - - https://s.yimg.com/iu/api/res/1.2/SbDWNixVJ_jgNSYniUxr4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/25775.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.8424 - 8424 - - William Gay - William - Gay - William - Gay - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8424 - nfl.t.19 - New York Giants - NYG - - 9 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/5VBbVoWhgiEBUyQtZBe0VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8424.png - small - - https://s.yimg.com/iu/api/res/1.2/5VBbVoWhgiEBUyQtZBe0VQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8424.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8607 - 8607 - - Brent Grimes - Brent - Grimes - Brent - Grimes - - nfl.p.8607 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/ywOMjgVZ7_pD61FCPdC1.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8607.png - small - - https://s.yimg.com/iu/api/res/1.2/ywOMjgVZ7_pD61FCPdC1.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8607.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26875 - 26875 - - Marcus Cooper - Marcus - Cooper - Marcus - Cooper - - Q - Questionable - nfl.p.26875 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/gXwGBarHWMtdBXzJ5S1Ifg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26875.png - small - - https://s.yimg.com/iu/api/res/1.2/gXwGBarHWMtdBXzJ5S1Ifg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26875.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27747 - 27747 - - TJ Carrie - TJ - Carrie - TJ - Carrie - - nfl.p.27747 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/IKWqgZ8gWVDMqFpYHnDx3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27747.png - small - - https://s.yimg.com/iu/api/res/1.2/IKWqgZ8gWVDMqFpYHnDx3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27747.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.8268 - 8268 - - Darrelle Revis - Darrelle - Revis - Darrelle - Revis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8268 - nfl.t.20 - New York Jets - NYJ - - 11 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/TOUPSX6B1eKaKR79sKRBwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8268.1.png - small - - https://s.yimg.com/iu/api/res/1.2/TOUPSX6B1eKaKR79sKRBwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/8268.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28435 - 28435 - - Eric Rowe - Eric - Rowe - Eric - Rowe - - nfl.p.28435 - nfl.t.17 - New England Patriots - NE - - 11 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/eWb.fCfN0r9hKZTYmPvqfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28435.png - small - - https://s.yimg.com/iu/api/res/1.2/eWb.fCfN0r9hKZTYmPvqfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28435.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8793 - 8793 - - Dominique Rodgers-Cromartie - Dominique - Rodgers-Cromartie - Dominique - Rodgers-Cromartie - - nfl.p.8793 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/LhydZLVYB3M17j7oybCazw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8793.png - small - - https://s.yimg.com/iu/api/res/1.2/LhydZLVYB3M17j7oybCazw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8793.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26648 - 26648 - - Xavier Rhodes - Xavier - Rhodes - Xavier - Rhodes - - nfl.p.26648 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/Jflgx6l2icGy57Q5Yfx5eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26648.png - small - - https://s.yimg.com/iu/api/res/1.2/Jflgx6l2icGy57Q5Yfx5eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26648.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.28438 - 28438 - - Ronald Darby - Ronald - Darby - Ronald - Darby - - nfl.p.28438 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/flBDuDqOcAHyZBBAQWxu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28438.png - small - - https://s.yimg.com/iu/api/res/1.2/flBDuDqOcAHyZBBAQWxu2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/28438.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.29272 - 29272 - - Xavien Howard - Xavien - Howard - Xavien - Howard - - nfl.p.29272 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/DYuCkOvoHzQ3lNcRt7KAaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29272.1.png - small - - https://s.yimg.com/iu/api/res/1.2/DYuCkOvoHzQ3lNcRt7KAaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29272.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28289 - 28289 - - C.J. Goodwin - C.J. - Goodwin - C.J. - Goodwin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28289 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/5OZOppBHhD7B4Aiydy811Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28289.png - small - - https://s.yimg.com/iu/api/res/1.2/5OZOppBHhD7B4Aiydy811Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28289.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28244 - 28244 - - Malcolm Butler - Malcolm - Butler - Malcolm - Butler - - nfl.p.28244 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/RrJfM.Af3pYLlhDrHi21Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28244.png - small - - https://s.yimg.com/iu/api/res/1.2/RrJfM.Af3pYLlhDrHi21Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28244.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28406 - 28406 - - Marcus Peters - Marcus - Peters - Marcus - Peters - - nfl.p.28406 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/Lw5W_5hDSxymB4DqqTVhRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28406.png - small - - https://s.yimg.com/iu/api/res/1.2/Lw5W_5hDSxymB4DqqTVhRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28406.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 31 - 0 - - - - 380.p.26635 - 26635 - - DJ Hayden - DJ - Hayden - DJ - Hayden - - nfl.p.26635 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/_TcrjQcupmQrfeuYmlDrXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26635.png - small - - https://s.yimg.com/iu/api/res/1.2/_TcrjQcupmQrfeuYmlDrXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26635.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8797 - 8797 - - Aqib Talib - Aqib - Talib - Aqib - Talib - - nfl.p.8797 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/kG4ovuIp.k4IkikKrkFaBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8797.png - small - - https://s.yimg.com/iu/api/res/1.2/kG4ovuIp.k4IkikKrkFaBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/8797.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26659 - 26659 - - Darius Slay - Darius - Slay - Darius - Slay - - nfl.p.26659 - nfl.t.8 - Detroit Lions - Det - - 6 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/2a7LeWH10KI.NqVkRg0H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26659.png - small - - https://s.yimg.com/iu/api/res/1.2/2a7LeWH10KI.NqVkRg0H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26659.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 12 - 0 - - - - 380.p.24079 - 24079 - - Alterraun Verner - Alterraun - Verner - Alterraun - Verner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24079 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 42 - CB - - https://s.yimg.com/iu/api/res/1.2/48zbSr6b2OyXtrletqbXlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24079.png - small - - https://s.yimg.com/iu/api/res/1.2/48zbSr6b2OyXtrletqbXlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24079.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25825 - 25825 - - Coty Sensabaugh - Coty - Sensabaugh - Coty - Sensabaugh - - nfl.p.25825 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/rDkQfCWbw572EaoW0bLNJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25825.png - small - - https://s.yimg.com/iu/api/res/1.2/rDkQfCWbw572EaoW0bLNJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25825.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27708 - 27708 - - Kenneth Acker - Kenneth - Acker - Kenneth - Acker - - IR - Injured Reserve - undisclosed - nfl.p.27708 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/hVVks1n.AiJ80DM8hlYm9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27708.png - small - - https://s.yimg.com/iu/api/res/1.2/hVVks1n.AiJ80DM8hlYm9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27708.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26645 - 26645 - - Desmond Trufant - Desmond - Trufant - Desmond - Trufant - - nfl.p.26645 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/kEMDvSFRV1vNcpmQTa9kNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26645.png - small - - https://s.yimg.com/iu/api/res/1.2/kEMDvSFRV1vNcpmQTa9kNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26645.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.9480 - 9480 - - Captain Munnerlyn - Captain - Munnerlyn - Captain - Munnerlyn - - nfl.p.9480 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/yYEXjLHzqP.6w7txPK1x0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9480.png - small - - https://s.yimg.com/iu/api/res/1.2/yYEXjLHzqP.6w7txPK1x0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9480.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27642 - 27642 - - Aaron Colvin - Aaron - Colvin - Aaron - Colvin - - nfl.p.27642 - nfl.t.34 - Houston Texans - Hou - - 10 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/YjJIHT7Yb2QcMJmrCIqK5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27642.1.png - small - - https://s.yimg.com/iu/api/res/1.2/YjJIHT7Yb2QcMJmrCIqK5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27642.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29342 - 29342 - - Ryan Smith - Ryan - Smith - Ryan - Smith - - nfl.p.29342 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/9HIYHqFMpgqYl6P2W8VvZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29342.png - small - - https://s.yimg.com/iu/api/res/1.2/9HIYHqFMpgqYl6P2W8VvZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29342.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7773 - 7773 - - Johnathan Joseph - Johnathan - Joseph - Johnathan - Joseph - - nfl.p.7773 - nfl.t.34 - Houston Texans - Hou - - 10 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/_zNon7rgQYjm4sCaBWcgPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7773.png - small - - https://s.yimg.com/iu/api/res/1.2/_zNon7rgQYjm4sCaBWcgPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7773.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29296 - 29296 - - James Bradberry - James - Bradberry - James - Bradberry - - nfl.p.29296 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/FshuPuER0sOSNDospBBsag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29296.png - small - - https://s.yimg.com/iu/api/res/1.2/FshuPuER0sOSNDospBBsag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29296.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.24814 - 24814 - - Jimmy Smith - Jimmy - Smith - Jimmy - Smith - - SUSP - Suspended - nfl.p.24814 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/nP3QPJZGmi6FC2u9G3we5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24814.png - small - - https://s.yimg.com/iu/api/res/1.2/nP3QPJZGmi6FC2u9G3we5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24814.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24007 - 24007 - - Patrick Robinson - Patrick - Robinson - Patrick - Robinson - - nfl.p.24007 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/tyUcFvvOlCb1.IuaPcR8uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24007.png - small - - https://s.yimg.com/iu/api/res/1.2/tyUcFvvOlCb1.IuaPcR8uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/24007.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26706 - 26706 - - Logan Ryan - Logan - Ryan - Logan - Ryan - - nfl.p.26706 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/QxN6JKMX5xiBa7pACY8.sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26706.png - small - - https://s.yimg.com/iu/api/res/1.2/QxN6JKMX5xiBa7pACY8.sw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26706.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.29239 - 29239 - - Jalen Ramsey - Jalen - Ramsey - Jalen - Ramsey - - nfl.p.29239 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/G78YTs0Fgcafde6JOMmmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29239.png - small - - https://s.yimg.com/iu/api/res/1.2/G78YTs0Fgcafde6JOMmmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29239.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 25 - 0 - - - - 380.p.28972 - 28972 - - Troy Hill - Troy - Hill - Troy - Hill - - nfl.p.28972 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 32 - CB - - https://s.yimg.com/iu/api/res/1.2/Bh6QTBf9IALZIlX9tc8h_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28972.png - small - - https://s.yimg.com/iu/api/res/1.2/Bh6QTBf9IALZIlX9tc8h_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28972.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24120 - 24120 - - Sherrick McManis - Sherrick - McManis - Sherrick - McManis - - nfl.p.24120 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/HiPDLicjqVYGn_NrMpb8gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24120.png - small - - https://s.yimg.com/iu/api/res/1.2/HiPDLicjqVYGn_NrMpb8gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/24120.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9289 - 9289 - - Vontae Davis - Vontae - Davis - Vontae - Davis - - nfl.p.9289 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/JRFdgUe8gL04PRyxzBf1bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9289.png - small - - https://s.yimg.com/iu/api/res/1.2/JRFdgUe8gL04PRyxzBf1bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/9289.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24225 - 24225 - - Robert McClain - Robert - McClain - Robert - McClain - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24225 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/tS2MZ7kiwTdHeYpS5U7fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24225.png - small - - https://s.yimg.com/iu/api/res/1.2/tS2MZ7kiwTdHeYpS5U7fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24225.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28533 - 28533 - - Bobby McCain - Bobby - McCain - Bobby - McCain - - nfl.p.28533 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/d5xy5F05aRE3kOqe476y1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28533.1.png - small - - https://s.yimg.com/iu/api/res/1.2/d5xy5F05aRE3kOqe476y1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28533.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.6341 - 6341 - - Terence Newman - Terence - Newman - Terence - Newman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.6341 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/nRXtKCsP6OrhzPstn4alKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6341.png - small - - https://s.yimg.com/iu/api/res/1.2/nRXtKCsP6OrhzPstn4alKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6341.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29367 - 29367 - - Rashard Robinson - Rashard - Robinson - Rashard - Robinson - - SUSP - Suspended - nfl.p.29367 - nfl.t.20 - New York Jets - NYJ - - 11 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/nAwrUOYbKzLSAizvfrvfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29367.png - small - - https://s.yimg.com/iu/api/res/1.2/nAwrUOYbKzLSAizvfrvfHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29367.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24876 - 24876 - - Shareece Wright - Shareece - Wright - Shareece - Wright - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24876 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/wzRJaF0V2_sDwZ_QPuL81Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24876.png - small - - https://s.yimg.com/iu/api/res/1.2/wzRJaF0V2_sDwZ_QPuL81Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24876.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28399 - 28399 - - Trae Waynes - Trae - Waynes - Trae - Waynes - - nfl.p.28399 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/y8CyCb7BLJPU5QKAkJ7TAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28399.png - small - - https://s.yimg.com/iu/api/res/1.2/y8CyCb7BLJPU5QKAkJ7TAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28399.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29311 - 29311 - - Daryl Worley - Daryl - Worley - Daryl - Worley - - SUSP - Suspended - nfl.p.29311 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/cUmtdw9wGta7alXbGDrZwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29311.png - small - - https://s.yimg.com/iu/api/res/1.2/cUmtdw9wGta7alXbGDrZwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29311.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28486 - 28486 - - Steven Nelson - Steven - Nelson - Steven - Nelson - - nfl.p.28486 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/23b2qW4W4Wbv7Gt34evHPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28486.1.png - small - - https://s.yimg.com/iu/api/res/1.2/23b2qW4W4Wbv7Gt34evHPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28486.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29452 - 29452 - - Kevon Seymour - Kevon - Seymour - Kevon - Seymour - - IR - Injured Reserve - nfl.p.29452 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/KyZK6rYbUbAtHYU82qK9Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29452.png - small - - https://s.yimg.com/iu/api/res/1.2/KyZK6rYbUbAtHYU82qK9Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29452.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28450 - 28450 - - Quinten Rollins - Quinten - Rollins - Quinten - Rollins - - IR - Injured Reserve - hamstring - nfl.p.28450 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/6Jdw5DSQ3uxql1FRFotUDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28450.png - small - - https://s.yimg.com/iu/api/res/1.2/6Jdw5DSQ3uxql1FRFotUDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28450.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27552 - 27552 - - Darqueze Dennard - Darqueze - Dennard - Darqueze - Dennard - - nfl.p.27552 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/ftcKv6KgyypOxInS7K2c7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27552.1.png - small - - https://s.yimg.com/iu/api/res/1.2/ftcKv6KgyypOxInS7K2c7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27552.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.29245 - 29245 - - Vernon Hargreaves III - Vernon - Hargreaves III - Vernon - Hargreaves III - - nfl.p.29245 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/uVaEKmYiU_o0VcJbXJPYCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29245.png - small - - https://s.yimg.com/iu/api/res/1.2/uVaEKmYiU_o0VcJbXJPYCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29245.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29724 - 29724 - - Mike Jordan - Mike - Jordan - Mike - Jordan - - nfl.p.29724 - nfl.t.19 - New York Giants - NYG - - 9 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/ZOArE_cmMmhjgm.gJp.B0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29724.png - small - - https://s.yimg.com/iu/api/res/1.2/ZOArE_cmMmhjgm.gJp.B0w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29724.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27615 - 27615 - - Phillip Gaines - Phillip - Gaines - Phillip - Gaines - - nfl.p.27615 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/gE5KQa4R9P1_CDQrMYU.DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27615.png - small - - https://s.yimg.com/iu/api/res/1.2/gE5KQa4R9P1_CDQrMYU.DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27615.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27661 - 27661 - - Nevin Lawson - Nevin - Lawson - Nevin - Lawson - - nfl.p.27661 - nfl.t.8 - Detroit Lions - Det - - 6 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/cwuje6HQtek0QE9wy2XmWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27661.png - small - - https://s.yimg.com/iu/api/res/1.2/cwuje6HQtek0QE9wy2XmWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27661.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26674 - 26674 - - David Amerson - David - Amerson - David - Amerson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26674 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/HahhiIH1QxO8jSC7dImr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26674.1.png - small - - https://s.yimg.com/iu/api/res/1.2/HahhiIH1QxO8jSC7dImr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26674.1.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9452 - 9452 - - Brice McCain - Brice - McCain - Brice - McCain - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9452 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/uQtd6tAWLdTzCSe1IUqUZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9452.png - small - - https://s.yimg.com/iu/api/res/1.2/uQtd6tAWLdTzCSe1IUqUZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9452.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29534 - 29534 - - Trevor Williams - Trevor - Williams - Trevor - Williams - - Q - Questionable - nfl.p.29534 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/LjtyOHF4fneqjDpWKW2bfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29534.png - small - - https://s.yimg.com/iu/api/res/1.2/LjtyOHF4fneqjDpWKW2bfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29534.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29655 - 29655 - - Brian Poole - Brian - Poole - Brian - Poole - - nfl.p.29655 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 34 - CB - - https://s.yimg.com/iu/api/res/1.2/vlUui3DmM1OfwLaJVpURSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29655.png - small - - https://s.yimg.com/iu/api/res/1.2/vlUui3DmM1OfwLaJVpURSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09262017/29655.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29259 - 29259 - - Artie Burns - Artie - Burns - Artie - Burns - - nfl.p.29259 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/c.0Y0kGFKgATbM3Nz.6wIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29259.png - small - - https://s.yimg.com/iu/api/res/1.2/c.0Y0kGFKgATbM3Nz.6wIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29259.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29875 - 29875 - - Jonathan Jones - Jonathan - Jones - Jonathan - Jones - - nfl.p.29875 - nfl.t.17 - New England Patriots - NE - - 11 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/PHNpmJviemo2NC3VPBkj8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29875.png - small - - https://s.yimg.com/iu/api/res/1.2/PHNpmJviemo2NC3VPBkj8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/29875.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24941 - 24941 - - Richard Sherman - Richard - Sherman - Richard - Sherman - - nfl.p.24941 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/5_7evsVTGzZZZyLthYMbJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24941.png - small - - https://s.yimg.com/iu/api/res/1.2/5_7evsVTGzZZZyLthYMbJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24941.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.29467 - 29467 - - Jalen Mills - Jalen - Mills - Jalen - Mills - - nfl.p.29467 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/3YZZzRRjT1SFp9YlE9w40g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29467.png - small - - https://s.yimg.com/iu/api/res/1.2/3YZZzRRjT1SFp9YlE9w40g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29467.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.25749 - 25749 - - Janoris Jenkins - Janoris - Jenkins - Janoris - Jenkins - - nfl.p.25749 - nfl.t.19 - New York Giants - NYG - - 9 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/gRoQSHFSgPvr0JVPQ4irAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/25749.png - small - - https://s.yimg.com/iu/api/res/1.2/gRoQSHFSgPvr0JVPQ4irAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/25749.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28404 - 28404 - - Kevin Johnson - Kevin - Johnson - Kevin - Johnson - - Q - Questionable - nfl.p.28404 - nfl.t.34 - Houston Texans - Hou - - 10 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/Be0G_frWFWDzDH9nFt9XeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28404.png - small - - https://s.yimg.com/iu/api/res/1.2/Be0G_frWFWDzDH9nFt9XeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28404.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28588 - 28588 - - Quandre Diggs - Quandre - Diggs - Quandre - Diggs - - nfl.p.28588 - nfl.t.8 - Detroit Lions - Det - - 6 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/P2YX6KrD.k7rFLwBPvFxXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28588.png - small - - https://s.yimg.com/iu/api/res/1.2/P2YX6KrD.k7rFLwBPvFxXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28588.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25727 - 25727 - - Dre Kirkpatrick - Dre - Kirkpatrick - Dre - Kirkpatrick - - nfl.p.25727 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/3aWz03G1AyCx2.Jh.JkKGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25727.png - small - - https://s.yimg.com/iu/api/res/1.2/3aWz03G1AyCx2.Jh.JkKGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25727.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.24806 - 24806 - - Prince Amukamara - Prince - Amukamara - Prince - Amukamara - - Q - Questionable - nfl.p.24806 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/2B8u1TO5XG3bHqDjTx0WBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24806.png - small - - https://s.yimg.com/iu/api/res/1.2/2B8u1TO5XG3bHqDjTx0WBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24806.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25720 - 25720 - - Stephon Gilmore - Stephon - Gilmore - Stephon - Gilmore - - nfl.p.25720 - nfl.t.17 - New England Patriots - NE - - 11 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/0OY8sKY72UdSsKyMPajKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25720.png - small - - https://s.yimg.com/iu/api/res/1.2/0OY8sKY72UdSsKyMPajKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25720.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29391 - 29391 - - LeShaun Sims - LeShaun - Sims - LeShaun - Sims - - nfl.p.29391 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/NUD4kKvMJUGGl2b5FyfcVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29391.png - small - - https://s.yimg.com/iu/api/res/1.2/NUD4kKvMJUGGl2b5FyfcVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29391.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25882 - 25882 - - Jeremy Lane - Jeremy - Lane - Jeremy - Lane - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25882 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/6UtKaU97XBthmMwxv71QBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25882.png - small - - https://s.yimg.com/iu/api/res/1.2/6UtKaU97XBthmMwxv71QBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25882.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28418 - 28418 - - Damarious Randall - Damarious - Randall - Damarious - Randall - - Q - Questionable - nfl.p.28418 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/VRkhcnimSna8i3.TPRth2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28418.png - small - - https://s.yimg.com/iu/api/res/1.2/VRkhcnimSna8i3.TPRth2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/28418.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.25887 - 25887 - - Justin Bethel - Justin - Bethel - Justin - Bethel - - nfl.p.25887 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/jq1krnnS37CrT.MUon64FA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25887.png - small - - https://s.yimg.com/iu/api/res/1.2/jq1krnnS37CrT.MUon64FA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25887.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.26713 - 26713 - - Kayvon Webster - Kayvon - Webster - Kayvon - Webster - - nfl.p.26713 - nfl.t.34 - Houston Texans - Hou - - 10 - - 36 - CB - - https://s.yimg.com/iu/api/res/1.2/srPOxiO5B9Cr0xm7.HFOJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26713.png - small - - https://s.yimg.com/iu/api/res/1.2/srPOxiO5B9Cr0xm7.HFOJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26713.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29244 - 29244 - - Eli Apple - Eli - Apple - Eli - Apple - - nfl.p.29244 - nfl.t.19 - New York Giants - NYG - - 9 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/6vs97Lp0c.5z6QWC2nAdug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29244.png - small - - https://s.yimg.com/iu/api/res/1.2/6vs97Lp0c.5z6QWC2nAdug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29244.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27041 - 27041 - - Rashaan Melvin - Rashaan - Melvin - Rashaan - Melvin - - nfl.p.27041 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/SqFodXSyq9zrli4Bk0BqNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/27041.png - small - - https://s.yimg.com/iu/api/res/1.2/SqFodXSyq9zrli4Bk0BqNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20150904/27041.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27716 - 27716 - - E.J. Gaines - E.J. - Gaines - E.J. - Gaines - - Q - Questionable - nfl.p.27716 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/JVAY55XGIaQ6K3ZpgUtr5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27716.png - small - - https://s.yimg.com/iu/api/res/1.2/JVAY55XGIaQ6K3ZpgUtr5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27716.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27007 - 27007 - - Nickell Robey-Coleman - Nickell - Robey-Coleman - Nickell - Robey-Coleman - - nfl.p.27007 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/BbJQexUmHQAKesD.I3rxUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27007.png - small - - https://s.yimg.com/iu/api/res/1.2/BbJQexUmHQAKesD.I3rxUQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27007.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24578 - 24578 - - Tramaine Brock - Tramaine - Brock - Tramaine - Brock - - nfl.p.24578 - nfl.t.7 - Denver Broncos - Den - - 10 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/RvZrO38LiqPlzb7IszjNKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24578.png - small - - https://s.yimg.com/iu/api/res/1.2/RvZrO38LiqPlzb7IszjNKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24578.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29423 - 29423 - - Anthony Brown - Anthony - Brown - Anthony - Brown - - nfl.p.29423 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 30 - CB - - https://s.yimg.com/iu/api/res/1.2/ucyjFBaybVUhzRTK1V.WXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29423.png - small - - https://s.yimg.com/iu/api/res/1.2/ucyjFBaybVUhzRTK1V.WXA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/29423.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25772 - 25772 - - Casey Hayward - Casey - Hayward - Casey - Hayward - - Q - Questionable - nfl.p.25772 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/FSBY5VN3hIEQcK1NsHzPog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25772.png - small - - https://s.yimg.com/iu/api/res/1.2/FSBY5VN3hIEQcK1NsHzPog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25772.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.29876 - 29876 - - Cre'von LeBlanc - Cre'von - LeBlanc - Cre'von - LeBlanc - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29876 - nfl.t.8 - Detroit Lions - Det - - 6 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/dd6KbQ9E3GxvhGHuAvdDgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29876.1.png - small - - https://s.yimg.com/iu/api/res/1.2/dd6KbQ9E3GxvhGHuAvdDgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29876.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8906 - 8906 - - Brandon Carr - Brandon - Carr - Brandon - Carr - - nfl.p.8906 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/3EsVVn_3ApVIW0J7LDUMhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8906.png - small - - https://s.yimg.com/iu/api/res/1.2/3EsVVn_3ApVIW0J7LDUMhQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8906.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27637 - 27637 - - Ross Cockrell - Ross - Cockrell - Ross - Cockrell - - IR - Injured Reserve - fractured left tibia/fibula - nfl.p.27637 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 47 - CB - - https://s.yimg.com/iu/api/res/1.2/23btzzkqoUiJDCdwGU3P.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27637.png - small - - https://s.yimg.com/iu/api/res/1.2/23btzzkqoUiJDCdwGU3P.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27637.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28835 - 28835 - - Justin Coleman - Justin - Coleman - Justin - Coleman - - nfl.p.28835 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/qmaeC3zp6tRRszpzT4HlbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28835.png - small - - https://s.yimg.com/iu/api/res/1.2/qmaeC3zp6tRRszpzT4HlbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09252017/28835.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25853 - 25853 - - Josh Norman - Josh - Norman - Josh - Norman - - nfl.p.25853 - nfl.t.28 - Washington Redskins - Was - - 4 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/iFXaQ2Fg1OSxnECM5pabAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25853.png - small - - https://s.yimg.com/iu/api/res/1.2/iFXaQ2Fg1OSxnECM5pabAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25853.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.8272 - 8272 - - Leon Hall - Leon - Hall - Leon - Hall - - nfl.p.8272 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/wLaleWP8xm6bJEYnwo_iOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8272.png - small - - https://s.yimg.com/iu/api/res/1.2/wLaleWP8xm6bJEYnwo_iOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/8272.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27630 - 27630 - - Bashaud Breeland - Bashaud - Breeland - Bashaud - Breeland - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27630 - nfl.t.28 - Washington Redskins - Was - - 4 - - 26 - CB - - https://s.yimg.com/iu/api/res/1.2/MDAE_uKY.vuS2oGt011sCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27630.png - small - - https://s.yimg.com/iu/api/res/1.2/MDAE_uKY.vuS2oGt011sCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27630.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27657 - 27657 - - Dontae Johnson - Dontae - Johnson - Dontae - Johnson - - nfl.p.27657 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/vQ1ToTuz6dLX4PEjb_80ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27657.png - small - - https://s.yimg.com/iu/api/res/1.2/vQ1ToTuz6dLX4PEjb_80ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/27657.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29318 - 29318 - - Kendall Fuller - Kendall - Fuller - Kendall - Fuller - - nfl.p.29318 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/PGfHh0A0Vf2bdcrrfE_Gyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29318.png - small - - https://s.yimg.com/iu/api/res/1.2/PGfHh0A0Vf2bdcrrfE_Gyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29318.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24918 - 24918 - - Davon House - Davon - House - Davon - House - - Q - Questionable - nfl.p.24918 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 31 - CB - - https://s.yimg.com/iu/api/res/1.2/2I3ry_YgPlUtgRtyfGGfNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24918.png - small - - https://s.yimg.com/iu/api/res/1.2/2I3ry_YgPlUtgRtyfGGfNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24918.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25716 - 25716 - - Morris Claiborne - Morris - Claiborne - Morris - Claiborne - - nfl.p.25716 - nfl.t.20 - New York Jets - NYJ - - 11 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/T1AsO_2J6STQJC7GsXyUqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25716.png - small - - https://s.yimg.com/iu/api/res/1.2/T1AsO_2J6STQJC7GsXyUqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25716.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25189 - 25189 - - Chris Harris Jr. - Chris - Harris Jr. - Chris - Harris Jr. - - nfl.p.25189 - nfl.t.7 - Denver Broncos - Den - - 10 - - 25 - CB - - https://s.yimg.com/iu/api/res/1.2/e3R8rvvcDqsoblTxc.yBzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25189.png - small - - https://s.yimg.com/iu/api/res/1.2/e3R8rvvcDqsoblTxc.yBzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25189.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26683 - 26683 - - Robert Alford - Robert - Alford - Robert - Alford - - nfl.p.26683 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/ErGC9IXemgkY1B3.OQoeOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26683.png - small - - https://s.yimg.com/iu/api/res/1.2/ErGC9IXemgkY1B3.OQoeOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26683.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27782 - 27782 - - Terrance Mitchell - Terrance - Mitchell - Terrance - Mitchell - - nfl.p.27782 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/0ahPxtz3RtVAiBxy6ZPM5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/27782.png - small - - https://s.yimg.com/iu/api/res/1.2/0ahPxtz3RtVAiBxy6ZPM5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20141101/27782.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27559 - 27559 - - Bradley Roby - Bradley - Roby - Bradley - Roby - - nfl.p.27559 - nfl.t.7 - Denver Broncos - Den - - 10 - - 29 - CB - - https://s.yimg.com/iu/api/res/1.2/ydiDdmuCv3kaOM5k7PtPUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27559.png - small - - https://s.yimg.com/iu/api/res/1.2/ydiDdmuCv3kaOM5k7PtPUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27559.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27644 - 27644 - - Keith McGill - Keith - McGill - Keith - McGill - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27644 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 39 - CB - - https://s.yimg.com/iu/api/res/1.2/9N7VqsCIOepqx1bUS9Kr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27644.png - small - - https://s.yimg.com/iu/api/res/1.2/9N7VqsCIOepqx1bUS9Kr.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27644.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27337 - 27337 - - A.J. Bouye - A.J. - Bouye - A.J. - Bouye - - nfl.p.27337 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/KnEkTnN2lKeueD8.Fog8CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27337.png - small - - https://s.yimg.com/iu/api/res/1.2/KnEkTnN2lKeueD8.Fog8CQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27337.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 13 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27653 - 27653 - - Walt Aikens - Walt - Aikens - Walt - Aikens - - nfl.p.27653 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 35 - CB - - https://s.yimg.com/iu/api/res/1.2/NwtZACrx6LfkfDuP0V9HaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27653.1.png - small - - https://s.yimg.com/iu/api/res/1.2/NwtZACrx6LfkfDuP0V9HaA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27653.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26122 - 26122 - - Neiko Thorpe - Neiko - Thorpe - Neiko - Thorpe - - Q - Questionable - nfl.p.26122 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/_eozAyWoEo71ELc0wg9L6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26122.1.png - small - - https://s.yimg.com/iu/api/res/1.2/_eozAyWoEo71ELc0wg9L6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26122.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26677 - 26677 - - Jamar Taylor - Jamar - Taylor - Jamar - Taylor - - nfl.p.26677 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 28 - CB - - https://s.yimg.com/iu/api/res/1.2/MqPxHJoRtlJNj7sYi6gCLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26677.1.png - small - - https://s.yimg.com/iu/api/res/1.2/MqPxHJoRtlJNj7sYi6gCLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26677.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24792 - 24792 - - Patrick Peterson - Patrick - Peterson - Patrick - Peterson - - nfl.p.24792 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/DBT2QbikJyxG0B9yDiGtFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24792.png - small - - https://s.yimg.com/iu/api/res/1.2/DBT2QbikJyxG0B9yDiGtFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24792.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.8212 - 8212 - - Tramon Williams - Tramon - Williams - Tramon - Williams - - nfl.p.8212 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 38 - CB - - https://s.yimg.com/iu/api/res/1.2/0FAHdJ5Sqt_4I1zw1_sQEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8212.png - small - - https://s.yimg.com/iu/api/res/1.2/0FAHdJ5Sqt_4I1zw1_sQEQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8212.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28635 - 28635 - - Darryl Roberts - Darryl - Roberts - Darryl - Roberts - - nfl.p.28635 - nfl.t.20 - New York Jets - NYJ - - 11 - - 27 - CB - - https://s.yimg.com/iu/api/res/1.2/owKSvssOyQ.vl.L6m3ejLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28635.1.png - small - - https://s.yimg.com/iu/api/res/1.2/owKSvssOyQ.vl.L6m3ejLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28635.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27215 - 27215 - - Darryl Morris - Darryl - Morris - Darryl - Morris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27215 - nfl.t.19 - New York Giants - NYG - - 9 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/PrEP6HPEfMBkKK4c9UY67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27215.1.png - small - - https://s.yimg.com/iu/api/res/1.2/PrEP6HPEfMBkKK4c9UY67w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27215.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.23982 - 23982 - - Joe Haden - Joe - Haden - Joe - Haden - - nfl.p.23982 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/d54pXYAOdxeUG2qimW21PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23982.png - small - - https://s.yimg.com/iu/api/res/1.2/d54pXYAOdxeUG2qimW21PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/23982.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26366 - 26366 - - Johnson Bademosi - Johnson - Bademosi - Johnson - Bademosi - - nfl.p.26366 - nfl.t.34 - Houston Texans - Hou - - 10 - - 23 - CB - - https://s.yimg.com/iu/api/res/1.2/McOWzkWzTqKwzrsHmiLBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26366.png - small - - https://s.yimg.com/iu/api/res/1.2/McOWzkWzTqKwzrsHmiLBWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26366.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24960 - 24960 - - Byron Maxwell - Byron - Maxwell - Byron - Maxwell - - IR - Injured Reserve - hip - nfl.p.24960 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 41 - CB - - https://s.yimg.com/iu/api/res/1.2/yYX1NXUucmV5DsR5C_GtVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24960.png - small - - https://s.yimg.com/iu/api/res/1.2/yYX1NXUucmV5DsR5C_GtVg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24960.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29340 - 29340 - - Eric Murray - Eric - Murray - Eric - Murray - - nfl.p.29340 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 21 - CB - - https://s.yimg.com/iu/api/res/1.2/qqi6.7IEzpFLGVjbMPP1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29340.1.png - small - - https://s.yimg.com/iu/api/res/1.2/qqi6.7IEzpFLGVjbMPP1bw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29340.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.100002 - 100002 - - Buffalo - Buffalo - - Buffalo - - - nfl.p.100002 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/buf.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/buf.gif - 0 - DT - - DEF - - - 125.5 - 13.3 - 1.1 - 0.02 - - - week - 1 - 2 - 0 - - - - 380.p.26707 - 26707 - - Shawn Williams - Shawn - Williams - Shawn - Williams - - nfl.p.26707 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 36 - S - - https://s.yimg.com/iu/api/res/1.2/aopygS.HHGFxMNpfvlpg5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26707.1.png - small - - https://s.yimg.com/iu/api/res/1.2/aopygS.HHGFxMNpfvlpg5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26707.1.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24759 - 24759 - - Andrew Sendejo - Andrew - Sendejo - Andrew - Sendejo - - nfl.p.24759 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 34 - S - - https://s.yimg.com/iu/api/res/1.2/w_SEMUTah9gP_rM_TFRTGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24759.png - small - - https://s.yimg.com/iu/api/res/1.2/w_SEMUTah9gP_rM_TFRTGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24759.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27545 - 27545 - - C.J. Mosley - C.J. - Mosley - C.J. - Mosley - - nfl.p.27545 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 57 - LB - - https://s.yimg.com/iu/api/res/1.2/IpKKP6xCTQ7uvZRSK305rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27545.png - small - - https://s.yimg.com/iu/api/res/1.2/IpKKP6xCTQ7uvZRSK305rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27545.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 81 - 0 - - - - 380.p.24045 - 24045 - - Ed Dickson - Ed - Dickson - Ed - Dickson - - O - Out - nfl.p.24045 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/yG_5FBFZDc7cUjGbkZ6CPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24045.png - small - - https://s.yimg.com/iu/api/res/1.2/yG_5FBFZDc7cUjGbkZ6CPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24045.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7182 - 7182 - - Adam Jones - Adam - Jones - Adam - Jones - - nfl.p.7182 - nfl.t.7 - Denver Broncos - Den - - 10 - - 24 - CB - - https://s.yimg.com/iu/api/res/1.2/WMIX25U2vrcjuOyFTbIBIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/7182.png - small - - https://s.yimg.com/iu/api/res/1.2/WMIX25U2vrcjuOyFTbIBIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/7182.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27576 - 27576 - - Timmy Jernigan - Timmy - Jernigan - Timmy - Jernigan - - O - Out - nfl.p.27576 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 93 - DT - - https://s.yimg.com/iu/api/res/1.2/vIuSd0GYqLtp.JY4cDdf3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27576.png - small - - https://s.yimg.com/iu/api/res/1.2/vIuSd0GYqLtp.JY4cDdf3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27576.png - 0 - DP - - DT - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29507 - 29507 - - Briean Boddy-Calhoun - Briean - Boddy-Calhoun - Briean - Boddy-Calhoun - - nfl.p.29507 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 20 - CB - - https://s.yimg.com/iu/api/res/1.2/yQDzBzL4dRs9lZ4Q3pwlsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29507.1.png - small - - https://s.yimg.com/iu/api/res/1.2/yQDzBzL4dRs9lZ4Q3pwlsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29507.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29294 - 29294 - - Cyrus Jones - Cyrus - Jones - Cyrus - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29294 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 33 - CB - - https://s.yimg.com/iu/api/res/1.2/j.JUYvnBw0ilatx2QUoesQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29294.png - small - - https://s.yimg.com/iu/api/res/1.2/j.JUYvnBw0ilatx2QUoesQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29294.png - 0 - DP - - CB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29847 - 29847 - - De'Vante Harris - De'Vante - Harris - De'Vante - Harris - - nfl.p.29847 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/MWTTyLsTowRfD_aGE.lQPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29847.png - small - - https://s.yimg.com/iu/api/res/1.2/MWTTyLsTowRfD_aGE.lQPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29847.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27593 - 27593 - - C.J. Fiedorowicz - C.J. - Fiedorowicz - C.J. - Fiedorowicz - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27593 - nfl.t.34 - Houston Texans - Hou - - 10 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/60.6bL59dds8DntPHEx2ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27593.png - small - - https://s.yimg.com/iu/api/res/1.2/60.6bL59dds8DntPHEx2ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27593.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9278 - 9278 - - Malcolm Jenkins - Malcolm - Jenkins - Malcolm - Jenkins - - nfl.p.9278 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 27 - S - - https://s.yimg.com/iu/api/res/1.2/wADObqYJt4LSbJHb99ss6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9278.png - small - - https://s.yimg.com/iu/api/res/1.2/wADObqYJt4LSbJHb99ss6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/9278.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.30138 - 30138 - - Jabrill Peppers - Jabrill - Peppers - Jabrill - Peppers - - nfl.p.30138 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 22 - S - - https://s.yimg.com/iu/api/res/1.2/mYQkFg6BOPVZx.aWAi0alg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30138.png - small - - https://s.yimg.com/iu/api/res/1.2/mYQkFg6BOPVZx.aWAi0alg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30138.png - 0 - DP - - S - - - - - - - - - - - - - week - 1 - 11 - 0 - - - - 380.p.29258 - 29258 - - William Jackson - William - Jackson - William - Jackson - - nfl.p.29258 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 22 - CB - - https://s.yimg.com/iu/api/res/1.2/QrMoDfM_LEK6bXhnQvphBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29258.1.png - small - - https://s.yimg.com/iu/api/res/1.2/QrMoDfM_LEK6bXhnQvphBQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29258.1.png - 0 - DP - - CB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.24797 - 24797 - - Blaine Gabbert - Blaine - Gabbert - Blaine - Gabbert - - nfl.p.24797 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/DNkFw5eT.pH6PzGABeR.Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24797.png - small - - https://s.yimg.com/iu/api/res/1.2/DNkFw5eT.pH6PzGABeR.Uw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24797.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25738 - 25738 - - Nick Perry - Nick - Perry - Nick - Perry - - Q - Questionable - nfl.p.25738 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 53 - LB - - https://s.yimg.com/iu/api/res/1.2/CcISryT7rek93lpTJvtYSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25738.png - small - - https://s.yimg.com/iu/api/res/1.2/CcISryT7rek93lpTJvtYSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25738.png - 0 - DP - - LB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9294 - 9294 - - Kenny Britt - Kenny - Britt - Kenny - Britt - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9294 - nfl.t.17 - New England Patriots - NE - - 11 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/vU7425EMyuNNEGq8iF4VqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9294.png - small - - https://s.yimg.com/iu/api/res/1.2/vU7425EMyuNNEGq8iF4VqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9294.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8432 - 8432 - - Nick Folk - Nick - Folk - Nick - Folk - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8432 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 2 - K - - https://s.yimg.com/iu/api/res/1.2/9PL1M8m8mTcvQT4HJHYaEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8432.png - small - - https://s.yimg.com/iu/api/res/1.2/9PL1M8m8mTcvQT4HJHYaEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8432.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27670 - 27670 - - Ryan Grant - Ryan - Grant - Ryan - Grant - - nfl.p.27670 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/aNQu_HfvC25tJ3dMTLpVtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27670.png - small - - https://s.yimg.com/iu/api/res/1.2/aNQu_HfvC25tJ3dMTLpVtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27670.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.28514 - 28514 - - Mike Davis - Mike - Davis - Mike - Davis - - nfl.p.28514 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/TXMqfOQMCePKxEXZvhQfew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28514.png - small - - https://s.yimg.com/iu/api/res/1.2/TXMqfOQMCePKxEXZvhQfew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28514.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28234 - 28234 - - Taylor Gabriel - Taylor - Gabriel - Taylor - Gabriel - - nfl.p.28234 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/eSSgPPgTWA5VSYovAdlUAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28234.png - small - - https://s.yimg.com/iu/api/res/1.2/eSSgPPgTWA5VSYovAdlUAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28234.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28590 - 28590 - - A.J. Derby - A.J. - Derby - A.J. - Derby - - nfl.p.28590 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/4Ii8pEJsxevXfstqPq5hLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28590.png - small - - https://s.yimg.com/iu/api/res/1.2/4Ii8pEJsxevXfstqPq5hLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28590.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30202 - 30202 - - D'Onta Foreman - D'Onta - Foreman - D'Onta - Foreman - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.30202 - nfl.t.34 - Houston Texans - Hou - - 10 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/Lr2uijdlhN59IJuaKKSzdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30202.png - small - - https://s.yimg.com/iu/api/res/1.2/Lr2uijdlhN59IJuaKKSzdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30202.png - 0 - O - - RB - - 1 - - 128.1 - 14.1 - 1.6 - 0.06 - - - week - 1 - 8 - 0 - - - - 380.p.26781 - 26781 - - Luke Willson - Luke - Willson - Luke - Willson - - Q - Questionable - nfl.p.26781 - nfl.t.8 - Detroit Lions - Det - - 6 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/vtmNuECGtBjCVwARL_A8Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26781.png - small - - https://s.yimg.com/iu/api/res/1.2/vtmNuECGtBjCVwARL_A8Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26781.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28718 - 28718 - - Rod Smith - Rod - Smith - Rod - Smith - - nfl.p.28718 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/vumeNvOkD53cXcy2YqFvtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28718.png - small - - https://s.yimg.com/iu/api/res/1.2/vumeNvOkD53cXcy2YqFvtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28718.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.100015 - 100015 - - Miami - Miami - - Miami - - - nfl.p.100015 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - - DEF - - https://s.yimg.com/xe/ipt/50x50w.5.gif - small - - https://s.yimg.com/xe/ipt/50x50w.5.gif - 0 - DT - - DEF - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.7505 - 7505 - - Nick Novak - Nick - Novak - Nick - Novak - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7505 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 9 - K - - https://s.yimg.com/iu/api/res/1.2/WivLV5QmdlxoTptfT2Ip1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/7505.png - small - - https://s.yimg.com/iu/api/res/1.2/WivLV5QmdlxoTptfT2Ip1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/7505.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28582 - 28582 - - Nick O'Leary - Nick - O'Leary - Nick - O'Leary - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28582 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/xKElw8hrEXXo33v8LY.vyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28582.png - small - - https://s.yimg.com/iu/api/res/1.2/xKElw8hrEXXo33v8LY.vyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28582.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26697 - 26697 - - Terrance Williams - Terrance - Williams - Terrance - Williams - - nfl.p.26697 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/JW_ToCcFxHhGEoHLhyvSnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26697.png - small - - https://s.yimg.com/iu/api/res/1.2/JW_ToCcFxHhGEoHLhyvSnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26697.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.29372 - 29372 - - Seth DeValve - Seth - DeValve - Seth - DeValve - - Q - Questionable - nfl.p.29372 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/5GT86roCW2nX9_xjkdauWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29372.png - small - - https://s.yimg.com/iu/api/res/1.2/5GT86roCW2nX9_xjkdauWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29372.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30253 - 30253 - - Wayne Gallman - Wayne - Gallman - Wayne - Gallman - - nfl.p.30253 - nfl.t.19 - New York Giants - NYG - - 9 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/FNGzRAeFsijQXvnrg9FhJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30253.png - small - - https://s.yimg.com/iu/api/res/1.2/FNGzRAeFsijQXvnrg9FhJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30253.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27634 - 27634 - - Bruce Ellington - Bruce - Ellington - Bruce - Ellington - - nfl.p.27634 - nfl.t.34 - Houston Texans - Hou - - 10 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/B3KAm_SiF3CgVnaiCLRQQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27634.png - small - - https://s.yimg.com/iu/api/res/1.2/B3KAm_SiF3CgVnaiCLRQQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27634.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28495 - 28495 - - Justin Hardy - Justin - Hardy - Justin - Hardy - - nfl.p.28495 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/9QQenM9TFYeEpSf5IiqfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28495.png - small - - https://s.yimg.com/iu/api/res/1.2/9QQenM9TFYeEpSf5IiqfNA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28495.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7223 - 7223 - - Mike Nugent - Mike - Nugent - Mike - Nugent - - nfl.p.7223 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 6 - K - - https://s.yimg.com/iu/api/res/1.2/cawO_RZYBS3Tlmi8r9LtVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7223.1.png - small - - https://s.yimg.com/iu/api/res/1.2/cawO_RZYBS3Tlmi8r9LtVA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/7223.1.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26832 - 26832 - - Brice Butler - Brice - Butler - Brice - Butler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26832 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/sXKLtvrIvwFoUW6L64qbHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26832.png - small - - https://s.yimg.com/iu/api/res/1.2/sXKLtvrIvwFoUW6L64qbHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26832.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28638 - 28638 - - Trevor Siemian - Trevor - Siemian - Trevor - Siemian - - nfl.p.28638 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/1xg7XPVmLFPIIevgusBzjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28638.png - small - - https://s.yimg.com/iu/api/res/1.2/1xg7XPVmLFPIIevgusBzjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28638.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26456 - 26456 - - Deonte Thompson - Deonte - Thompson - Deonte - Thompson - - nfl.p.26456 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/ZEvd1HckSAkE5eH6tRrUMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26456.png - small - - https://s.yimg.com/iu/api/res/1.2/ZEvd1HckSAkE5eH6tRrUMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26456.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26108 - 26108 - - Josh Bellamy - Josh - Bellamy - Josh - Bellamy - - nfl.p.26108 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/ZeLe98BIQuDqzdE7gvzXNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26108.png - small - - https://s.yimg.com/iu/api/res/1.2/ZeLe98BIQuDqzdE7gvzXNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26108.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29650 - 29650 - - J.D. McKissic - J.D. - McKissic - J.D. - McKissic - - IR - Injured Reserve - foot - nfl.p.29650 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 21 - RB - - https://s.yimg.com/iu/api/res/1.2/hEpB5_.vOMYK9EP_cDr5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29650.png - small - - https://s.yimg.com/iu/api/res/1.2/hEpB5_.vOMYK9EP_cDr5NA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29650.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28480 - 28480 - - Jeff Heuerman - Jeff - Heuerman - Jeff - Heuerman - - nfl.p.28480 - nfl.t.7 - Denver Broncos - Den - - 10 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/k.ycRjoEajEHvzZec7abpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28480.png - small - - https://s.yimg.com/iu/api/res/1.2/k.ycRjoEajEHvzZec7abpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28480.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7868 - 7868 - - Brandon Marshall - Brandon - Marshall - Brandon - Marshall - - nfl.p.7868 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/KL5.SArCl.edOiPKSQt4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7868.png - small - - https://s.yimg.com/iu/api/res/1.2/KL5.SArCl.edOiPKSQt4Ug--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/7868.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 7 - 0 - - - - 380.p.26756 - 26756 - - Levine Toilolo - Levine - Toilolo - Levine - Toilolo - - nfl.p.26756 - nfl.t.8 - Detroit Lions - Det - - 6 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/DQizynXqF86z9xXVw9b3bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26756.png - small - - https://s.yimg.com/iu/api/res/1.2/DQizynXqF86z9xXVw9b3bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26756.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26612 - 26612 - - Darren Fells - Darren - Fells - Darren - Fells - - nfl.p.26612 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/ktgw5GU7Cy3cqiN1tB9bHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26612.png - small - - https://s.yimg.com/iu/api/res/1.2/ktgw5GU7Cy3cqiN1tB9bHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26612.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27626 - 27626 - - Richard Rodgers - Richard - Rodgers - Richard - Rodgers - - IR - Injured Reserve - knee - nfl.p.27626 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/.C0lEyWlhABmKpSyxl.2Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27626.png - small - - https://s.yimg.com/iu/api/res/1.2/.C0lEyWlhABmKpSyxl.2Yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27626.png - 0 - O - - TE - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25885 - 25885 - - Blair Walsh - Blair - Walsh - Blair - Walsh - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25885 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 7 - K - - https://s.yimg.com/iu/api/res/1.2/8F63IEVK3XWhk.G7kliWjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25885.png - small - - https://s.yimg.com/iu/api/res/1.2/8F63IEVK3XWhk.G7kliWjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/25885.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24062 - 24062 - - Eric Decker - Eric - Decker - Eric - Decker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24062 - nfl.t.17 - New England Patriots - NE - - 11 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/9tAeSwIB_5UHDxdU4_FnZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24062.1.png - small - - https://s.yimg.com/iu/api/res/1.2/9tAeSwIB_5UHDxdU4_FnZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24062.1.png - 0 - O - - WR - - 1 - - 122.4 - 12.9 - 1.2 - 0.02 - - - week - 1 - 1 - 0 - - - - 380.p.29288 - 29288 - - Tyler Boyd - Tyler - Boyd - Tyler - Boyd - - nfl.p.29288 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/3LEta74r713FOMJHEtxpkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29288.png - small - - https://s.yimg.com/iu/api/res/1.2/3LEta74r713FOMJHEtxpkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29288.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24991 - 24991 - - Virgil Green - Virgil - Green - Virgil - Green - - nfl.p.24991 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/0H0X7u8l4e8G7fVNN7mf6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24991.png - small - - https://s.yimg.com/iu/api/res/1.2/0H0X7u8l4e8G7fVNN7mf6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/24991.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27648 - 27648 - - Logan Thomas - Logan - Thomas - Logan - Thomas - - nfl.p.27648 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/WnZ.DpocPvVZ0d5ijzu1zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27648.png - small - - https://s.yimg.com/iu/api/res/1.2/WnZ.DpocPvVZ0d5ijzu1zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27648.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26652 - 26652 - - Cordarrelle Patterson - Cordarrelle - Patterson - Cordarrelle - Patterson - - nfl.p.26652 - nfl.t.17 - New England Patriots - NE - - 11 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/kLg0BEwdKyUFiDuJ0W517A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26652.png - small - - https://s.yimg.com/iu/api/res/1.2/kLg0BEwdKyUFiDuJ0W517A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26652.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.24834 - 24834 - - Lance Kendricks - Lance - Kendricks - Lance - Kendricks - - nfl.p.24834 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/tQVe.fnl3K_TAlGpuVCt.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24834.png - small - - https://s.yimg.com/iu/api/res/1.2/tQVe.fnl3K_TAlGpuVCt.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24834.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26729 - 26729 - - Dion Sims - Dion - Sims - Dion - Sims - - Q - Questionable - nfl.p.26729 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/cRuLNw..lCelKWKW_kS8qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26729.png - small - - https://s.yimg.com/iu/api/res/1.2/cRuLNw..lCelKWKW_kS8qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26729.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28730 - 28730 - - Damiere Byrd - Damiere - Byrd - Damiere - Byrd - - nfl.p.28730 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/sx6eeqSmLeBHQjIFqSLoZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28730.png - small - - https://s.yimg.com/iu/api/res/1.2/sx6eeqSmLeBHQjIFqSLoZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28730.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29344 - 29344 - - Tyler Higbee - Tyler - Higbee - Tyler - Higbee - - nfl.p.29344 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/KLpT6dubjYkpenHT_DXSPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29344.png - small - - https://s.yimg.com/iu/api/res/1.2/KLpT6dubjYkpenHT_DXSPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29344.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27717 - 27717 - - TJ Jones - TJ - Jones - TJ - Jones - - nfl.p.27717 - nfl.t.8 - Detroit Lions - Det - - 6 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/Rzek78L4Sxs4dk3V6KViCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27717.png - small - - https://s.yimg.com/iu/api/res/1.2/Rzek78L4Sxs4dk3V6KViCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27717.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25838 - 25838 - - Rhett Ellison - Rhett - Ellison - Rhett - Ellison - - Q - Questionable - nfl.p.25838 - nfl.t.19 - New York Giants - NYG - - 9 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/hWL798ISn530l1znOl0WnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25838.png - small - - https://s.yimg.com/iu/api/res/1.2/hWL798ISn530l1znOl0WnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25838.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24845 - 24845 - - Torrey Smith - Torrey - Smith - Torrey - Smith - - nfl.p.24845 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/cnz9SPmTiomlDoyc1kFkMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24845.png - small - - https://s.yimg.com/iu/api/res/1.2/cnz9SPmTiomlDoyc1kFkMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24845.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28464 - 28464 - - Chris Conley - Chris - Conley - Chris - Conley - - nfl.p.28464 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/Cq7P6MQNeBvW85FalXycLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28464.png - small - - https://s.yimg.com/iu/api/res/1.2/Cq7P6MQNeBvW85FalXycLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28464.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28214 - 28214 - - Seth Roberts - Seth - Roberts - Seth - Roberts - - nfl.p.28214 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/GO2WLCQDPSljvPjmnmNf4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28214.png - small - - https://s.yimg.com/iu/api/res/1.2/GO2WLCQDPSljvPjmnmNf4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28214.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24940 - 24940 - - Jeremy Kerley - Jeremy - Kerley - Jeremy - Kerley - - nfl.p.24940 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/rwRzVJ8oySBpU9CFWfBB9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24940.png - small - - https://s.yimg.com/iu/api/res/1.2/rwRzVJ8oySBpU9CFWfBB9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24940.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30290 - 30290 - - Trent Taylor - Trent - Taylor - Trent - Taylor - - nfl.p.30290 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/3iKAaVOSzRww4bnGyTTUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30290.png - small - - https://s.yimg.com/iu/api/res/1.2/3iKAaVOSzRww4bnGyTTUpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30290.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27921 - 27921 - - Brandon Coleman - Brandon - Coleman - Brandon - Coleman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27921 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/CfZuEmeplbQ7F1RiSj5B3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27921.png - small - - https://s.yimg.com/iu/api/res/1.2/CfZuEmeplbQ7F1RiSj5B3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27921.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29855 - 29855 - - Roger Lewis - Roger - Lewis - Roger - Lewis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29855 - nfl.t.19 - New York Giants - NYG - - 9 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/lbV7AcdMjL_N0XhrPcdufQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29855.png - small - - https://s.yimg.com/iu/api/res/1.2/lbV7AcdMjL_N0XhrPcdufQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29855.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27826 - 27826 - - Bennie Fowler - Bennie - Fowler - Bennie - Fowler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27826 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/7CC_TFcY3jUSiSJLDCk6Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27826.png - small - - https://s.yimg.com/iu/api/res/1.2/7CC_TFcY3jUSiSJLDCk6Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27826.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.100011 - 100011 - - Indianapolis - Indianapolis - - Indianapolis - - - nfl.p.100011 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ind.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/ind.gif - 0 - DT - - DEF - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25774 - 25774 - - Dwayne Allen - Dwayne - Allen - Dwayne - Allen - - nfl.p.25774 - nfl.t.17 - New England Patriots - NE - - 11 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/5DWqD7kr5H9QbEQvS5Ha5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25774.png - small - - https://s.yimg.com/iu/api/res/1.2/5DWqD7kr5H9QbEQvS5Ha5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25774.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29341 - 29341 - - Chris Moore - Chris - Moore - Chris - Moore - - nfl.p.29341 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/4flzOdfzlIvAyygRza9_rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29341.png - small - - https://s.yimg.com/iu/api/res/1.2/4flzOdfzlIvAyygRza9_rA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29341.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27584 - 27584 - - Cody Latimer - Cody - Latimer - Cody - Latimer - - nfl.p.27584 - nfl.t.19 - New York Giants - NYG - - 9 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/lZEQaqG3LKoit.s4yS6H7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27584.png - small - - https://s.yimg.com/iu/api/res/1.2/lZEQaqG3LKoit.s4yS6H7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27584.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27174 - 27174 - - Demetrius Harris - Demetrius - Harris - Demetrius - Harris - - SUSP - Suspended - nfl.p.27174 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/4Q_6Pwo78Z_exSK99nBEkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27174.png - small - - https://s.yimg.com/iu/api/res/1.2/4Q_6Pwo78Z_exSK99nBEkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27174.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25871 - 25871 - - Randy Bullock - Randy - Bullock - Randy - Bullock - - nfl.p.25871 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/UDtHBPRLbO0Wfi3iY6M1vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25871.png - small - - https://s.yimg.com/iu/api/res/1.2/UDtHBPRLbO0Wfi3iY6M1vw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25871.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28483 - 28483 - - Matt Jones - Matt - Jones - Matt - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28483 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/ahaqxNNxp.3C.ryp3E2aqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28483.png - small - - https://s.yimg.com/iu/api/res/1.2/ahaqxNNxp.3C.ryp3E2aqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28483.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29609 - 29609 - - Chester Rogers - Chester - Rogers - Chester - Rogers - - nfl.p.29609 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/9jBX1EgVjyyFI.gr9uxSLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29609.png - small - - https://s.yimg.com/iu/api/res/1.2/9jBX1EgVjyyFI.gr9uxSLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29609.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28658 - 28658 - - Eric Tomlinson - Eric - Tomlinson - Eric - Tomlinson - - nfl.p.28658 - nfl.t.20 - New York Jets - NYJ - - 11 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/oNNjsp8Al2KAGsOqwdO0yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28658.png - small - - https://s.yimg.com/iu/api/res/1.2/oNNjsp8Al2KAGsOqwdO0yw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28658.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7426 - 7426 - - Ryan Fitzpatrick - Ryan - Fitzpatrick - Ryan - Fitzpatrick - - nfl.p.7426 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 14 - QB - - https://s.yimg.com/iu/api/res/1.2/ta9GDBf.b8AfuXhbrO7Wmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7426.png - small - - https://s.yimg.com/iu/api/res/1.2/ta9GDBf.b8AfuXhbrO7Wmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7426.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30008 - 30008 - - Austin Traylor - Austin - Traylor - Austin - Traylor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30008 - nfl.t.7 - Denver Broncos - Den - - 10 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/ij9_HMm2i_0Zg12wzGtW.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30008.png - small - - https://s.yimg.com/iu/api/res/1.2/ij9_HMm2i_0Zg12wzGtW.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30008.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27914 - 27914 - - Erik Swoope - Erik - Swoope - Erik - Swoope - - nfl.p.27914 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/9gZ4rIycWkMylBChLio70A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27914.png - small - - https://s.yimg.com/iu/api/res/1.2/9gZ4rIycWkMylBChLio70A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27914.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29046 - 29046 - - Will Tye - Will - Tye - Will - Tye - - undisclosed - nfl.p.29046 - nfl.t.17 - New England Patriots - NE - - 11 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/xdP5V2TS15v5nnmQ7LkglQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29046.png - small - - https://s.yimg.com/iu/api/res/1.2/xdP5V2TS15v5nnmQ7LkglQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29046.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27911 - 27911 - - Cody Parkey - Cody - Parkey - Cody - Parkey - - nfl.p.27911 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 1 - K - - https://s.yimg.com/iu/api/res/1.2/w8QEKCb0lB89sHsDknNBaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27911.png - small - - https://s.yimg.com/iu/api/res/1.2/w8QEKCb0lB89sHsDknNBaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27911.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.7802 - 7802 - - Anthony Fasano - Anthony - Fasano - Anthony - Fasano - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7802 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/KRy9M5mYOiBA7PAm9RmcSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7802.png - small - - https://s.yimg.com/iu/api/res/1.2/KRy9M5mYOiBA7PAm9RmcSg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7802.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26807 - 26807 - - Mychal Rivera - Mychal - Rivera - Mychal - Rivera - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26807 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/nbhFx2HxdFhTR3q2G_XgxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/26807.png - small - - https://s.yimg.com/iu/api/res/1.2/nbhFx2HxdFhTR3q2G_XgxA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/26807.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24891 - 24891 - - Luke Stocker - Luke - Stocker - Luke - Stocker - - nfl.p.24891 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/KjWKVludZI13nJnpREbZ0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24891.png - small - - https://s.yimg.com/iu/api/res/1.2/KjWKVludZI13nJnpREbZ0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24891.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29387 - 29387 - - Wendell Smallwood - Wendell - Smallwood - Wendell - Smallwood - - nfl.p.29387 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/N4IfdEW0CI44jD9sIRCBRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29387.png - small - - https://s.yimg.com/iu/api/res/1.2/N4IfdEW0CI44jD9sIRCBRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29387.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25896 - 25896 - - James Hanna - James - Hanna - James - Hanna - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25896 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/UXH_vX8NPYDTQ5MFMJxdgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25896.png - small - - https://s.yimg.com/iu/api/res/1.2/UXH_vX8NPYDTQ5MFMJxdgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/25896.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29328 - 29328 - - Nick Vannett - Nick - Vannett - Nick - Vannett - - nfl.p.29328 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/w0eBeDIjyLbSMtwqqpsXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29328.png - small - - https://s.yimg.com/iu/api/res/1.2/w0eBeDIjyLbSMtwqqpsXjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29328.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28545 - 28545 - - C.J. Uzomah - C.J. - Uzomah - C.J. - Uzomah - - nfl.p.28545 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/aqeg8udTETnjOz16EK5hnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28545.png - small - - https://s.yimg.com/iu/api/res/1.2/aqeg8udTETnjOz16EK5hnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28545.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30150 - 30150 - - Zay Jones - Zay - Jones - Zay - Jones - - nfl.p.30150 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/yl91Qig7RcMNwjumbxjy9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30150.png - small - - https://s.yimg.com/iu/api/res/1.2/yl91Qig7RcMNwjumbxjy9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30150.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28115 - 28115 - - Damien Williams - Damien - Williams - Damien - Williams - - nfl.p.28115 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/b_IC306TP6kHbZkY3ptPLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28115.png - small - - https://s.yimg.com/iu/api/res/1.2/b_IC306TP6kHbZkY3ptPLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28115.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28592 - 28592 - - Darren Waller - Darren - Waller - Darren - Waller - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28592 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/C1rv5HKB_B34dRET.2vwIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28592.1.png - small - - https://s.yimg.com/iu/api/res/1.2/C1rv5HKB_B34dRET.2vwIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28592.1.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29654 - 29654 - - Joshua Perkins - Joshua - Perkins - Joshua - Perkins - - nfl.p.29654 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/ErLbRnwTMWgqSmIRcXdwSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29654.png - small - - https://s.yimg.com/iu/api/res/1.2/ErLbRnwTMWgqSmIRcXdwSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29654.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28456 - 28456 - - Clive Walford - Clive - Walford - Clive - Walford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28456 - nfl.t.20 - New York Jets - NYJ - - 11 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/psIJ3_hfPqiX12H0A3sq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28456.png - small - - https://s.yimg.com/iu/api/res/1.2/psIJ3_hfPqiX12H0A3sq6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28456.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27580 - 27580 - - Troy Niklas - Troy - Niklas - Troy - Niklas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27580 - nfl.t.17 - New England Patriots - NE - - 11 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/4a._P_lS4mzntPMl7V6i6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27580.png - small - - https://s.yimg.com/iu/api/res/1.2/4a._P_lS4mzntPMl7V6i6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27580.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29346 - 29346 - - Malcolm Mitchell - Malcolm - Mitchell - Malcolm - Mitchell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29346 - nfl.t.17 - New England Patriots - NE - - 11 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/XgQ08TvAsw8TmL3U5QbBIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29346.png - small - - https://s.yimg.com/iu/api/res/1.2/XgQ08TvAsw8TmL3U5QbBIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29346.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29325 - 29325 - - Jacoby Brissett - Jacoby - Brissett - Jacoby - Brissett - - nfl.p.29325 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/gyztRD.5Gq5nUOnyFUAp.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29325.png - small - - https://s.yimg.com/iu/api/res/1.2/gyztRD.5Gq5nUOnyFUAp.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/29325.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30267 - 30267 - - Jeremy Sprinkle - Jeremy - Sprinkle - Jeremy - Sprinkle - - nfl.p.30267 - nfl.t.28 - Washington Redskins - Was - - 4 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/q69r2mnOrRULWiM97s95PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30267.png - small - - https://s.yimg.com/iu/api/res/1.2/q69r2mnOrRULWiM97s95PA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30267.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31749 - 31749 - - Jaeden Graham - Jaeden - Graham - Jaeden - Graham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31749 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29857 - 29857 - - Ryan Malleck - Ryan - Malleck - Ryan - Malleck - - IR - Injured Reserve - undisclosed - nfl.p.29857 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/G2jzVilXJlo02Sj5UDc17g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29857.png - small - - https://s.yimg.com/iu/api/res/1.2/G2jzVilXJlo02Sj5UDc17g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29857.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28348 - 28348 - - Jerome Cunningham - Jerome - Cunningham - Jerome - Cunningham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28348 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/C67TDpL.d6xOVM.7tt3ukg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28348.png - small - - https://s.yimg.com/iu/api/res/1.2/C67TDpL.d6xOVM.7tt3ukg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28348.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31077 - 31077 - - Christopher Herndon IV - Christopher - Herndon IV - Christopher - Herndon IV - - nfl.p.31077 - nfl.t.20 - New York Jets - NYJ - - 11 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/EGVFgjyQb15aSl.wdoxljw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31077.png - small - - https://s.yimg.com/iu/api/res/1.2/EGVFgjyQb15aSl.wdoxljw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31077.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25826 - 25826 - - Orson Charles - Orson - Charles - Orson - Charles - - nfl.p.25826 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/T2KquvgJS09Ev2aoMJkBkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25826.png - small - - https://s.yimg.com/iu/api/res/1.2/T2KquvgJS09Ev2aoMJkBkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/25826.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31345 - 31345 - - Jake Roh - Jake - Roh - Jake - Roh - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31345 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31656 - 31656 - - Dejon Allen - Dejon - Allen - Dejon - Allen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31656 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 62 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31298 - 31298 - - Alec Bloom - Alec - Bloom - Alec - Bloom - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31298 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/u_U8_wjrhqNaSmzf2UWR5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31298.png - small - - https://s.yimg.com/iu/api/res/1.2/u_U8_wjrhqNaSmzf2UWR5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31298.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31680 - 31680 - - Cole Hunt - Cole - Hunt - Cole - Hunt - - Q - Questionable - nfl.p.31680 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31127 - 31127 - - Tyler Conklin - Tyler - Conklin - Tyler - Conklin - - nfl.p.31127 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/8aXRMuvm6EQiqQIyT3q.GA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31127.png - small - - https://s.yimg.com/iu/api/res/1.2/8aXRMuvm6EQiqQIyT3q.GA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31127.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30441 - 30441 - - Josiah Price - Josiah - Price - Josiah - Price - - IR - Injured Reserve - knee - nfl.p.30441 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/Yy9Lg4_avBp3cRPRBwFNsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30441.png - small - - https://s.yimg.com/iu/api/res/1.2/Yy9Lg4_avBp3cRPRBwFNsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30441.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30112 - 30112 - - Mo Alie-Cox - Mo - Alie-Cox - Mo - Alie-Cox - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30112 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/nLxRlYcYziOcUVib7a8lhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30112.png - small - - https://s.yimg.com/iu/api/res/1.2/nLxRlYcYziOcUVib7a8lhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30112.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31364 - 31364 - - Christian Scotland-Williamson - Christian - Scotland-Williamson - Christian - Scotland-Williamson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31364 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 49 - TE - - https://s.yimg.com/iu/api/res/1.2/3eCCYGJXWXBwGEUjW98BIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31364.png - small - - https://s.yimg.com/iu/api/res/1.2/3eCCYGJXWXBwGEUjW98BIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31364.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31505 - 31505 - - Julian Allen - Julian - Allen - Julian - Allen - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31505 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27941 - 27941 - - Marcus Lucas - Marcus - Lucas - Marcus - Lucas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27941 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/O_o7Nfu4Uxpv1sgc0V_sBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27941.png - small - - https://s.yimg.com/iu/api/res/1.2/O_o7Nfu4Uxpv1sgc0V_sBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27941.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31519 - 31519 - - Deon Yelder - Deon - Yelder - Deon - Yelder - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31519 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30627 - 30627 - - Pharaoh Brown - Pharaoh - Brown - Pharaoh - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30627 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/7OLrAKnHzlXyxqPx3Braog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30627.png - small - - https://s.yimg.com/iu/api/res/1.2/7OLrAKnHzlXyxqPx3Braog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30627.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29055 - 29055 - - Tim Semisch - Tim - Semisch - Tim - Semisch - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29055 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/5Tdhyg_EALK41PsGyrMfYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29055.png - small - - https://s.yimg.com/iu/api/res/1.2/5Tdhyg_EALK41PsGyrMfYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29055.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30263 - 30263 - - Jordan Leggett - Jordan - Leggett - Jordan - Leggett - - nfl.p.30263 - nfl.t.20 - New York Jets - NYJ - - 11 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29269 - 29269 - - Hunter Henry - Hunter - Henry - Hunter - Henry - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.29269 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/a6eWsvpkP22wQ1mPSGKwXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/29269.png - small - - https://s.yimg.com/iu/api/res/1.2/a6eWsvpkP22wQ1mPSGKwXQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/29269.png - 0 - O - - TE - - 1 - - 101.4 - 10.6 - 1.0 - 0.02 - - - week - 1 - 2 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30527 - 30527 - - Colin Jeter - Colin - Jeter - Colin - Jeter - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30527 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/KqKXexoeqre9XlvXjdn1KA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30527.png - small - - https://s.yimg.com/iu/api/res/1.2/KqKXexoeqre9XlvXjdn1KA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30527.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29666 - 29666 - - J.P. Holtz - J.P. - Holtz - J.P. - Holtz - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29666 - nfl.t.28 - Washington Redskins - Was - - 4 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/hFk8Qkszaas67tLR15G8wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29666.png - small - - https://s.yimg.com/iu/api/res/1.2/hFk8Qkszaas67tLR15G8wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29666.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31071 - 31071 - - Ian Thomas - Ian - Thomas - Ian - Thomas - - nfl.p.31071 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/rkBOPvbn5aZX_ur7nKunpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31071.png - small - - https://s.yimg.com/iu/api/res/1.2/rkBOPvbn5aZX_ur7nKunpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31071.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31719 - 31719 - - Clayton Wilson - Clayton - Wilson - Clayton - Wilson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31719 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29764 - 29764 - - Devon Cajuste - Devon - Cajuste - Devon - Cajuste - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29764 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 49 - TE - - https://s.yimg.com/iu/api/res/1.2/Mca3iGZaPHo3eMnBD3a7zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29764.png - small - - https://s.yimg.com/iu/api/res/1.2/Mca3iGZaPHo3eMnBD3a7zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29764.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29414 - 29414 - - Moritz Boehringer - Moritz - Boehringer - Moritz - Boehringer - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29414 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 49 - TE - - https://s.yimg.com/iu/api/res/1.2/Vwp4_n3De_lBijBdz_zAPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29414.png - small - - https://s.yimg.com/iu/api/res/1.2/Vwp4_n3De_lBijBdz_zAPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29414.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29623 - 29623 - - Henry Krieger-Coble - Henry - Krieger-Coble - Henry - Krieger-Coble - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29623 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/vCVPre4IfPbhKGBInhuwTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29623.png - small - - https://s.yimg.com/iu/api/res/1.2/vCVPre4IfPbhKGBInhuwTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29623.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31019 - 31019 - - Dallas Goedert - Dallas - Goedert - Dallas - Goedert - - nfl.p.31019 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/MoTjLM8PXdVTsMFdOtoZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31019.png - small - - https://s.yimg.com/iu/api/res/1.2/MoTjLM8PXdVTsMFdOtoZXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31019.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31283 - 31283 - - David Wells - David - Wells - David - Wells - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31283 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/1bzhuTWe1CecS_ZalacHjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31283.png - small - - https://s.yimg.com/iu/api/res/1.2/1bzhuTWe1CecS_ZalacHjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31283.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31746 - 31746 - - Garrett Hudson - Garrett - Hudson - Garrett - Hudson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31746 - nfl.t.28 - Washington Redskins - Was - - 4 - - 46 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30756 - 30756 - - Billy Brown - Billy - Brown - Billy - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30756 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/.3LrEW1kI5UAMwPMJKB6nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30756.png - small - - https://s.yimg.com/iu/api/res/1.2/.3LrEW1kI5UAMwPMJKB6nQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30756.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30765 - 30765 - - Brandon Barnes - Brandon - Barnes - Brandon - Barnes - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30765 - nfl.t.8 - Detroit Lions - Det - - 6 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/6PNW4UcJOVcfsqAB7OrP4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30765.png - small - - https://s.yimg.com/iu/api/res/1.2/6PNW4UcJOVcfsqAB7OrP4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/30765.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31501 - 31501 - - Ryan Smith - Ryan - Smith - Ryan - Smith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31501 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31068 - 31068 - - Jordan Akins - Jordan - Akins - Jordan - Akins - - nfl.p.31068 - nfl.t.34 - Houston Texans - Hou - - 10 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/dwKTWNnUWGVUocz0_X8Cng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31068.png - small - - https://s.yimg.com/iu/api/res/1.2/dwKTWNnUWGVUocz0_X8Cng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31068.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31478 - 31478 - - Marcus Baugh - Marcus - Baugh - Marcus - Baugh - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31478 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30777 - 30777 - - Robert Tonyan - Robert - Tonyan - Robert - Tonyan - - nfl.p.30777 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/KosK3fwrl2dGtItnibjcBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30777.png - small - - https://s.yimg.com/iu/api/res/1.2/KosK3fwrl2dGtItnibjcBw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30777.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30603 - 30603 - - Keith Towbridge - Keith - Towbridge - Keith - Towbridge - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30603 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/NmGNF.dkN7Gl_rAIdzx7MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30603.png - small - - https://s.yimg.com/iu/api/res/1.2/NmGNF.dkN7Gl_rAIdzx7MQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30603.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29728 - 29728 - - David Grinnage - David - Grinnage - David - Grinnage - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29728 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30287 - 30287 - - Eric Saubert - Eric - Saubert - Eric - Saubert - - nfl.p.30287 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/letaogC8OBm1dKCNCLvgYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30287.png - small - - https://s.yimg.com/iu/api/res/1.2/letaogC8OBm1dKCNCLvgYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30287.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29508 - 29508 - - Braedon Bowman - Braedon - Bowman - Braedon - Bowman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29508 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/.tsnK6h_GcdkHnnY7oVtrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29508.png - small - - https://s.yimg.com/iu/api/res/1.2/.tsnK6h_GcdkHnnY7oVtrg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29508.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30632 - 30632 - - Anthony Kukwa - Anthony - Kukwa - Anthony - Kukwa - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30632 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 42 - TE - - https://s.yimg.com/iu/api/res/1.2/Tj9i4E6UrZ3erx0wE3ceig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30632.png - small - - https://s.yimg.com/iu/api/res/1.2/Tj9i4E6UrZ3erx0wE3ceig--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30632.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31090 - 31090 - - Will Dissly - Will - Dissly - Will - Dissly - - nfl.p.31090 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/6.MXGDTrtm6Sojkj3dE0IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31090.png - small - - https://s.yimg.com/iu/api/res/1.2/6.MXGDTrtm6Sojkj3dE0IA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31090.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27494 - 27494 - - James Winchester - James - Winchester - James - Winchester - - nfl.p.27494 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 41 - TE - - https://s.yimg.com/iu/api/res/1.2/wTzSHUnLrQkv1Q1_zQyhFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27494.png - small - - https://s.yimg.com/iu/api/res/1.2/wTzSHUnLrQkv1Q1_zQyhFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27494.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27214 - 27214 - - Kevin McDermott - Kevin - McDermott - Kevin - McDermott - - nfl.p.27214 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 47 - TE - - https://s.yimg.com/iu/api/res/1.2/tGeCfLpTCEuSsvjJ9YAFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27214.png - small - - https://s.yimg.com/iu/api/res/1.2/tGeCfLpTCEuSsvjJ9YAFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/27214.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31056 - 31056 - - Mark Andrews - Mark - Andrews - Mark - Andrews - - nfl.p.31056 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/mS9VmhX5h3tjqUOAxLeGPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31056.png - small - - https://s.yimg.com/iu/api/res/1.2/mS9VmhX5h3tjqUOAxLeGPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31056.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30314 - 30314 - - Bucky Hodges - Bucky - Hodges - Bucky - Hodges - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30314 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/1wKu2oNYD1Ly7N5SHex42A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062017/30314.png - small - - https://s.yimg.com/iu/api/res/1.2/1wKu2oNYD1Ly7N5SHex42A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09062017/30314.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30594 - 30594 - - Jason Croom - Jason - Croom - Jason - Croom - - nfl.p.30594 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/3hizR8DuHH6YY1PeoXjo1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30594.png - small - - https://s.yimg.com/iu/api/res/1.2/3hizR8DuHH6YY1PeoXjo1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30594.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26845 - 26845 - - Chris Gragg - Chris - Gragg - Chris - Gragg - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26845 - nfl.t.20 - New York Jets - NYJ - - 11 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/dc5rkWYFYlgp0pU1HmECeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26845.1.png - small - - https://s.yimg.com/iu/api/res/1.2/dc5rkWYFYlgp0pU1HmECeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26845.1.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31751 - 31751 - - Garrett Dickerson - Garrett - Dickerson - Garrett - Dickerson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31751 - nfl.t.19 - New York Giants - NYG - - 9 - - 47 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24303 - 24303 - - Jeff Cumberland - Jeff - Cumberland - Jeff - Cumberland - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24303 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/Vw32C7YyQ1Fc27Dn57AFKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/24303.png - small - - https://s.yimg.com/iu/api/res/1.2/Vw32C7YyQ1Fc27Dn57AFKg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/24303.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31441 - 31441 - - Kevin Rader - Kevin - Rader - Kevin - Rader - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31441 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 49 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28941 - 28941 - - Wes Saxton - Wes - Saxton - Wes - Saxton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28941 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 43 - TE - - https://s.yimg.com/iu/api/res/1.2/tXS3hNVJe5nLpTsAJIDFrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28941.png - small - - https://s.yimg.com/iu/api/res/1.2/tXS3hNVJe5nLpTsAJIDFrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28941.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28221 - 28221 - - Tyler Ott - Tyler - Ott - Tyler - Ott - - nfl.p.28221 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 69 - TE - - https://s.yimg.com/iu/api/res/1.2/Q5hdvW9aPA7i1Xzz_pmgiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28221.png - small - - https://s.yimg.com/iu/api/res/1.2/Q5hdvW9aPA7i1Xzz_pmgiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28221.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31682 - 31682 - - Ben Johnson - Ben - Johnson - Ben - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31682 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31107 - 31107 - - Dalton Schultz - Dalton - Schultz - Dalton - Schultz - - nfl.p.31107 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/v.HuMqVbpu18O3AMotFLOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31107.png - small - - https://s.yimg.com/iu/api/res/1.2/v.HuMqVbpu18O3AMotFLOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31107.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31546 - 31546 - - Stephen Baggett - Stephen - Baggett - Stephen - Baggett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31546 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30702 - 30702 - - Emanuel Byrd - Emanuel - Byrd - Emanuel - Byrd - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30702 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/cCuVZdzP6rebNSsJphXG2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30702.png - small - - https://s.yimg.com/iu/api/res/1.2/cCuVZdzP6rebNSsJphXG2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30702.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28964 - 28964 - - Gabe Holmes - Gabe - Holmes - Gabe - Holmes - - nfl.p.28964 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/sv3Bkv4.KDE7TUhEEjBpjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28964.png - small - - https://s.yimg.com/iu/api/res/1.2/sv3Bkv4.KDE7TUhEEjBpjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28964.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31220 - 31220 - - Ryan Izzo - Ryan - Izzo - Ryan - Izzo - - IR - Injured Reserve - undisclosed - nfl.p.31220 - nfl.t.17 - New England Patriots - NE - - 11 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/yjXm0HjkCW_TGE30zSTwKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31220.png - small - - https://s.yimg.com/iu/api/res/1.2/yjXm0HjkCW_TGE30zSTwKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31220.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28813 - 28813 - - Gannon Sinclair - Gannon - Sinclair - Gannon - Sinclair - - IR - Injured Reserve - undisclosed - nfl.p.28813 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/2zlSJJVNEQGsphKSlmMiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28813.png - small - - https://s.yimg.com/iu/api/res/1.2/2zlSJJVNEQGsphKSlmMiBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/28813.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30962 - 30962 - - Chris Bazile - Chris - Bazile - Chris - Bazile - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30962 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30908 - 30908 - - Adam Zaruba - Adam - Zaruba - Adam - Zaruba - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30908 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 49 - TE - - https://s.yimg.com/iu/api/res/1.2/He1twwFkfBj..CQ16sutkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30908.png - small - - https://s.yimg.com/iu/api/res/1.2/He1twwFkfBj..CQ16sutkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30908.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27577 - 27577 - - Jace Amaro - Jace - Amaro - Jace - Amaro - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27577 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/wAP2yIEKVrxZBz7boZz2.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27577.png - small - - https://s.yimg.com/iu/api/res/1.2/wAP2yIEKVrxZBz7boZz2.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27577.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29879 - 29879 - - Bryce Williams - Bryce - Williams - Bryce - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29879 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/TvImmkYGCi4VsKF_TDbdNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29879.png - small - - https://s.yimg.com/iu/api/res/1.2/TvImmkYGCi4VsKF_TDbdNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29879.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30763 - 30763 - - Tyrone Swoopes - Tyrone - Swoopes - Tyrone - Swoopes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30763 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 46 - TE - - https://s.yimg.com/iu/api/res/1.2/nW_ep359I3U1sFqXcExP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30763.png - small - - https://s.yimg.com/iu/api/res/1.2/nW_ep359I3U1sFqXcExP6w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30763.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30559 - 30559 - - Cole Hikutini - Cole - Hikutini - Cole - Hikutini - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30559 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/2yzhs1.LtwmO9yHJU0ig8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30559.png - small - - https://s.yimg.com/iu/api/res/1.2/2yzhs1.LtwmO9yHJU0ig8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30559.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31491 - 31491 - - Blake Mack - Blake - Mack - Blake - Mack - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31491 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31416 - 31416 - - Nate Wozniak - Nate - Wozniak - Nate - Wozniak - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31416 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 79 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31325 - 31325 - - Andrew Vollert - Andrew - Vollert - Andrew - Vollert - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31325 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/mRzOkB1MX8Zyd0jZZomtOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31325.png - small - - https://s.yimg.com/iu/api/res/1.2/mRzOkB1MX8Zyd0jZZomtOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31325.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28875 - 28875 - - Matt LaCosse - Matt - LaCosse - Matt - LaCosse - - nfl.p.28875 - nfl.t.7 - Denver Broncos - Den - - 10 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/CwqgpDVvKGtO_0y2RtzOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28875.png - small - - https://s.yimg.com/iu/api/res/1.2/CwqgpDVvKGtO_0y2RtzOOQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28875.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31427 - 31427 - - Nick Keizer - Nick - Keizer - Nick - Keizer - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31427 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30888 - 30888 - - Alex Gray - Alex - Gray - Alex - Gray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30888 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/i2rhscZahCizjc3VngxE4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30888.png - small - - https://s.yimg.com/iu/api/res/1.2/i2rhscZahCizjc3VngxE4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30888.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28688 - 28688 - - Brian Parker - Brian - Parker - Brian - Parker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28688 - nfl.t.7 - Denver Broncos - Den - - 10 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/1cp6LPUNsSp.Iwlmn1dLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28688.png - small - - https://s.yimg.com/iu/api/res/1.2/1cp6LPUNsSp.Iwlmn1dLIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28688.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24100 - 24100 - - Clay Harbor - Clay - Harbor - Clay - Harbor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24100 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/pXyUZHm7uWQdaLjO8xqTWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/24100.png - small - - https://s.yimg.com/iu/api/res/1.2/pXyUZHm7uWQdaLjO8xqTWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/24100.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30795 - 30795 - - Evan Baylis - Evan - Baylis - Evan - Baylis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30795 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/UkdOMT_Qx15SIUEp39sprQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30795.png - small - - https://s.yimg.com/iu/api/res/1.2/UkdOMT_Qx15SIUEp39sprQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30795.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29504 - 29504 - - Jake McGee - Jake - McGee - Jake - McGee - - IR - Injured Reserve - knee - nfl.p.29504 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/oIU0u65Z_o25Iwu6Gg7uEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29504.png - small - - https://s.yimg.com/iu/api/res/1.2/oIU0u65Z_o25Iwu6Gg7uEg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29504.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29783 - 29783 - - Cole Wick - Cole - Wick - Cole - Wick - - nfl.p.29783 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/BseeXLil5w8xkxHn1pt_iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29783.png - small - - https://s.yimg.com/iu/api/res/1.2/BseeXLil5w8xkxHn1pt_iA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29783.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29095 - 29095 - - Manasseh Garner - Manasseh - Garner - Manasseh - Garner - - IR - Injured Reserve - torn ACL - nfl.p.29095 - nfl.t.28 - Washington Redskins - Was - - 4 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/eRnXF1B7Q1MTYeMLqVIqEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29095.png - small - - https://s.yimg.com/iu/api/res/1.2/eRnXF1B7Q1MTYeMLqVIqEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29095.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31276 - 31276 - - Jason Reese - Jason - Reese - Jason - Reese - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31276 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/1AwECgNTav730330G2uVtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31276.png - small - - https://s.yimg.com/iu/api/res/1.2/1AwECgNTav730330G2uVtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31276.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29806 - 29806 - - Jason Vander Laan - Jason - Vander Laan - Jason - Vander Laan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29806 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/3o9fzqPGGb3A7LMyNPD.vQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29806.png - small - - https://s.yimg.com/iu/api/res/1.2/3o9fzqPGGb3A7LMyNPD.vQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29806.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30373 - 30373 - - Johnny Mundt - Johnny - Mundt - Johnny - Mundt - - nfl.p.30373 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/dpO3eotuuojZC_T41sc.QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30373.png - small - - https://s.yimg.com/iu/api/res/1.2/dpO3eotuuojZC_T41sc.QQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30373.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31528 - 31528 - - Pharoah McKever - Pharoah - McKever - Pharoah - McKever - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31528 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31234 - 31234 - - Tyler Hoppes - Tyler - Hoppes - Tyler - Hoppes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31234 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/8ToPukj3nOVl8ajZPYzHSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31234.png - small - - https://s.yimg.com/iu/api/res/1.2/8ToPukj3nOVl8ajZPYzHSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31234.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29486 - 29486 - - Beau Sandland - Beau - Sandland - Beau - Sandland - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29486 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/jFBtt6SoHd5vH7d9131MqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29486.png - small - - https://s.yimg.com/iu/api/res/1.2/jFBtt6SoHd5vH7d9131MqA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29486.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30958 - 30958 - - Jevoni Robinson - Jevoni - Robinson - Jevoni - Robinson - - IR - Injured Reserve - undisclosed - nfl.p.30958 - nfl.t.34 - Houston Texans - Hou - - 10 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/7NoxMnqd1W.U6l0rzS9p4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30958.png - small - - https://s.yimg.com/iu/api/res/1.2/7NoxMnqd1W.U6l0rzS9p4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30958.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26016 - 26016 - - Beau Brinkley - Beau - Brinkley - Beau - Brinkley - - nfl.p.26016 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/GS_f8ZCq6N8DV9Pdh3fUJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26016.png - small - - https://s.yimg.com/iu/api/res/1.2/GS_f8ZCq6N8DV9Pdh3fUJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26016.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30024 - 30024 - - Garrett Griffin - Garrett - Griffin - Garrett - Griffin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30024 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 45 - TE - - https://s.yimg.com/iu/api/res/1.2/jYhXx8FCzgyzJSg.Iv9OhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30024.png - small - - https://s.yimg.com/iu/api/res/1.2/jYhXx8FCzgyzJSg.Iv9OhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/30024.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28975 - 28975 - - Matt Lengel - Matt - Lengel - Matt - Lengel - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28975 - nfl.t.34 - Houston Texans - Hou - - 10 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/IxV8hyny1JonRcctL7JhHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28975.png - small - - https://s.yimg.com/iu/api/res/1.2/IxV8hyny1JonRcctL7JhHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28975.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29451 - 29451 - - Rico Gathers - Rico - Gathers - Rico - Gathers - - nfl.p.29451 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/gMyQrzxdzEc.J5Eun6.dIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29451.png - small - - https://s.yimg.com/iu/api/res/1.2/gMyQrzxdzEc.J5Eun6.dIQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29451.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29537 - 29537 - - Kyle Carter - Kyle - Carter - Kyle - Carter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29537 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/RXyt5CRYTXCMnMySbrlIvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29537.png - small - - https://s.yimg.com/iu/api/res/1.2/RXyt5CRYTXCMnMySbrlIvQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29537.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30784 - 30784 - - Blake Jarwin - Blake - Jarwin - Blake - Jarwin - - nfl.p.30784 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/rqbS.q_ZqzSnEMQNG5Pm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30784.png - small - - https://s.yimg.com/iu/api/res/1.2/rqbS.q_ZqzSnEMQNG5Pm7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30784.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28893 - 28893 - - Khari Lee - Khari - Lee - Khari - Lee - - nfl.p.28893 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/3K1L6eIh3F5Op18Lnq0Ohw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28893.png - small - - https://s.yimg.com/iu/api/res/1.2/3K1L6eIh3F5Op18Lnq0Ohw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28893.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30364 - 30364 - - Mason Schreck - Mason - Schreck - Mason - Schreck - - nfl.p.30364 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/Q0LXCgimbx4_1FJciPOSNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30364.png - small - - https://s.yimg.com/iu/api/res/1.2/Q0LXCgimbx4_1FJciPOSNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30364.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31635 - 31635 - - DeAndre Goolsby - DeAndre - Goolsby - DeAndre - Goolsby - - IR - Injured Reserve - undisclosed - nfl.p.31635 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 49 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28531 - 28531 - - MyCole Pruitt - MyCole - Pruitt - MyCole - Pruitt - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28531 - nfl.t.34 - Houston Texans - Hou - - 10 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/xnTWaTzGWH9t9lEPIZZ5mQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28531.png - small - - https://s.yimg.com/iu/api/res/1.2/xnTWaTzGWH9t9lEPIZZ5mQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28531.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31126 - 31126 - - Troy Fumagalli - Troy - Fumagalli - Troy - Fumagalli - - IR - Injured Reserve - groin - nfl.p.31126 - nfl.t.7 - Denver Broncos - Den - - 10 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/GWGCuownFQ7QhJZhQvmJZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31126.png - small - - https://s.yimg.com/iu/api/res/1.2/GWGCuownFQ7QhJZhQvmJZg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31126.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30957 - 30957 - - Kent Taylor - Kent - Taylor - Kent - Taylor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30957 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28365 - 28365 - - Chris Manhertz - Chris - Manhertz - Chris - Manhertz - - nfl.p.28365 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/Ase_SUQDk0UlacCL_KlW1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28365.png - small - - https://s.yimg.com/iu/api/res/1.2/Ase_SUQDk0UlacCL_KlW1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28365.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26583 - 26583 - - Andrew DePaola - Andrew - DePaola - Andrew - DePaola - - nfl.p.26583 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/398bWYzleoM6ZWPuMvlqsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26583.png - small - - https://s.yimg.com/iu/api/res/1.2/398bWYzleoM6ZWPuMvlqsg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26583.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30468 - 30468 - - Antony Auclair - Antony - Auclair - Antony - Auclair - - nfl.p.30468 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/dD.1UmxFGFMdaopsl6ltRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30468.png - small - - https://s.yimg.com/iu/api/res/1.2/dD.1UmxFGFMdaopsl6ltRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30468.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31329 - 31329 - - Ross Dwelley - Ross - Dwelley - Ross - Dwelley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31329 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 49 - TE - - https://s.yimg.com/iu/api/res/1.2/R20f0CoWjGUxnXv_ozEaRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31329.png - small - - https://s.yimg.com/iu/api/res/1.2/R20f0CoWjGUxnXv_ozEaRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31329.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28215 - 28215 - - Scott Simonson - Scott - Simonson - Scott - Simonson - - nfl.p.28215 - nfl.t.19 - New York Giants - NYG - - 9 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/9L9BuyLv3nXGouE7znhqIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28215.png - small - - https://s.yimg.com/iu/api/res/1.2/9L9BuyLv3nXGouE7znhqIg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28215.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31400 - 31400 - - Matt Flanagan - Matt - Flanagan - Matt - Flanagan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31400 - nfl.t.28 - Washington Redskins - Was - - 4 - - 41 - TE - - https://s.yimg.com/iu/api/res/1.2/i0vftK02kphVaFqcohZV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31400.png - small - - https://s.yimg.com/iu/api/res/1.2/i0vftK02kphVaFqcohZV1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31400.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29963 - 29963 - - Ryan O'Malley - Ryan - O'Malley - Ryan - O'Malley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29963 - nfl.t.19 - New York Giants - NYG - - 9 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/5tri4Rmq3v3A62t5FQmOPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29963.png - small - - https://s.yimg.com/iu/api/res/1.2/5tri4Rmq3v3A62t5FQmOPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29963.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31346 - 31346 - - Troy Mangen - Troy - Mangen - Troy - Mangen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31346 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/kO_J2y8s.J8r7j2T6lMMWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31346.png - small - - https://s.yimg.com/iu/api/res/1.2/kO_J2y8s.J8r7j2T6lMMWw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31346.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27050 - 27050 - - Tim Wright - Tim - Wright - Tim - Wright - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27050 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/bxbVojvgfKhOH5WMNnGKpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27050.png - small - - https://s.yimg.com/iu/api/res/1.2/bxbVojvgfKhOH5WMNnGKpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27050.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31654 - 31654 - - Shane Wimann - Shane - Wimann - Shane - Wimann - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31654 - nfl.t.17 - New England Patriots - NE - - 11 - - - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31255 - 31255 - - Donnie Ernsberger - Donnie - Ernsberger - Donnie - Ernsberger - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31255 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/RCWcAwZoHU8iBtv4pLmbKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31255.png - small - - https://s.yimg.com/iu/api/res/1.2/RCWcAwZoHU8iBtv4pLmbKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31255.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31627 - 31627 - - Ethan Wolf - Ethan - Wolf - Ethan - Wolf - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31627 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 45 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31747 - 31747 - - Austin Roberts - Austin - Roberts - Austin - Roberts - - IR - Injured Reserve - knee - nfl.p.31747 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 42 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29532 - 29532 - - Matt Weiser - Matt - Weiser - Matt - Weiser - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29532 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/oN00vRV93fVSNootGUkhoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29532.png - small - - https://s.yimg.com/iu/api/res/1.2/oN00vRV93fVSNootGUkhoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29532.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30800 - 30800 - - Zach Conque - Zach - Conque - Zach - Conque - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30800 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/b4QbIxym72aQkgTjjkjC7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30800.png - small - - https://s.yimg.com/iu/api/res/1.2/b4QbIxym72aQkgTjjkjC7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30800.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31093 - 31093 - - Durham Smythe - Durham - Smythe - Durham - Smythe - - nfl.p.31093 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 46 - TE - - https://s.yimg.com/iu/api/res/1.2/X.2KB1eEi9ROF3zXTU_r3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31093.png - small - - https://s.yimg.com/iu/api/res/1.2/X.2KB1eEi9ROF3zXTU_r3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31093.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29465 - 29465 - - Thomas Duarte - Thomas - Duarte - Thomas - Duarte - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29465 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/17I2nIxOo6rFI03E0WQKAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29465.png - small - - https://s.yimg.com/iu/api/res/1.2/17I2nIxOo6rFI03E0WQKAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29465.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30420 - 30420 - - Sean Culkin - Sean - Culkin - Sean - Culkin - - nfl.p.30420 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/gKQovaI6.hVfkI3Yq.O4wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30420.png - small - - https://s.yimg.com/iu/api/res/1.2/gKQovaI6.hVfkI3Yq.O4wQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30420.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27926 - 27926 - - Je'Ron Hamm - Je'Ron - Hamm - Je'Ron - Hamm - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27926 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 41 - TE - - https://s.yimg.com/iu/api/res/1.2/3.i5kVU.LztBCo4VIZOhMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27926.png - small - - https://s.yimg.com/iu/api/res/1.2/3.i5kVU.LztBCo4VIZOhMg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27926.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30571 - 30571 - - Anthony Firkser - Anthony - Firkser - Anthony - Firkser - - nfl.p.30571 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/vifWn_YMlpw1atp4lK09bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30571.png - small - - https://s.yimg.com/iu/api/res/1.2/vifWn_YMlpw1atp4lK09bQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30571.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29411 - 29411 - - Temarrick Hemingway - Temarrick - Hemingway - Temarrick - Hemingway - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29411 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/ZQBUpSpwMqXGvOhbxjIUvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29411.png - small - - https://s.yimg.com/iu/api/res/1.2/ZQBUpSpwMqXGvOhbxjIUvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29411.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31561 - 31561 - - Jordan Franks - Jordan - Franks - Jordan - Franks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31561 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31181 - 31181 - - Jordan Thomas - Jordan - Thomas - Jordan - Thomas - - nfl.p.31181 - nfl.t.34 - Houston Texans - Hou - - 10 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/GFbpAoWlMQfNPBnMdWqDMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31181.png - small - - https://s.yimg.com/iu/api/res/1.2/GFbpAoWlMQfNPBnMdWqDMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31181.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28192 - 28192 - - Anthony Denham - Anthony - Denham - Anthony - Denham - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28192 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/jtS1pjg.99IzyncKUD44xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28192.png - small - - https://s.yimg.com/iu/api/res/1.2/jtS1pjg.99IzyncKUD44xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28192.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25370 - 25370 - - Patrick Scales - Patrick - Scales - Patrick - Scales - - nfl.p.25370 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/2BwJOmF1ZxCPe5FkfjMSzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25370.png - small - - https://s.yimg.com/iu/api/res/1.2/2BwJOmF1ZxCPe5FkfjMSzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25370.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31770 - 31770 - - Cam Serigne - Cam - Serigne - Cam - Serigne - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31770 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31515 - 31515 - - Paul Butler - Paul - Butler - Paul - Butler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31515 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30740 - 30740 - - Colin Thompson - Colin - Thompson - Colin - Thompson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30740 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/8wsKN3Q7xW_wCiTj_B1vNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30740.png - small - - https://s.yimg.com/iu/api/res/1.2/8wsKN3Q7xW_wCiTj_B1vNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30740.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30388 - 30388 - - Scott Orndoff - Scott - Orndoff - Scott - Orndoff - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30388 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/9eIkzUuhf7HoynuffUT_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30388.png - small - - https://s.yimg.com/iu/api/res/1.2/9eIkzUuhf7HoynuffUT_pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30388.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29422 - 29422 - - David Morgan - David - Morgan - David - Morgan - - nfl.p.29422 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/a7bbiXM7yGGtzQ06bxSKfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29422.png - small - - https://s.yimg.com/iu/api/res/1.2/a7bbiXM7yGGtzQ06bxSKfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29422.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30000 - 30000 - - Jalen Richard - Jalen - Richard - Jalen - Richard - - nfl.p.30000 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/3WFCnLbqV6LejhIPFnFnPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30000.png - small - - https://s.yimg.com/iu/api/res/1.2/3WFCnLbqV6LejhIPFnFnPg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30000.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29102 - 29102 - - Daniel Brown - Daniel - Brown - Daniel - Brown - - Q - Questionable - nfl.p.29102 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/i0dyJEWo7JYKqiMULZXsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29102.png - small - - https://s.yimg.com/iu/api/res/1.2/i0dyJEWo7JYKqiMULZXsPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29102.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25767 - 25767 - - Brock Osweiler - Brock - Osweiler - Brock - Osweiler - - nfl.p.25767 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/QgNdxfqFotxSuRqy1gFs_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25767.png - small - - https://s.yimg.com/iu/api/res/1.2/QgNdxfqFotxSuRqy1gFs_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25767.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9388 - 9388 - - Louis Murphy - Louis - Murphy - Louis - Murphy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9388 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/.LBb1lfR6SkN3KLjhptMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9388.png - small - - https://s.yimg.com/iu/api/res/1.2/.LBb1lfR6SkN3KLjhptMYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/9388.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26853 - 26853 - - Kerwynn Williams - Kerwynn - Williams - Kerwynn - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26853 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/eDIKcRSCCAOS5JRL3d.iiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26853.png - small - - https://s.yimg.com/iu/api/res/1.2/eDIKcRSCCAOS5JRL3d.iiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/26853.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8544 - 8544 - - Matt Moore - Matt - Moore - Matt - Moore - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8544 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/UO0KZxiUHXZKbzqQHBIWUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/8544.png - small - - https://s.yimg.com/iu/api/res/1.2/UO0KZxiUHXZKbzqQHBIWUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/8544.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9472 - 9472 - - John Phillips - John - Phillips - John - Phillips - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9472 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/VI1lHBWhG7OtwqBS2dzeyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/9472.png - small - - https://s.yimg.com/iu/api/res/1.2/VI1lHBWhG7OtwqBS2dzeyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09162017/9472.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28227 - 28227 - - Cairo Santos - Cairo - Santos - Cairo - Santos - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28227 - nfl.t.20 - New York Jets - NYJ - - 11 - - 8 - K - - https://s.yimg.com/iu/api/res/1.2/zo6CmcxBlkvVdAoQIPC5sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28227.png - small - - https://s.yimg.com/iu/api/res/1.2/zo6CmcxBlkvVdAoQIPC5sg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28227.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28044 - 28044 - - Charcandrick West - Charcandrick - West - Charcandrick - West - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28044 - nfl.t.20 - New York Jets - NYJ - - 11 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/tpJkcmUFdE792soGIjQstg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28044.png - small - - https://s.yimg.com/iu/api/res/1.2/tpJkcmUFdE792soGIjQstg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28044.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26670 - 26670 - - Gavin Escobar - Gavin - Escobar - Gavin - Escobar - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26670 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/brLgeo.qp_XwSbKsvnThEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26670.png - small - - https://s.yimg.com/iu/api/res/1.2/brLgeo.qp_XwSbKsvnThEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26670.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28608 - 28608 - - Neal Sterling - Neal - Sterling - Neal - Sterling - - nfl.p.28608 - nfl.t.20 - New York Jets - NYJ - - 11 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/KN6FxbdY3U_xBBPaIpnQcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28608.png - small - - https://s.yimg.com/iu/api/res/1.2/KN6FxbdY3U_xBBPaIpnQcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28608.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28395 - 28395 - - Kevin White - Kevin - White - Kevin - White - - nfl.p.28395 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/KozhNN08fdPij3tKU5BtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28395.png - small - - https://s.yimg.com/iu/api/res/1.2/KozhNN08fdPij3tKU5BtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/28395.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.24108 - 24108 - - Michael Hoomanawanui - Michael - Hoomanawanui - Michael - Hoomanawanui - - IR - Injured Reserve - undisclosed - nfl.p.24108 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/M4DaFQtaQ4Uh8fzO_1xEpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/24108.png - small - - https://s.yimg.com/iu/api/res/1.2/M4DaFQtaQ4Uh8fzO_1xEpA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/24108.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24965 - 24965 - - Aldrick Robinson - Aldrick - Robinson - Aldrick - Robinson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24965 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/LXDBf_eeaBykbP9YGaU76g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24965.png - small - - https://s.yimg.com/iu/api/res/1.2/LXDBf_eeaBykbP9YGaU76g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/24965.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30165 - 30165 - - DeShone Kizer - DeShone - Kizer - DeShone - Kizer - - nfl.p.30165 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/qbD2yXt5BH4_1QkgE31nTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30165.png - small - - https://s.yimg.com/iu/api/res/1.2/qbD2yXt5BH4_1QkgE31nTg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30165.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28633 - 28633 - - Tre McBride - Tre - McBride - Tre - McBride - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28633 - nfl.t.20 - New York Jets - NYJ - - 11 - - 7 - WR - - https://s.yimg.com/iu/api/res/1.2/9KPEGnWEd4mDMnnRLQYcPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28633.png - small - - https://s.yimg.com/iu/api/res/1.2/9KPEGnWEd4mDMnnRLQYcPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28633.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26685 - 26685 - - Christine Michael - Christine - Michael - Christine - Michael - - nfl.p.26685 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/Hb7mLpiSGZL5RizVH.gMRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26685.png - small - - https://s.yimg.com/iu/api/res/1.2/Hb7mLpiSGZL5RizVH.gMRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26685.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26950 - 26950 - - Josh Hill - Josh - Hill - Josh - Hill - - nfl.p.26950 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/X3DqLmYuYufE5ShyW9lKlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26950.png - small - - https://s.yimg.com/iu/api/res/1.2/X3DqLmYuYufE5ShyW9lKlg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/26950.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28634 - 28634 - - Geoff Swaim - Geoff - Swaim - Geoff - Swaim - - nfl.p.28634 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/4t1dxiljaVlJIhgUsWVtYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28634.png - small - - https://s.yimg.com/iu/api/res/1.2/4t1dxiljaVlJIhgUsWVtYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28634.png - 0 - O - - TE - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28505 - 28505 - - Blake Bell - Blake - Bell - Blake - Bell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28505 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/wZuzcyHyhZuYuWBXcN7b1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28505.png - small - - https://s.yimg.com/iu/api/res/1.2/wZuzcyHyhZuYuWBXcN7b1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28505.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25234 - 25234 - - Andre Holmes - Andre - Holmes - Andre - Holmes - - nfl.p.25234 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/HS0V8c1Sfe8ZfxPIQ9WJiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25234.png - small - - https://s.yimg.com/iu/api/res/1.2/HS0V8c1Sfe8ZfxPIQ9WJiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25234.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8416 - 8416 - - Brent Celek - Brent - Celek - Brent - Celek - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8416 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/xY0xljBcF9iYIHrkt53tyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8416.png - small - - https://s.yimg.com/iu/api/res/1.2/xY0xljBcF9iYIHrkt53tyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8416.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7306 - 7306 - - Darren Sproles - Darren - Sproles - Darren - Sproles - - nfl.p.7306 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 43 - RB - - https://s.yimg.com/iu/api/res/1.2/85lwt56v7Z3.7eVPfJ3NJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7306.png - small - - https://s.yimg.com/iu/api/res/1.2/85lwt56v7Z3.7eVPfJ3NJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/7306.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.25828 - 25828 - - Jarius Wright - Jarius - Wright - Jarius - Wright - - nfl.p.25828 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/7zEhWtrzuH6vlBGjC7CV8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25828.png - small - - https://s.yimg.com/iu/api/res/1.2/7zEhWtrzuH6vlBGjC7CV8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25828.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28443 - 28443 - - Maxx Williams - Maxx - Williams - Maxx - Williams - - nfl.p.28443 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/5n8l7Gh8B4aTUdkR2BPPYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28443.png - small - - https://s.yimg.com/iu/api/res/1.2/5n8l7Gh8B4aTUdkR2BPPYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28443.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30301 - 30301 - - Elijah McGuire - Elijah - McGuire - Elijah - McGuire - - IR - Injured Reserve - foot - nfl.p.30301 - nfl.t.20 - New York Jets - NYJ - - 11 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/0Jws7m9RjQLbKwAwZAap1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30301.png - small - - https://s.yimg.com/iu/api/res/1.2/0Jws7m9RjQLbKwAwZAap1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30301.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28184 - 28184 - - Xavier Grimble - Xavier - Grimble - Xavier - Grimble - - Q - Questionable - nfl.p.28184 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/emuTMAWgcMsUhVoR2pVt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28184.png - small - - https://s.yimg.com/iu/api/res/1.2/emuTMAWgcMsUhVoR2pVt6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28184.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26810 - 26810 - - Andre Ellington - Andre - Ellington - Andre - Ellington - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26810 - nfl.t.34 - Houston Texans - Hou - - 10 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/NkGAgsA4bEbDALSzSgSAcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26810.png - small - - https://s.yimg.com/iu/api/res/1.2/NkGAgsA4bEbDALSzSgSAcA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26810.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29374 - 29374 - - Tajae Sharpe - Tajae - Sharpe - Tajae - Sharpe - - nfl.p.29374 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/0LcNKF8ZqqLKCCyFeEiqGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29374.png - small - - https://s.yimg.com/iu/api/res/1.2/0LcNKF8ZqqLKCCyFeEiqGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29374.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31732 - 31732 - - Codey McElroy - Codey - McElroy - Codey - McElroy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31732 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 47 - WR,TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31743 - 31743 - - Kayaune Ross - Kayaune - Ross - Kayaune - Ross - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31743 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 11 - WR,TE - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30891 - 30891 - - Dan Arnold - Dan - Arnold - Dan - Arnold - - nfl.p.30891 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 85 - WR,TE - - https://s.yimg.com/iu/api/res/1.2/pMRvyf3wXQ3MpGTltfU1jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30891.png - small - - https://s.yimg.com/iu/api/res/1.2/pMRvyf3wXQ3MpGTltfU1jA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30891.png - 0 - O - - WR - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29377 - 29377 - - DeAndre Washington - DeAndre - Washington - DeAndre - Washington - - Q - Questionable - nfl.p.29377 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/720GomJ83pcT74B4Pwvsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29377.png - small - - https://s.yimg.com/iu/api/res/1.2/720GomJ83pcT74B4Pwvsgw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29377.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7760 - 7760 - - Jay Cutler - Jay - Cutler - Jay - Cutler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7760 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/HOa2mZFG_jklfdGhkcJ.qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/7760.png - small - - https://s.yimg.com/iu/api/res/1.2/HOa2mZFG_jklfdGhkcJ.qA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20161007/7760.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29418 - 29418 - - Jerell Adams - Jerell - Adams - Jerell - Adams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29418 - nfl.t.19 - New York Giants - NYG - - 9 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/oAxIEunbU9BYb3UcSLjhnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29418.png - small - - https://s.yimg.com/iu/api/res/1.2/oAxIEunbU9BYb3UcSLjhnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29418.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29638 - 29638 - - Maurice Harris - Maurice - Harris - Maurice - Harris - - Q - Questionable - nfl.p.29638 - nfl.t.28 - Washington Redskins - Was - - 4 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/UEpcNQA4vEHQGIEx.da03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29638.png - small - - https://s.yimg.com/iu/api/res/1.2/UEpcNQA4vEHQGIEx.da03g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29638.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29944 - 29944 - - Alex Ellis - Alex - Ellis - Alex - Ellis - - nfl.p.29944 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/I3B4GBEKLPB2u0Vt2pfqaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29944.png - small - - https://s.yimg.com/iu/api/res/1.2/I3B4GBEKLPB2u0Vt2pfqaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29944.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24608 - 24608 - - Logan Paulsen - Logan - Paulsen - Logan - Paulsen - - nfl.p.24608 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/qg1We9aFyz1iI6G.ZbgL3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24608.png - small - - https://s.yimg.com/iu/api/res/1.2/qg1We9aFyz1iI6G.ZbgL3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/24608.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28559 - 28559 - - Nick Boyle - Nick - Boyle - Nick - Boyle - - nfl.p.28559 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/erSYVnnNAJyyWNmECDvw0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28559.png - small - - https://s.yimg.com/iu/api/res/1.2/erSYVnnNAJyyWNmECDvw0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28559.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27746 - 27746 - - Michael Campanaro - Michael - Campanaro - Michael - Campanaro - - IR - Injured Reserve - undisclosed - nfl.p.27746 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/xZwvY5XdJ8HKKaOTTiMrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27746.png - small - - https://s.yimg.com/iu/api/res/1.2/xZwvY5XdJ8HKKaOTTiMrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27746.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30551 - 30551 - - Kendrick Bourne - Kendrick - Bourne - Kendrick - Bourne - - nfl.p.30551 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/O6EYlj7YVcGNcuzPjwfK4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30551.png - small - - https://s.yimg.com/iu/api/res/1.2/O6EYlj7YVcGNcuzPjwfK4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30551.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28586 - 28586 - - Randall Telfer - Randall - Telfer - Randall - Telfer - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28586 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/VmrNtnWlpP2IMjBMU48u4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28586.png - small - - https://s.yimg.com/iu/api/res/1.2/VmrNtnWlpP2IMjBMU48u4A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28586.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29324 - 29324 - - C.J. Prosise - C.J. - Prosise - C.J. - Prosise - - nfl.p.29324 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/waEsgxPKhUJYMKnkLpX2cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29324.png - small - - https://s.yimg.com/iu/api/res/1.2/waEsgxPKhUJYMKnkLpX2cw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29324.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.25291 - 25291 - - Kyle Nelson - Kyle - Nelson - Kyle - Nelson - - nfl.p.25291 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/RcLkMAyRf_fe9bY7DJQyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25291.png - small - - https://s.yimg.com/iu/api/res/1.2/RcLkMAyRf_fe9bY7DJQyaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/25291.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29587 - 29587 - - Hakeem Valles - Hakeem - Valles - Hakeem - Valles - - nfl.p.29587 - nfl.t.8 - Detroit Lions - Det - - 6 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/zMnNylF459lXTQJ0K5tkyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29587.png - small - - https://s.yimg.com/iu/api/res/1.2/zMnNylF459lXTQJ0K5tkyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29587.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26820 - 26820 - - Cobi Hamilton - Cobi - Hamilton - Cobi - Hamilton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26820 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 1 - WR - - https://s.yimg.com/iu/api/res/1.2/uVxOSJ8I60crHxX.C4mlXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26820.png - small - - https://s.yimg.com/iu/api/res/1.2/uVxOSJ8I60crHxX.C4mlXw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26820.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29406 - 29406 - - Rashard Higgins - Rashard - Higgins - Rashard - Higgins - - nfl.p.29406 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/WaXag5GQr3uOAQANhqVBCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29406.png - small - - https://s.yimg.com/iu/api/res/1.2/WaXag5GQr3uOAQANhqVBCQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29406.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29659 - 29659 - - Nick Rose - Nick - Rose - Nick - Rose - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29659 - nfl.t.34 - Houston Texans - Hou - - 10 - - 6 - K - - https://s.yimg.com/iu/api/res/1.2/bwfWbKhbtPdbfp0rznF8Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29659.png - small - - https://s.yimg.com/iu/api/res/1.2/bwfWbKhbtPdbfp0rznF8Eg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29659.png - 0 - K - - K - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.100013 - 100013 - - Oakland - Oakland - - Oakland - - - nfl.p.100013 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/oak.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/oak.gif - 0 - DT - - DEF - - - 122.7 - 12.8 - 1.1 - 0.02 - - - week - 1 - 2 - 0 - - - - 380.p.29958 - 29958 - - Johnny Holton - Johnny - Holton - Johnny - Holton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29958 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/2Qk2ChoJkogrzJOVRu2nsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29958.png - small - - https://s.yimg.com/iu/api/res/1.2/2Qk2ChoJkogrzJOVRu2nsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29958.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29368 - 29368 - - Kenneth Dixon - Kenneth - Dixon - Kenneth - Dixon - - nfl.p.29368 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/d7DhpuFmthxEKZxNZY4k4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29368.png - small - - https://s.yimg.com/iu/api/res/1.2/d7DhpuFmthxEKZxNZY4k4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29368.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.8861 - 8861 - - Harry Douglas - Harry - Douglas - Harry - Douglas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8861 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/6HA.eMUsbj7ImGMu1eBmQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8861.png - small - - https://s.yimg.com/iu/api/res/1.2/6HA.eMUsbj7ImGMu1eBmQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8861.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28417 - 28417 - - Phillip Dorsett - Phillip - Dorsett - Phillip - Dorsett - - nfl.p.28417 - nfl.t.17 - New England Patriots - NE - - 11 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/qv_V85jTWZDkrzlTIn52eQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28417.png - small - - https://s.yimg.com/iu/api/res/1.2/qv_V85jTWZDkrzlTIn52eQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28417.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.26684 - 26684 - - Eddie Lacy - Eddie - Lacy - Eddie - Lacy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26684 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/YgNF47y72V0qZSBk78Mpsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26684.png - small - - https://s.yimg.com/iu/api/res/1.2/YgNF47y72V0qZSBk78Mpsw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26684.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28669 - 28669 - - Eli Rogers - Eli - Rogers - Eli - Rogers - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.28669 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/RP2mB67WxhPNRijfLKGyYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28669.png - small - - https://s.yimg.com/iu/api/res/1.2/RP2mB67WxhPNRijfLKGyYA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28669.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31135 - 31135 - - Jaylen Samuels - Jaylen - Samuels - Jaylen - Samuels - - nfl.p.31135 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 38 - RB,TE - - https://s.yimg.com/iu/api/res/1.2/WxmmSXAyDEvgLrVBtXW.Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31135.png - small - - https://s.yimg.com/iu/api/res/1.2/WxmmSXAyDEvgLrVBtXW.Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31135.png - 0 - O - - RB - TE - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.31257 - 31257 - - Tanner Hudson - Tanner - Hudson - Tanner - Hudson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31257 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 88 - RB,TE - - https://s.yimg.com/iu/api/res/1.2/f0GgrHg1vKMaFnWIG8KPCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31257.png - small - - https://s.yimg.com/iu/api/res/1.2/f0GgrHg1vKMaFnWIG8KPCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31257.png - 0 - O - - RB - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30231 - 30231 - - Mack Hollins - Mack - Hollins - Mack - Hollins - - O - Out - nfl.p.30231 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/YcQbWzgvYI1p3rkfGGajtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30231.png - small - - https://s.yimg.com/iu/api/res/1.2/YcQbWzgvYI1p3rkfGGajtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30231.png - 0 - O - - WR - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29648 - 29648 - - Malachi Jones - Malachi - Jones - Malachi - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29648 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 2 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29618 - 29618 - - Mose Frazier - Mose - Frazier - Mose - Frazier - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29618 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/J475iR8GBCngiRtseqzNkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29618.png - small - - https://s.yimg.com/iu/api/res/1.2/J475iR8GBCngiRtseqzNkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29618.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29904 - 29904 - - Marcus Tucker - Marcus - Tucker - Marcus - Tucker - - IR - Injured Reserve - undisclosed - nfl.p.29904 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/0hnrz9Mu6kM6vNYiElDIpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29904.png - small - - https://s.yimg.com/iu/api/res/1.2/0hnrz9Mu6kM6vNYiElDIpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29904.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29836 - 29836 - - Rashawn Scott - Rashawn - Scott - Rashawn - Scott - - undisclosed - nfl.p.29836 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/f3m92C9dAJvZAsoWmRGacg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29836.png - small - - https://s.yimg.com/iu/api/res/1.2/f3m92C9dAJvZAsoWmRGacg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29836.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31626 - 31626 - - Jordan Veasy - Jordan - Veasy - Jordan - Veasy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31626 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31404 - 31404 - - De'Mornay Pierson-El - De'Mornay - Pierson-El - De'Mornay - Pierson-El - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31404 - nfl.t.28 - Washington Redskins - Was - - 4 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31083 - 31083 - - DaeSean Hamilton - DaeSean - Hamilton - DaeSean - Hamilton - - nfl.p.31083 - nfl.t.7 - Denver Broncos - Den - - 10 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/x4XOXCTh4FEeLNIO.sawdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31083.png - small - - https://s.yimg.com/iu/api/res/1.2/x4XOXCTh4FEeLNIO.sawdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31083.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31031 - 31031 - - D.J. Chark Jr. - D.J. - Chark Jr. - D.J. - Chark Jr. - - nfl.p.31031 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/cTW8_qFgDHjVNKDrcVMjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31031.png - small - - https://s.yimg.com/iu/api/res/1.2/cTW8_qFgDHjVNKDrcVMjrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31031.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30288 - 30288 - - DeAngelo Yancey - DeAngelo - Yancey - DeAngelo - Yancey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30288 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/NO_MtL3095I8chjbkCBU3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30288.png - small - - https://s.yimg.com/iu/api/res/1.2/NO_MtL3095I8chjbkCBU3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30288.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30279 - 30279 - - Shelton Gibson - Shelton - Gibson - Shelton - Gibson - - nfl.p.30279 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/M28JJFDjG96bPkCr96srDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30279.png - small - - https://s.yimg.com/iu/api/res/1.2/M28JJFDjG96bPkCr96srDw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30279.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31328 - 31328 - - Steven Dunbar - Steven - Dunbar - Steven - Dunbar - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31328 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 7 - WR - - https://s.yimg.com/iu/api/res/1.2/RYT4XzQy9KKRszrL8Hbu9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31328.png - small - - https://s.yimg.com/iu/api/res/1.2/RYT4XzQy9KKRszrL8Hbu9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31328.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29710 - 29710 - - Alonzo Russell - Alonzo - Russell - Alonzo - Russell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29710 - nfl.t.19 - New York Giants - NYG - - 9 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/kSsWV0.1CBl3hJKQV7oVWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29710.png - small - - https://s.yimg.com/iu/api/res/1.2/kSsWV0.1CBl3hJKQV7oVWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29710.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28800 - 28800 - - DeAndrew White - DeAndrew - White - DeAndrew - White - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28800 - nfl.t.7 - Denver Broncos - Den - - 10 - - 5 - WR - - https://s.yimg.com/iu/api/res/1.2/UAbBZW8MqXWTNKS3UHw0Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28800.png - small - - https://s.yimg.com/iu/api/res/1.2/UAbBZW8MqXWTNKS3UHw0Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28800.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29605 - 29605 - - Mekale McKay - Mekale - McKay - Mekale - McKay - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29605 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/jP0FAcV8MmHhyaPLD3.CCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29605.png - small - - https://s.yimg.com/iu/api/res/1.2/jP0FAcV8MmHhyaPLD3.CCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29605.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31588 - 31588 - - Vyncint Smith - Vyncint - Smith - Vyncint - Smith - - nfl.p.31588 - nfl.t.34 - Houston Texans - Hou - - 10 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28974 - 28974 - - Jake Kumerow - Jake - Kumerow - Jake - Kumerow - - IR - Injured Reserve - shoulder - nfl.p.28974 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/vCSfUOKOotx.v.UePUg3Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28974.png - small - - https://s.yimg.com/iu/api/res/1.2/vCSfUOKOotx.v.UePUg3Ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28974.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29861 - 29861 - - K.J. Maye - K.J. - Maye - K.J. - Maye - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29861 - nfl.t.17 - New England Patriots - NE - - 11 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/LJfixlfw59ZrxKyY4a69dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29861.png - small - - https://s.yimg.com/iu/api/res/1.2/LJfixlfw59ZrxKyY4a69dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29861.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30959 - 30959 - - Brandon Zylstra - Brandon - Zylstra - Brandon - Zylstra - - nfl.p.30959 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/0FIbNaWQiiYTLhO.Lv9EBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30959.png - small - - https://s.yimg.com/iu/api/res/1.2/0FIbNaWQiiYTLhO.Lv9EBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30959.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31226 - 31226 - - Trey Quinn - Trey - Quinn - Trey - Quinn - - nfl.p.31226 - nfl.t.28 - Washington Redskins - Was - - 4 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/GKG4V1N7AS7DHn5tnjAtvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31226.png - small - - https://s.yimg.com/iu/api/res/1.2/GKG4V1N7AS7DHn5tnjAtvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31226.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31244 - 31244 - - Andre Levrone - Andre - Levrone - Andre - Levrone - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31244 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/ArTLJdRz1P.nvcf40RuABw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31244.png - small - - https://s.yimg.com/iu/api/res/1.2/ArTLJdRz1P.nvcf40RuABw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31244.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31574 - 31574 - - Anthony Mahoungou - Anthony - Mahoungou - Anthony - Mahoungou - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31574 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 6 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31180 - 31180 - - Braxton Berrios - Braxton - Berrios - Braxton - Berrios - - IR - Injured Reserve - undisclosed - nfl.p.31180 - nfl.t.17 - New England Patriots - NE - - 11 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/pRGlZZ9r6QeO9ZvIty1MdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31180.png - small - - https://s.yimg.com/iu/api/res/1.2/pRGlZZ9r6QeO9ZvIty1MdA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31180.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30380 - 30380 - - Austin Duke - Austin - Duke - Austin - Duke - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30380 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 8 - WR - - https://s.yimg.com/iu/api/res/1.2/HZlXlBLqDOioT0in6srMjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30380.png - small - - https://s.yimg.com/iu/api/res/1.2/HZlXlBLqDOioT0in6srMjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30380.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31322 - 31322 - - Jalen Tolliver - Jalen - Tolliver - Jalen - Tolliver - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31322 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/Cq0LpyyG01ShFS2BNbnbiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31322.png - small - - https://s.yimg.com/iu/api/res/1.2/Cq0LpyyG01ShFS2BNbnbiw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31322.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30643 - 30643 - - Malcolm Lewis - Malcolm - Lewis - Malcolm - Lewis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30643 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/1BytA_aqF27FYenZiuH.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30643.png - small - - https://s.yimg.com/iu/api/res/1.2/1BytA_aqF27FYenZiuH.WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30643.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27718 - 27718 - - Matt Hazel - Matt - Hazel - Matt - Hazel - - IR - Injured Reserve - undisclosed - nfl.p.27718 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/mZ7p4xgtAWmJsrxW1ip7DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27718.png - small - - https://s.yimg.com/iu/api/res/1.2/mZ7p4xgtAWmJsrxW1ip7DQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/27718.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31758 - 31758 - - Josh Crockett - Josh - Crockett - Josh - Crockett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31758 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 6 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28645 - 28645 - - Rasheed Bailey - Rasheed - Bailey - Rasheed - Bailey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28645 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/O6T779yZKpT5IvGOGXtO3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28645.png - small - - https://s.yimg.com/iu/api/res/1.2/O6T779yZKpT5IvGOGXtO3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28645.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30886 - 30886 - - Colby Pearson - Colby - Pearson - Colby - Pearson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30886 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/_XHUJMYcrVFJ_idUOIl4TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30886.png - small - - https://s.yimg.com/iu/api/res/1.2/_XHUJMYcrVFJ_idUOIl4TQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30886.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31161 - 31161 - - Dylan Cantrell - Dylan - Cantrell - Dylan - Cantrell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31161 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/plOJbSQ4Ikjztub2OTXwQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31161.png - small - - https://s.yimg.com/iu/api/res/1.2/plOJbSQ4Ikjztub2OTXwQA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31161.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31771 - 31771 - - Adonis Jennings - Adonis - Jennings - Adonis - Jennings - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31771 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30653 - 30653 - - Damore'ea Stringfellow - Damore'ea - Stringfellow - Damore'ea - Stringfellow - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30653 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/gQMSH_nh6SautUS8Jc_ugA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30653.png - small - - https://s.yimg.com/iu/api/res/1.2/gQMSH_nh6SautUS8Jc_ugA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30653.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30869 - 30869 - - Justin Thomas - Justin - Thomas - Justin - Thomas - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30869 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/E_MKzvpacoVuMuSFzO8Y.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30869.png - small - - https://s.yimg.com/iu/api/res/1.2/E_MKzvpacoVuMuSFzO8Y.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30869.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30899 - 30899 - - Lance Lenoir - Lance - Lenoir - Lance - Lenoir - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30899 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/NhMZNP_.hJ8IbbLReR7vAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30899.png - small - - https://s.yimg.com/iu/api/res/1.2/NhMZNP_.hJ8IbbLReR7vAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30899.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31348 - 31348 - - Detrich Clark - Detrich - Clark - Detrich - Clark - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31348 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30512 - 30512 - - Quincy Adeboyejo - Quincy - Adeboyejo - Quincy - Adeboyejo - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.30512 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/HUJk4DD14ZHtvTRlVHP3_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30512.png - small - - https://s.yimg.com/iu/api/res/1.2/HUJk4DD14ZHtvTRlVHP3_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30512.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28947 - 28947 - - DeAndre Carter - DeAndre - Carter - DeAndre - Carter - - nfl.p.28947 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/jc81pIyxzlmYTd4qiRGWnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28947.png - small - - https://s.yimg.com/iu/api/res/1.2/jc81pIyxzlmYTd4qiRGWnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28947.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31592 - 31592 - - Jester Weah - Jester - Weah - Jester - Weah - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31592 - nfl.t.34 - Houston Texans - Hou - - 10 - - 86 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28834 - 28834 - - Shane Wynn - Shane - Wynn - Shane - Wynn - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28834 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/tFnRFPvLqGdlQSJlmR3akg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28834.png - small - - https://s.yimg.com/iu/api/res/1.2/tFnRFPvLqGdlQSJlmR3akg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28834.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31683 - 31683 - - J.J. Jones - J.J. - Jones - J.J. - Jones - - nfl.p.31683 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30647 - 30647 - - Drew Morgan - Drew - Morgan - Drew - Morgan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30647 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/zZZvakjrmZRzJm5MTXCbNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30647.png - small - - https://s.yimg.com/iu/api/res/1.2/zZZvakjrmZRzJm5MTXCbNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30647.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30481 - 30481 - - Bobo Wilson - Bobo - Wilson - Bobo - Wilson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30481 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/9i48vcn_R1BrQwCdf_fFLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30481.png - small - - https://s.yimg.com/iu/api/res/1.2/9i48vcn_R1BrQwCdf_fFLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30481.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31768 - 31768 - - Aaron Lacombe - Aaron - Lacombe - Aaron - Lacombe - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31768 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30339 - 30339 - - David Moore - David - Moore - David - Moore - - nfl.p.30339 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/frH.BLkTInAkEZId21KWcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30339.png - small - - https://s.yimg.com/iu/api/res/1.2/frH.BLkTInAkEZId21KWcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30339.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30502 - 30502 - - Zach Pascal - Zach - Pascal - Zach - Pascal - - nfl.p.30502 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/crTZWSp.LrhSpnCLXgXf2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30502.png - small - - https://s.yimg.com/iu/api/res/1.2/crTZWSp.LrhSpnCLXgXf2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30502.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30930 - 30930 - - Marvin Bracy - Marvin - Bracy - Marvin - Bracy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30930 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31114 - 31114 - - Justin Watson - Justin - Watson - Justin - Watson - - nfl.p.31114 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/RW4C_zzZj8xQ5GS8FqGhxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31114.png - small - - https://s.yimg.com/iu/api/res/1.2/RW4C_zzZj8xQ5GS8FqGhxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31114.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31164 - 31164 - - Russell Gage - Russell - Gage - Russell - Gage - - nfl.p.31164 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/B61ci21KXb9l2gTjSO_29A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31164.png - small - - https://s.yimg.com/iu/api/res/1.2/B61ci21KXb9l2gTjSO_29A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31164.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31506 - 31506 - - Janarion Grant - Janarion - Grant - Janarion - Grant - - nfl.p.31506 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30450 - 30450 - - Deante Burton - Deante - Burton - Deante - Burton - - nfl.p.30450 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 39 - WR - - https://s.yimg.com/iu/api/res/1.2/k5K92p394rCRzyhcyc2WtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30450.png - small - - https://s.yimg.com/iu/api/res/1.2/k5K92p394rCRzyhcyc2WtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30450.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31350 - 31350 - - Dontez Byrd - Dontez - Byrd - Dontez - Byrd - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31350 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/88M576cN5K75TmAMlXA_hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31350.png - small - - https://s.yimg.com/iu/api/res/1.2/88M576cN5K75TmAMlXA_hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31350.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31102 - 31102 - - Jaleel Scott - Jaleel - Scott - Jaleel - Scott - - IR - Injured Reserve - hamstring - nfl.p.31102 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/u7CS__jWUiSG1Euye3A2Hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31102.png - small - - https://s.yimg.com/iu/api/res/1.2/u7CS__jWUiSG1Euye3A2Hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31102.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30955 - 30955 - - River Cracraft - River - Cracraft - River - Cracraft - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30955 - nfl.t.7 - Denver Broncos - Den - - 10 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/dBeBasl0c3k9WVW9qZiOoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30955.png - small - - https://s.yimg.com/iu/api/res/1.2/dBeBasl0c3k9WVW9qZiOoQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30955.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27928 - 27928 - - Seantavius Jones - Seantavius - Jones - Seantavius - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27928 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/tnv0zcbxdJhdrE0dt5H7gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27928.png - small - - https://s.yimg.com/iu/api/res/1.2/tnv0zcbxdJhdrE0dt5H7gw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27928.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31030 - 31030 - - James Washington - James - Washington - James - Washington - - Q - Questionable - nfl.p.31030 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/aKCsY.3whLnalbSkB5dMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31030.png - small - - https://s.yimg.com/iu/api/res/1.2/aKCsY.3whLnalbSkB5dMew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31030.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 6 - 0 - - - - 380.p.31551 - 31551 - - Jawill Davis - Jawill - Davis - Jawill - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31551 - nfl.t.19 - New York Giants - NYG - - 9 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31017 - 31017 - - Christian Kirk - Christian - Kirk - Christian - Kirk - - nfl.p.31017 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/TXALdXLBzDcc4gJsCcp5Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31017.png - small - - https://s.yimg.com/iu/api/res/1.2/TXALdXLBzDcc4gJsCcp5Lw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31017.png - 0 - O - - WR - - 1 - 1 - - - - - - - - - - - - week - 1 - 9 - 0 - - - - 380.p.29679 - 29679 - - Cayleb Jones - Cayleb - Jones - Cayleb - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29679 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/af527smQgGUXyzQr7ZDXiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29679.png - small - - https://s.yimg.com/iu/api/res/1.2/af527smQgGUXyzQr7ZDXiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29679.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29612 - 29612 - - Tevaun Smith - Tevaun - Smith - Tevaun - Smith - - IR - Injured Reserve - undisclosed - nfl.p.29612 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/VTSA0muYD9Mq6WBG3TNg0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29612.png - small - - https://s.yimg.com/iu/api/res/1.2/VTSA0muYD9Mq6WBG3TNg0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29612.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31625 - 31625 - - Devin Ross - Devin - Ross - Devin - Ross - - undisclosed - nfl.p.31625 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31543 - 31543 - - Quincy Redmon - Quincy - Redmon - Quincy - Redmon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31543 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29837 - 29837 - - Brandon Shippen - Brandon - Shippen - Brandon - Shippen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29837 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/hwsvXYTDaa8Nt54vyeqm1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29837.png - small - - https://s.yimg.com/iu/api/res/1.2/hwsvXYTDaa8Nt54vyeqm1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29837.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30432 - 30432 - - Artavis Scott - Artavis - Scott - Artavis - Scott - - IR - Injured Reserve - leg - nfl.p.30432 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/xtjlFdK51g8puvyXByKF4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30432.png - small - - https://s.yimg.com/iu/api/res/1.2/xtjlFdK51g8puvyXByKF4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30432.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30322 - 30322 - - Robert Davis - Robert - Davis - Robert - Davis - - IR - Injured Reserve - right knee - nfl.p.30322 - nfl.t.28 - Washington Redskins - Was - - 4 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/nwHHqG1NK0O2tNDAPkMhhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30322.png - small - - https://s.yimg.com/iu/api/res/1.2/nwHHqG1NK0O2tNDAPkMhhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30322.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31598 - 31598 - - Cam Phillips - Cam - Phillips - Cam - Phillips - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31598 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31198 - 31198 - - Marcell Ateman - Marcell - Ateman - Marcell - Ateman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31198 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/TcpIVjL3COgsQTV8D4ClGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31198.png - small - - https://s.yimg.com/iu/api/res/1.2/TcpIVjL3COgsQTV8D4ClGg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31198.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31486 - 31486 - - Quadree Henderson - Quadree - Henderson - Quadree - Henderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31486 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31231 - 31231 - - Armanti Foreman - Armanti - Foreman - Armanti - Foreman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31231 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31601 - 31601 - - Robert Foster - Robert - Foster - Robert - Foster - - nfl.p.31601 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30729 - 30729 - - Kermit Whitfield - Kermit - Whitfield - Kermit - Whitfield - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30729 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/Q9Vi_9KbYS02fV4YSRlziQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30729.png - small - - https://s.yimg.com/iu/api/res/1.2/Q9Vi_9KbYS02fV4YSRlziQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30729.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30524 - 30524 - - Trey Griffey - Trey - Griffey - Trey - Griffey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30524 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/7RLnBjv6mLIXIA4kBzvz6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30524.png - small - - https://s.yimg.com/iu/api/res/1.2/7RLnBjv6mLIXIA4kBzvz6A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30524.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31777 - 31777 - - Malik Turner - Malik - Turner - Malik - Turner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31777 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 8 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31399 - 31399 - - Shay Fields - Shay - Fields - Shay - Fields - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31399 - nfl.t.28 - Washington Redskins - Was - - 4 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/vD8hFMq9rOBmC1lfYdxC7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31399.png - small - - https://s.yimg.com/iu/api/res/1.2/vD8hFMq9rOBmC1lfYdxC7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31399.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31253 - 31253 - - Sergio Bailey II - Sergio - Bailey II - Sergio - Bailey II - - ankle - nfl.p.31253 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/SgSgpf5zsI0ywoSRUwxOPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31253.png - small - - https://s.yimg.com/iu/api/res/1.2/SgSgpf5zsI0ywoSRUwxOPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31253.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29463 - 29463 - - Demarcus Ayers - Demarcus - Ayers - Demarcus - Ayers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29463 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/.lnUntBqU1ELZKB5Ik0hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29463.png - small - - https://s.yimg.com/iu/api/res/1.2/.lnUntBqU1ELZKB5Ik0hIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29463.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31075 - 31075 - - Antonio Callaway - Antonio - Callaway - Antonio - Callaway - - nfl.p.31075 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/SxbEUaHg4QlkD73goBhm0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31075.png - small - - https://s.yimg.com/iu/api/res/1.2/SxbEUaHg4QlkD73goBhm0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31075.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 4 - 0 - - - - 380.p.31479 - 31479 - - Saeed Blacknall - Saeed - Blacknall - Saeed - Blacknall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31479 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31772 - 31772 - - Jared Murphy - Jared - Murphy - Jared - Murphy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31772 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 9 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30610 - 30610 - - Montay Crockett - Montay - Crockett - Montay - Crockett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30610 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/y6AojMpN22ulalRjSSLwbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30610.png - small - - https://s.yimg.com/iu/api/res/1.2/y6AojMpN22ulalRjSSLwbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30610.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30350 - 30350 - - Isaiah Ford - Isaiah - Ford - Isaiah - Ford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30350 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/N31glEZev7khHhsCFzkBfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30350.png - small - - https://s.yimg.com/iu/api/res/1.2/N31glEZev7khHhsCFzkBfQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30350.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31783 - 31783 - - Bryce Bobo - Bryce - Bobo - Bryce - Bobo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31783 - nfl.t.7 - Denver Broncos - Den - - 10 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31460 - 31460 - - Da'Mari Scott - Da'Mari - Scott - Da'Mari - Scott - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31460 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31740 - 31740 - - Eldridge Massington - Eldridge - Massington - Eldridge - Massington - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31740 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 86 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31376 - 31376 - - John Diarse - John - Diarse - John - Diarse - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31376 - nfl.t.7 - Denver Broncos - Den - - 10 - - 9 - WR - - https://s.yimg.com/iu/api/res/1.2/_JoABTdJntcKs86kz.7ftg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31376.png - small - - https://s.yimg.com/iu/api/res/1.2/_JoABTdJntcKs86kz.7ftg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31376.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30938 - 30938 - - Dan Williams III - Dan - Williams III - Dan - Williams III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30938 - nfl.t.28 - Washington Redskins - Was - - 4 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28793 - 28793 - - Dres Anderson - Dres - Anderson - Dres - Anderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28793 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/2_yiZ5oKoKa2LXQGb9F28w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28793.png - small - - https://s.yimg.com/iu/api/res/1.2/2_yiZ5oKoKa2LXQGb9F28w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/28793.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31659 - 31659 - - Garrett Johnson - Garrett - Johnson - Garrett - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31659 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 8 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30901 - 30901 - - Fred Brown - Fred - Brown - Fred - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30901 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/m8dhaov6s8RuXAzKEFeJJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30901.png - small - - https://s.yimg.com/iu/api/res/1.2/m8dhaov6s8RuXAzKEFeJJA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30901.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30394 - 30394 - - Amba Etta-Tawo - Amba - Etta-Tawo - Amba - Etta-Tawo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30394 - nfl.t.19 - New York Giants - NYG - - 9 - - 6 - WR - - https://s.yimg.com/iu/api/res/1.2/2yzQtCqZl6YYYZ4Gd4936w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30394.png - small - - https://s.yimg.com/iu/api/res/1.2/2yzQtCqZl6YYYZ4Gd4936w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30394.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29686 - 29686 - - Paul Turner - Paul - Turner - Paul - Turner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29686 - nfl.t.17 - New England Patriots - NE - - 11 - - 86 - WR - - https://s.yimg.com/iu/api/res/1.2/IMg_J96MePU0h1S3Bl7uTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29686.png - small - - https://s.yimg.com/iu/api/res/1.2/IMg_J96MePU0h1S3Bl7uTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29686.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30682 - 30682 - - Marcus Kemp - Marcus - Kemp - Marcus - Kemp - - nfl.p.30682 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/2k6FkMjCEnQo66xs8FnYcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30682.png - small - - https://s.yimg.com/iu/api/res/1.2/2k6FkMjCEnQo66xs8FnYcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30682.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31225 - 31225 - - Austin Proehl - Austin - Proehl - Austin - Proehl - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31225 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/kOJXkOh3KO7mNI8InsGftA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31225.png - small - - https://s.yimg.com/iu/api/res/1.2/kOJXkOh3KO7mNI8InsGftA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31225.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31157 - 31157 - - Ray-Ray McCloud III - Ray-Ray - McCloud III - Ray-Ray - McCloud III - - Q - Questionable - nfl.p.31157 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/yipRjPeG6yuf9NFwcwTRpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31157.png - small - - https://s.yimg.com/iu/api/res/1.2/yipRjPeG6yuf9NFwcwTRpQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31157.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30656 - 30656 - - Austin Carr - Austin - Carr - Austin - Carr - - nfl.p.30656 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/pQ1SSp1UopymViCzwlB9zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/30656.png - small - - https://s.yimg.com/iu/api/res/1.2/pQ1SSp1UopymViCzwlB9zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08302017/30656.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31722 - 31722 - - Darvin Kidsy - Darvin - Kidsy - Darvin - Kidsy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31722 - nfl.t.28 - Washington Redskins - Was - - 4 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31210 - 31210 - - Richie James Jr. - Richie - James Jr. - Richie - James Jr. - - nfl.p.31210 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/sw9GZKHDUCgB1sZVXiUcEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31210.png - small - - https://s.yimg.com/iu/api/res/1.2/sw9GZKHDUCgB1sZVXiUcEA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31210.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29953 - 29953 - - K.J. Brent - K.J. - Brent - K.J. - Brent - - IR - Injured Reserve - undisclosed - nfl.p.29953 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/lnkqCa0Im9cD6LzFSrW07Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29953.png - small - - https://s.yimg.com/iu/api/res/1.2/lnkqCa0Im9cD6LzFSrW07Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29953.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31718 - 31718 - - Tim Wilson - Tim - Wilson - Tim - Wilson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31718 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31773 - 31773 - - Mark Chapman - Mark - Chapman - Mark - Chapman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31773 - nfl.t.7 - Denver Broncos - Den - - 10 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28840 - 28840 - - Jordan Leslie - Jordan - Leslie - Jordan - Leslie - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28840 - nfl.t.7 - Denver Broncos - Den - - 10 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/pQ5hKv27V2FpqvXNdatu9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28840.png - small - - https://s.yimg.com/iu/api/res/1.2/pQ5hKv27V2FpqvXNdatu9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28840.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31268 - 31268 - - Allen Lazard - Allen - Lazard - Allen - Lazard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31268 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/DV1XK5ACFGHPzXPrhezYUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31268.png - small - - https://s.yimg.com/iu/api/res/1.2/DV1XK5ACFGHPzXPrhezYUg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31268.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30715 - 30715 - - Greg Ward Jr. - Greg - Ward Jr. - Greg - Ward Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30715 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/u_5SH_ofKiIJZCu_xIf1xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30715.png - small - - https://s.yimg.com/iu/api/res/1.2/u_5SH_ofKiIJZCu_xIf1xA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30715.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31227 - 31227 - - Jeff Badet - Jeff - Badet - Jeff - Badet - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31227 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/9ENbIa_JKmXL_Rt.wLiPOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31227.png - small - - https://s.yimg.com/iu/api/res/1.2/9ENbIa_JKmXL_Rt.wLiPOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31227.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30195 - 30195 - - Carlos Henderson - Carlos - Henderson - Carlos - Henderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30195 - nfl.t.7 - Denver Broncos - Den - - 10 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/4cjVtV8YlyB3Gv5AJcL48Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/30195.png - small - - https://s.yimg.com/iu/api/res/1.2/4cjVtV8YlyB3Gv5AJcL48Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/30195.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31383 - 31383 - - Jimmy Williams III - Jimmy - Williams III - Jimmy - Williams III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31383 - nfl.t.7 - Denver Broncos - Den - - 10 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/PJrB5TNExDsuftZjxgXBnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31383.png - small - - https://s.yimg.com/iu/api/res/1.2/PJrB5TNExDsuftZjxgXBnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31383.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29521 - 29521 - - Jamaal Jones - Jamaal - Jones - Jamaal - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29521 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/Zw6bO1RanyH6retmuBAZNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29521.png - small - - https://s.yimg.com/iu/api/res/1.2/Zw6bO1RanyH6retmuBAZNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29521.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31369 - 31369 - - Steve Ishmael - Steve - Ishmael - Steve - Ishmael - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31369 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/4Td_N_OtgLMXDFzrSb_mHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31369.png - small - - https://s.yimg.com/iu/api/res/1.2/4Td_N_OtgLMXDFzrSb_mHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31369.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30480 - 30480 - - Thomas Sperbeck - Thomas - Sperbeck - Thomas - Sperbeck - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30480 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/vtVHQ1J6esqbCejUK4Q_OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30480.png - small - - https://s.yimg.com/iu/api/res/1.2/vtVHQ1J6esqbCejUK4Q_OA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30480.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30045 - 30045 - - Kendal Thompson - Kendal - Thompson - Kendal - Thompson - - IR - Injured Reserve - undisclosed - nfl.p.30045 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/sFdDh2IqByoQntGoug0JEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30045.png - small - - https://s.yimg.com/iu/api/res/1.2/sFdDh2IqByoQntGoug0JEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30045.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30487 - 30487 - - Krishawn Hogan - Krishawn - Hogan - Krishawn - Hogan - - IR - Injured Reserve - undisclosed - nfl.p.30487 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/pWGered4fNQYFnMwxzTccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30487.png - small - - https://s.yimg.com/iu/api/res/1.2/pWGered4fNQYFnMwxzTccA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30487.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29459 - 29459 - - Devin Lucien - Devin - Lucien - Devin - Lucien - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29459 - nfl.t.17 - New England Patriots - NE - - 11 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/j.LPYvo8rS_2VSN0xjDOqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29459.png - small - - https://s.yimg.com/iu/api/res/1.2/j.LPYvo8rS_2VSN0xjDOqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29459.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27201 - 27201 - - Nick Williams - Nick - Williams - Nick - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27201 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/olu5PDBD5YAEbodLI8en8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27201.png - small - - https://s.yimg.com/iu/api/res/1.2/olu5PDBD5YAEbodLI8en8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27201.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30781 - 30781 - - Brian Brown - Brian - Brown - Brian - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30781 - nfl.t.8 - Detroit Lions - Det - - 6 - - 3 - WR - - https://s.yimg.com/iu/api/res/1.2/BY2XVlZ8VPYgUumz61duiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30781.png - small - - https://s.yimg.com/iu/api/res/1.2/BY2XVlZ8VPYgUumz61duiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30781.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29893 - 29893 - - Andy Jones - Andy - Jones - Andy - Jones - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.29893 - nfl.t.8 - Detroit Lions - Det - - 6 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/D._S9ew50m91GeCh9AN31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29893.png - small - - https://s.yimg.com/iu/api/res/1.2/D._S9ew50m91GeCh9AN31g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29893.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31061 - 31061 - - Tre'Quan Smith - Tre'Quan - Smith - Tre'Quan - Smith - - nfl.p.31061 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/82_WsPqJo2NVn1zFBfGHCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31061.png - small - - https://s.yimg.com/iu/api/res/1.2/82_WsPqJo2NVn1zFBfGHCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/31061.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.30410 - 30410 - - Travin Dural - Travin - Dural - Travin - Dural - - IR - Injured Reserve - broken arm - nfl.p.30410 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/Qy9bbqKNC9yawRfFf.caEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30410.png - small - - https://s.yimg.com/iu/api/res/1.2/Qy9bbqKNC9yawRfFf.caEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30410.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31760 - 31760 - - Josh Smith - Josh - Smith - Josh - Smith - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31760 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31701 - 31701 - - Damoun Patterson - Damoun - Patterson - Damoun - Patterson - - IR - Injured Reserve - undisclosed - nfl.p.31701 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31389 - 31389 - - LaQuvionte Gonzalez - LaQuvionte - Gonzalez - LaQuvionte - Gonzalez - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31389 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/e6pfoavcCYp6L4bjbdjWhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31389.png - small - - https://s.yimg.com/iu/api/res/1.2/e6pfoavcCYp6L4bjbdjWhw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31389.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31739 - 31739 - - Davon Grayson - Davon - Grayson - Davon - Grayson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31739 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 9 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30940 - 30940 - - Rashard Davis - Rashard - Davis - Rashard - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30940 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/N.wRne8u6okck8I6gXjhOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30940.png - small - - https://s.yimg.com/iu/api/res/1.2/N.wRne8u6okck8I6gXjhOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30940.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31665 - 31665 - - Shaq Roland - Shaq - Roland - Shaq - Roland - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31665 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 6 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31646 - 31646 - - Darren Andrews - Darren - Andrews - Darren - Andrews - - O - Out - nfl.p.31646 - nfl.t.17 - New England Patriots - NE - - 11 - - - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31716 - 31716 - - C.J. Duncan - C.J. - Duncan - C.J. - Duncan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31716 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 82 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28550 - 28550 - - Kenny Bell - Kenny - Bell - Kenny - Bell - - NA - Inactive: Coach's Decision or Not on Roster - hamstring - nfl.p.28550 - nfl.t.7 - Denver Broncos - Den - - 10 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/PCyxnnZb.HZwtazBm0_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28550.png - small - - https://s.yimg.com/iu/api/res/1.2/PCyxnnZb.HZwtazBm0_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28550.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30637 - 30637 - - Isaac Whitney - Isaac - Whitney - Isaac - Whitney - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30637 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/D7v8OrhpCX6zlqjJTzpqsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30637.png - small - - https://s.yimg.com/iu/api/res/1.2/D7v8OrhpCX6zlqjJTzpqsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30637.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30513 - 30513 - - C.J. Board - C.J. - Board - C.J. - Board - - IR - Injured Reserve - undisclosed - nfl.p.30513 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/lA56Vq3lb52Pd4l_SAUrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30513.png - small - - https://s.yimg.com/iu/api/res/1.2/lA56Vq3lb52Pd4l_SAUrSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30513.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29682 - 29682 - - Hunter Sharp - Hunter - Sharp - Hunter - Sharp - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29682 - nfl.t.19 - New York Giants - NYG - - 9 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/Lx2WRNt4AbbeqDV..HGGAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29682.png - small - - https://s.yimg.com/iu/api/res/1.2/Lx2WRNt4AbbeqDV..HGGAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29682.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31240 - 31240 - - Korey Robertson - Korey - Robertson - Korey - Robertson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31240 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/gEvcVnNEefbom9nzTRWS.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31240.png - small - - https://s.yimg.com/iu/api/res/1.2/gEvcVnNEefbom9nzTRWS.Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31240.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31641 - 31641 - - Brandon Powell - Brandon - Powell - Brandon - Powell - - nfl.p.31641 - nfl.t.8 - Detroit Lions - Det - - 6 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30482 - 30482 - - Carlton Agudosi - Carlton - Agudosi - Carlton - Agudosi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30482 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/6Fyj3_ZxqiiAMlBPyigLFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30482.png - small - - https://s.yimg.com/iu/api/res/1.2/6Fyj3_ZxqiiAMlBPyigLFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30482.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30382 - 30382 - - Fred Ross Jr. - Fred - Ross Jr. - Fred - Ross Jr. - - IR - Injured Reserve - undisclosed - nfl.p.30382 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 2 - WR - - https://s.yimg.com/iu/api/res/1.2/V2FvG5E2luyv5Y6ut1QcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30382.png - small - - https://s.yimg.com/iu/api/res/1.2/V2FvG5E2luyv5Y6ut1QcdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30382.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30629 - 30629 - - Keon Hatcher - Keon - Hatcher - Keon - Hatcher - - nfl.p.30629 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/fRQD65PuqvNE.qomc_ydJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30629.png - small - - https://s.yimg.com/iu/api/res/1.2/fRQD65PuqvNE.qomc_ydJQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30629.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30332 - 30332 - - Stacy Coley - Stacy - Coley - Stacy - Coley - - Q - Questionable - nfl.p.30332 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/FDNZK2JMvm7fgWWwnezRyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30332.png - small - - https://s.yimg.com/iu/api/res/1.2/FDNZK2JMvm7fgWWwnezRyQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30332.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31132 - 31132 - - Jordan Lasley - Jordan - Lasley - Jordan - Lasley - - nfl.p.31132 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/.Kr_cJCgbgzYjV_eVK5E8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31132.png - small - - https://s.yimg.com/iu/api/res/1.2/.Kr_cJCgbgzYjV_eVK5E8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31132.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31465 - 31465 - - Taj Williams - Taj - Williams - Taj - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31465 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30679 - 30679 - - Gehrig Dieter - Gehrig - Dieter - Gehrig - Dieter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30679 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/L2_RzFBRJRlSGDK4wc5QyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30679.png - small - - https://s.yimg.com/iu/api/res/1.2/L2_RzFBRJRlSGDK4wc5QyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30679.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31517 - 31517 - - Keith Kirkwood - Keith - Kirkwood - Keith - Kirkwood - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31517 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31463 - 31463 - - Ka'Raun White - Ka'Raun - White - Ka'Raun - White - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31463 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30360 - 30360 - - Malachi Dupre - Malachi - Dupre - Malachi - Dupre - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30360 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/cS28ndGjLjAkyXHkSFI9IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30360.png - small - - https://s.yimg.com/iu/api/res/1.2/cS28ndGjLjAkyXHkSFI9IQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30360.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30660 - 30660 - - Cody Hollister - Cody - Hollister - Cody - Hollister - - O - Out - nfl.p.30660 - nfl.t.17 - New England Patriots - NE - - 11 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/iTWFS46piZH43bN_vA1j0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30660.png - small - - https://s.yimg.com/iu/api/res/1.2/iTWFS46piZH43bN_vA1j0A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30660.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30734 - 30734 - - Keeon Johnson - Keeon - Johnson - Keeon - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30734 - nfl.t.19 - New York Giants - NYG - - 9 - - 82 - WR - - https://s.yimg.com/iu/api/res/1.2/lFLhXR77qicyEUQhHgvhyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30734.png - small - - https://s.yimg.com/iu/api/res/1.2/lFLhXR77qicyEUQhHgvhyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/30734.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31247 - 31247 - - Jaelon Acklin - Jaelon - Acklin - Jaelon - Acklin - - undisclosed - nfl.p.31247 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/tBK9ZyI0jYRvps28T9clkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31247.png - small - - https://s.yimg.com/iu/api/res/1.2/tBK9ZyI0jYRvps28T9clkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31247.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29743 - 29743 - - Nelson Spruce - Nelson - Spruce - Nelson - Spruce - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29743 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 5 - WR - - https://s.yimg.com/iu/api/res/1.2/yyMRB8HsT9o5PKTrQFTakg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29743.png - small - - https://s.yimg.com/iu/api/res/1.2/yyMRB8HsT9o5PKTrQFTakg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29743.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31624 - 31624 - - Deontay Burnett - Deontay - Burnett - Deontay - Burnett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31624 - nfl.t.20 - New York Jets - NYJ - - 11 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31796 - 31796 - - Darius Prince - Darius - Prince - Darius - Prince - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31796 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 1 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31496 - 31496 - - Byron Pringle - Byron - Pringle - Byron - Pringle - - IR - Injured Reserve - undisclosed - nfl.p.31496 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 1 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30609 - 30609 - - Michael Clark - Michael - Clark - Michael - Clark - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30609 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/wnJ0_aeBaZFydCb43Iqj3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30609.png - small - - https://s.yimg.com/iu/api/res/1.2/wnJ0_aeBaZFydCb43Iqj3w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30609.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28520 - 28520 - - DeAndre Smelter - DeAndre - Smelter - DeAndre - Smelter - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28520 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/9H1nEKoQrtDeQPaJngtXcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28520.png - small - - https://s.yimg.com/iu/api/res/1.2/9H1nEKoQrtDeQPaJngtXcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28520.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25778 - 25778 - - DeVier Posey - DeVier - Posey - DeVier - Posey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25778 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/Sa1HNZSZmtKopwa0d38RGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25778.png - small - - https://s.yimg.com/iu/api/res/1.2/Sa1HNZSZmtKopwa0d38RGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25778.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29416 - 29416 - - Keenan Reynolds - Keenan - Reynolds - Keenan - Reynolds - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29416 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/.qw7m1MEJXD6DfTyncJj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29416.png - small - - https://s.yimg.com/iu/api/res/1.2/.qw7m1MEJXD6DfTyncJj1Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29416.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31347 - 31347 - - Christian Blake - Christian - Blake - Christian - Blake - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31347 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/Qa44q9ECd_FjTKsTw78JaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31347.png - small - - https://s.yimg.com/iu/api/res/1.2/Qa44q9ECd_FjTKsTw78JaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31347.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30511 - 30511 - - Tim Patrick - Tim - Patrick - Tim - Patrick - - nfl.p.30511 - nfl.t.7 - Denver Broncos - Den - - 10 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/TEwm18Y0aD7ultplswb8Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30511.png - small - - https://s.yimg.com/iu/api/res/1.2/TEwm18Y0aD7ultplswb8Iw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30511.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30827 - 30827 - - Reggie Davis - Reggie - Davis - Reggie - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30827 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/Mvdd66yOLyaVHbxkQ5j1sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30827.png - small - - https://s.yimg.com/iu/api/res/1.2/Mvdd66yOLyaVHbxkQ5j1sA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30827.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26859 - 26859 - - Marquess Wilson - Marquess - Wilson - Marquess - Wilson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26859 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/xJNVrP1KLEv18c7VXA0rtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26859.png - small - - https://s.yimg.com/iu/api/res/1.2/xJNVrP1KLEv18c7VXA0rtQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26859.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30767 - 30767 - - Dontez Ford - Dontez - Ford - Dontez - Ford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30767 - nfl.t.8 - Detroit Lions - Det - - 6 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/tIg_jqDTghK04MPcFRKkow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30767.png - small - - https://s.yimg.com/iu/api/res/1.2/tIg_jqDTghK04MPcFRKkow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30767.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29961 - 29961 - - Max McCaffrey - Max - McCaffrey - Max - McCaffrey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29961 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 1 - WR - - https://s.yimg.com/iu/api/res/1.2/.Qbp4GFjShk85Y4V7HdlTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29961.png - small - - https://s.yimg.com/iu/api/res/1.2/.Qbp4GFjShk85Y4V7HdlTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29961.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29472 - 29472 - - Devin Fuller - Devin - Fuller - Devin - Fuller - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29472 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/eE3VJvVBEvlUaptNOx9tFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/29472.png - small - - https://s.yimg.com/iu/api/res/1.2/eE3VJvVBEvlUaptNOx9tFA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/29472.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27305 - 27305 - - Rashad Ross - Rashad - Ross - Rashad - Ross - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27305 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/Z.IqfnRbdiJRQTWeFCeNvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27305.png - small - - https://s.yimg.com/iu/api/res/1.2/Z.IqfnRbdiJRQTWeFCeNvg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27305.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29464 - 29464 - - Daniel Braverman - Daniel - Braverman - Daniel - Braverman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29464 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/jbEw5_yO.c0PrJZThFqcRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29464.png - small - - https://s.yimg.com/iu/api/res/1.2/jbEw5_yO.c0PrJZThFqcRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29464.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28425 - 28425 - - Devin Smith - Devin - Smith - Devin - Smith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28425 - nfl.t.20 - New York Jets - NYJ - - 11 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/XL16na120FCtv1rnrMvFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28425.1.png - small - - https://s.yimg.com/iu/api/res/1.2/XL16na120FCtv1rnrMvFQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28425.1.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31391 - 31391 - - Steven Mitchell Jr. - Steven - Mitchell Jr. - Steven - Mitchell Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31391 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 86 - WR - - https://s.yimg.com/iu/api/res/1.2/ggq.9JS8QWMbZpmkormaHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31391.png - small - - https://s.yimg.com/iu/api/res/1.2/ggq.9JS8QWMbZpmkormaHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31391.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31462 - 31462 - - Derrick Willies - Derrick - Willies - Derrick - Willies - - nfl.p.31462 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30019 - 30019 - - Marquis Bundy - Marquis - Bundy - Marquis - Bundy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30019 - nfl.t.19 - New York Giants - NYG - - 9 - - 86 - WR - - https://s.yimg.com/iu/api/res/1.2/EzRWpnsQXT5nJJ5_gpPGXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30019.png - small - - https://s.yimg.com/iu/api/res/1.2/EzRWpnsQXT5nJJ5_gpPGXg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30019.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31782 - 31782 - - Marcus Peterson - Marcus - Peterson - Marcus - Peterson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31782 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 2 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31194 - 31194 - - Javon Wims - Javon - Wims - Javon - Wims - - nfl.p.31194 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/5UdMtYH12ebQMYTM8mNXDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31194.png - small - - https://s.yimg.com/iu/api/res/1.2/5UdMtYH12ebQMYTM8mNXDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31194.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27976 - 27976 - - Jeremy Butler - Jeremy - Butler - Jeremy - Butler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27976 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/RmNvhY_6R7em59XDYg4P9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27976.png - small - - https://s.yimg.com/iu/api/res/1.2/RmNvhY_6R7em59XDYg4P9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27976.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31557 - 31557 - - Devonte Boyd - Devonte - Boyd - Devonte - Boyd - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31557 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 8 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30598 - 30598 - - Brandon Reilly - Brandon - Reilly - Brandon - Reilly - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30598 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/NF6in_li0yUpz4uy4bmjDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30598.png - small - - https://s.yimg.com/iu/api/res/1.2/NF6in_li0yUpz4uy4bmjDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30598.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31281 - 31281 - - Malik Earl - Malik - Earl - Malik - Earl - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31281 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30111 - 30111 - - Cyril Grayson Jr. - Cyril - Grayson Jr. - Cyril - Grayson Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30111 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/4M8W_HrAsL0OxxwI4b.Zhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30111.png - small - - https://s.yimg.com/iu/api/res/1.2/4M8W_HrAsL0OxxwI4b.Zhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30111.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31177 - 31177 - - Equanimeous St. Brown - Equanimeous - St. Brown - Equanimeous - St. Brown - - nfl.p.31177 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/ga0OIgAj8QendGAbBM8j8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31177.png - small - - https://s.yimg.com/iu/api/res/1.2/ga0OIgAj8QendGAbBM8j8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31177.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31492 - 31492 - - Elijah Marks - Elijah - Marks - Elijah - Marks - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31492 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31793 - 31793 - - Austin Wolf - Austin - Wolf - Austin - Wolf - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31793 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31014 - 31014 - - Dante Pettis - Dante - Pettis - Dante - Pettis - - Q - Questionable - nfl.p.31014 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/QC5fqGY9bNuZq8wT8h3k_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31014.png - small - - https://s.yimg.com/iu/api/res/1.2/QC5fqGY9bNuZq8wT8h3k_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31014.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30570 - 30570 - - Brisly Estime - Brisly - Estime - Brisly - Estime - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30570 - nfl.t.20 - New York Jets - NYJ - - 11 - - 3 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24846 - 24846 - - Greg Little - Greg - Little - Greg - Little - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24846 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/P17RCCrbf2Z2VaWriz6O3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24846.png - small - - https://s.yimg.com/iu/api/res/1.2/P17RCCrbf2Z2VaWriz6O3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24846.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31275 - 31275 - - Erv Philips - Erv - Philips - Erv - Philips - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31275 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/13OCr9HxQZQmlDifCpIyoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31275.png - small - - https://s.yimg.com/iu/api/res/1.2/13OCr9HxQZQmlDifCpIyoA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31275.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29038 - 29038 - - Darius Jennings - Darius - Jennings - Darius - Jennings - - nfl.p.29038 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/migdBS9e_lOzgNWa.WUE7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29038.png - small - - https://s.yimg.com/iu/api/res/1.2/migdBS9e_lOzgNWa.WUE7A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29038.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31129 - 31129 - - Reece Fountain - Reece - Fountain - Reece - Fountain - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31129 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/DBGioAxxno3tcsx04jiYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31129.png - small - - https://s.yimg.com/iu/api/res/1.2/DBGioAxxno3tcsx04jiYpg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31129.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31508 - 31508 - - Chad Beebe - Chad - Beebe - Chad - Beebe - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31508 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29496 - 29496 - - Canaan Severin - Canaan - Severin - Canaan - Severin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29496 - nfl.t.19 - New York Giants - NYG - - 9 - - 8 - WR - - https://s.yimg.com/iu/api/res/1.2/qhQap30cS.CEzvj8FLfASw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29496.png - small - - https://s.yimg.com/iu/api/res/1.2/qhQap30cS.CEzvj8FLfASw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29496.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31401 - 31401 - - Mikah Holder - Mikah - Holder - Mikah - Holder - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31401 - nfl.t.28 - Washington Redskins - Was - - 4 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29533 - 29533 - - Dom Williams - Dom - Williams - Dom - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29533 - nfl.t.8 - Detroit Lions - Det - - 6 - - 84 - WR - - https://s.yimg.com/iu/api/res/1.2/0BKTslKRhyX_1hKqiU_CAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29533.png - small - - https://s.yimg.com/iu/api/res/1.2/0BKTslKRhyX_1hKqiU_CAg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29533.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29795 - 29795 - - Tevin Jones - Tevin - Jones - Tevin - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29795 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/wp50yh8pVosH_nkN4_bpkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29795.png - small - - https://s.yimg.com/iu/api/res/1.2/wp50yh8pVosH_nkN4_bpkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29795.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31103 - 31103 - - J'Mon Moore - J'Mon - Moore - J'Mon - Moore - - nfl.p.31103 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 82 - WR - - https://s.yimg.com/iu/api/res/1.2/89FUCFR94cYfC_zCTCRYkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31103.png - small - - https://s.yimg.com/iu/api/res/1.2/89FUCFR94cYfC_zCTCRYkA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31103.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31450 - 31450 - - Evan Berry - Evan - Berry - Evan - Berry - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31450 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31464 - 31464 - - Caleb Scott - Caleb - Scott - Caleb - Scott - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31464 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31651 - 31651 - - Chris Lacy - Chris - Lacy - Chris - Lacy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31651 - nfl.t.8 - Detroit Lions - Det - - 6 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31351 - 31351 - - Lamar Jordan - Lamar - Jordan - Lamar - Jordan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31351 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 86 - WR - - https://s.yimg.com/iu/api/res/1.2/uQr4xm1CCmDl.oWdELz0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31351.png - small - - https://s.yimg.com/iu/api/res/1.2/uQr4xm1CCmDl.oWdELz0zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31351.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31397 - 31397 - - Simmie Cobbs Jr. - Simmie - Cobbs Jr. - Simmie - Cobbs Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31397 - nfl.t.28 - Washington Redskins - Was - - 4 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/euxBmhF13wJo0HtyoM1poA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31397.png - small - - https://s.yimg.com/iu/api/res/1.2/euxBmhF13wJo0HtyoM1poA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31397.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31608 - 31608 - - Elijaah Goins - Elijaah - Goins - Elijaah - Goins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31608 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30553 - 30553 - - K.D. Cannon - K.D. - Cannon - K.D. - Cannon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30553 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/AIpRVhBCDXkwmWiCbGyDSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30553.png - small - - https://s.yimg.com/iu/api/res/1.2/AIpRVhBCDXkwmWiCbGyDSw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30553.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31705 - 31705 - - Deontez Alexander - Deontez - Alexander - Deontez - Alexander - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31705 - nfl.t.8 - Detroit Lions - Det - - 6 - - 3 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31525 - 31525 - - Jordan Smallwood - Jordan - Smallwood - Jordan - Smallwood - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31525 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 9 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31148 - 31148 - - Damion Ratley - Damion - Ratley - Damion - Ratley - - nfl.p.31148 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/HcUd5d0NHnqJASxhLyV0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31148.png - small - - https://s.yimg.com/iu/api/res/1.2/HcUd5d0NHnqJASxhLyV0ng--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31148.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30942 - 30942 - - Justice Liggins - Justice - Liggins - Justice - Liggins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30942 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 1 - WR - - https://s.yimg.com/iu/api/res/1.2/M3DaYKWC9DcWoghOG1Ls4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30942.png - small - - https://s.yimg.com/iu/api/res/1.2/M3DaYKWC9DcWoghOG1Ls4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30942.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29069 - 29069 - - Donteea Dye - Donteea - Dye - Donteea - Dye - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29069 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/2gcZ14UzrIIrU6r4y9rTYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29069.png - small - - https://s.yimg.com/iu/api/res/1.2/2gcZ14UzrIIrU6r4y9rTYw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29069.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31178 - 31178 - - Cedrick Wilson - Cedrick - Wilson - Cedrick - Wilson - - IR - Injured Reserve - shoulder - nfl.p.31178 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/O_hsCEg2e1LEz3VqeM21ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31178.png - small - - https://s.yimg.com/iu/api/res/1.2/O_hsCEg2e1LEz3VqeM21ZA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31178.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29868 - 29868 - - Darius Powe - Darius - Powe - Darius - Powe - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29868 - nfl.t.19 - New York Giants - NYG - - 9 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/0eCbKa0ti7yV.DYMHMOcZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29868.png - small - - https://s.yimg.com/iu/api/res/1.2/0eCbKa0ti7yV.DYMHMOcZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/29868.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31320 - 31320 - - Trent Sherfield - Trent - Sherfield - Trent - Sherfield - - nfl.p.31320 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/xv0TN9fgtDNMu2I29iJEwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31320.png - small - - https://s.yimg.com/iu/api/res/1.2/xv0TN9fgtDNMu2I29iJEwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31320.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31327 - 31327 - - Corey Willis - Corey - Willis - Corey - Willis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31327 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/Wt_TJGaQS4lQQ6m3ZE9MLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31327.png - small - - https://s.yimg.com/iu/api/res/1.2/Wt_TJGaQS4lQQ6m3ZE9MLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31327.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30510 - 30510 - - Tim White - Tim - White - Tim - White - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30510 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/YFJAwjoyJ9IH9KdyHMN52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30510.png - small - - https://s.yimg.com/iu/api/res/1.2/YFJAwjoyJ9IH9KdyHMN52g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30510.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31797 - 31797 - - Allenzae Staggers - Allenzae - Staggers - Allenzae - Staggers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31797 - nfl.t.28 - Washington Redskins - Was - - 4 - - 6 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29426 - 29426 - - Kolby Listenbee - Kolby - Listenbee - Kolby - Listenbee - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29426 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/sYD_xIcoqgbq3heqqtZDaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29426.1.png - small - - https://s.yimg.com/iu/api/res/1.2/sYD_xIcoqgbq3heqqtZDaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29426.1.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31799 - 31799 - - Julian Williams - Julian - Williams - Julian - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31799 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30430 - 30430 - - Andre Patton - Andre - Patton - Andre - Patton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30430 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/4BQz1a99ijLrimlqdIOhiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30430.png - small - - https://s.yimg.com/iu/api/res/1.2/4BQz1a99ijLrimlqdIOhiA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30430.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31623 - 31623 - - Cameron Batson - Cameron - Batson - Cameron - Batson - - nfl.p.31623 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31775 - 31775 - - Blake Jackson - Blake - Jackson - Blake - Jackson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31775 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28574 - 28574 - - Geremy Davis - Geremy - Davis - Geremy - Davis - - nfl.p.28574 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/CA4bE5CgMNkBZKv3GxTXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28574.png - small - - https://s.yimg.com/iu/api/res/1.2/CA4bE5CgMNkBZKv3GxTXtw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28574.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31405 - 31405 - - Cam Sims - Cam - Sims - Cam - Sims - - nfl.p.31405 - nfl.t.28 - Washington Redskins - Was - - 4 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/xv1QthX6i8XZhRpyy1ShVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31405.png - small - - https://s.yimg.com/iu/api/res/1.2/xv1QthX6i8XZhRpyy1ShVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31405.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30808 - 30808 - - Riley McCarron - Riley - McCarron - Riley - McCarron - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30808 - nfl.t.17 - New England Patriots - NE - - 11 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/4VFunyTRSB7Zoe6ovWA4pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30808.png - small - - https://s.yimg.com/iu/api/res/1.2/4VFunyTRSB7Zoe6ovWA4pQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30808.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31794 - 31794 - - Darren Carrington II - Darren - Carrington II - Darren - Carrington II - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31794 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31271 - 31271 - - Dorren Miller - Dorren - Miller - Dorren - Miller - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31271 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/N80BmltGVRaBrMwhOUrDWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31271.png - small - - https://s.yimg.com/iu/api/res/1.2/N80BmltGVRaBrMwhOUrDWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31271.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30964 - 30964 - - Lamar Atkins - Lamar - Atkins - Lamar - Atkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30964 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 45 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31155 - 31155 - - Deon Cain - Deon - Cain - Deon - Cain - - IR - Injured Reserve - torn ACL - nfl.p.31155 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 8 - WR - - https://s.yimg.com/iu/api/res/1.2/D99kY0arNW2G99PbF77z4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31155.png - small - - https://s.yimg.com/iu/api/res/1.2/D99kY0arNW2G99PbF77z4w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31155.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31711 - 31711 - - Matt Fleming - Matt - Fleming - Matt - Fleming - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31711 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 2 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31349 - 31349 - - Devin Gray - Devin - Gray - Devin - Gray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31349 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 7 - WR - - https://s.yimg.com/iu/api/res/1.2/1k5xhe3q3UGpbDK3FCLD.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31349.png - small - - https://s.yimg.com/iu/api/res/1.2/1k5xhe3q3UGpbDK3FCLD.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31349.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31769 - 31769 - - KhaDarel Hodge - KhaDarel - Hodge - KhaDarel - Hodge - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31769 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30648 - 30648 - - Francis Owusu - Francis - Owusu - Francis - Owusu - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30648 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 82 - WR - - https://s.yimg.com/iu/api/res/1.2/neg72B5sUMdKHxO.XHQTRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30648.png - small - - https://s.yimg.com/iu/api/res/1.2/neg72B5sUMdKHxO.XHQTRg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30648.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31073 - 31073 - - Keke Coutee - Keke - Coutee - Keke - Coutee - - Q - Questionable - nfl.p.31073 - nfl.t.34 - Houston Texans - Hou - - 10 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/VdM4JA.Ml8JS2mI2tfHmbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31073.png - small - - https://s.yimg.com/iu/api/res/1.2/VdM4JA.Ml8JS2mI2tfHmbQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31073.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31323 - 31323 - - Jonah Trinnaman - Jonah - Trinnaman - Jonah - Trinnaman - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31323 - nfl.t.20 - New York Jets - NYJ - - 11 - - 9 - WR - - https://s.yimg.com/iu/api/res/1.2/rcDI9OxhdJJVPkQgAdjp9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31323.png - small - - https://s.yimg.com/iu/api/res/1.2/rcDI9OxhdJJVPkQgAdjp9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31323.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31144 - 31144 - - Marquez Valdes-Scantling - Marquez - Valdes-Scantling - Marquez - Valdes-Scantling - - nfl.p.31144 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/4TvrpPxrvGaBRPY68LLTvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31144.png - small - - https://s.yimg.com/iu/api/res/1.2/4TvrpPxrvGaBRPY68LLTvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31144.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29772 - 29772 - - Jace Billingsley - Jace - Billingsley - Jace - Billingsley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29772 - nfl.t.17 - New England Patriots - NE - - 11 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/3f2Igm1h_8S7IBWGUxc_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29772.png - small - - https://s.yimg.com/iu/api/res/1.2/3f2Igm1h_8S7IBWGUxc_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29772.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31282 - 31282 - - Marchie Murdock - Marchie - Murdock - Marchie - Murdock - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31282 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/u_Nfu.71EWLqeTMStex4mg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31282.png - small - - https://s.yimg.com/iu/api/res/1.2/u_Nfu.71EWLqeTMStex4mg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31282.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31223 - 31223 - - Auden Tate - Auden - Tate - Auden - Tate - - nfl.p.31223 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/zGSdDwHV2N13lwUIXBQfcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31223.png - small - - https://s.yimg.com/iu/api/res/1.2/zGSdDwHV2N13lwUIXBQfcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31223.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31388 - 31388 - - Ricky Jeune - Ricky - Jeune - Ricky - Jeune - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31388 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 2 - WR - - https://s.yimg.com/iu/api/res/1.2/gMhEEObTHJDLEQdZgH190g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31388.png - small - - https://s.yimg.com/iu/api/res/1.2/gMhEEObTHJDLEQdZgH190g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31388.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31242 - 31242 - - Jake Wieneke - Jake - Wieneke - Jake - Wieneke - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31242 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 9 - WR - - https://s.yimg.com/iu/api/res/1.2/R93_Idn2ecNFDvT9prZTTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31242.png - small - - https://s.yimg.com/iu/api/res/1.2/R93_Idn2ecNFDvT9prZTTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31242.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27422 - 27422 - - Marlon Brown - Marlon - Brown - Marlon - Brown - - IR - Injured Reserve - undisclosed - nfl.p.27422 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/ESjNGTXsQJirKpwBnmU5PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27422.png - small - - https://s.yimg.com/iu/api/res/1.2/ESjNGTXsQJirKpwBnmU5PQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27422.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30526 - 30526 - - Bug Howard - Bug - Howard - Bug - Howard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30526 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/FuGRt3x28RaghQJu8y38Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30526.png - small - - https://s.yimg.com/iu/api/res/1.2/FuGRt3x28RaghQJu8y38Gg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30526.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31642 - 31642 - - Teo Redding - Teo - Redding - Teo - Redding - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31642 - nfl.t.8 - Detroit Lions - Det - - 6 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27103 - 27103 - - Brandon Williams - Brandon - Williams - Brandon - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27103 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/HJ.221ncEUlniHTGrmd2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27103.png - small - - https://s.yimg.com/iu/api/res/1.2/HJ.221ncEUlniHTGrmd2WA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27103.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28617 - 28617 - - Ben Koyack - Ben - Koyack - Ben - Koyack - - IR - Injured Reserve - undisclosed - nfl.p.28617 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 83 - TE - - https://s.yimg.com/iu/api/res/1.2/uL.tWc9IYDbluE6.6j4BOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28617.png - small - - https://s.yimg.com/iu/api/res/1.2/uL.tWc9IYDbluE6.6j4BOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28617.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27614 - 27614 - - Josh Huff - Josh - Huff - Josh - Huff - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27614 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/VUt5bXAdO.E9JYekUgKCWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27614.png - small - - https://s.yimg.com/iu/api/res/1.2/VUt5bXAdO.E9JYekUgKCWQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/27614.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29791 - 29791 - - Jalin Marshall - Jalin - Marshall - Jalin - Marshall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29791 - nfl.t.20 - New York Jets - NYJ - - 11 - - 89 - WR - - https://s.yimg.com/iu/api/res/1.2/W6bkXGkal3aHsEINtW5JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29791.png - small - - https://s.yimg.com/iu/api/res/1.2/W6bkXGkal3aHsEINtW5JPw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29791.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.24932 - 24932 - - Jacquizz Rodgers - Jacquizz - Rodgers - Jacquizz - Rodgers - - nfl.p.24932 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/5._MHO_DZrjKUTdDY0SZaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24932.png - small - - https://s.yimg.com/iu/api/res/1.2/5._MHO_DZrjKUTdDY0SZaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/24932.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28714 - 28714 - - Thomas Rawls - Thomas - Rawls - Thomas - Rawls - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28714 - nfl.t.20 - New York Jets - NYJ - - 11 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/3dXS8mM.RksF8BzQ.tUypQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28714.png - small - - https://s.yimg.com/iu/api/res/1.2/3dXS8mM.RksF8BzQ.tUypQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28714.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26631 - 26631 - - Tavon Austin - Tavon - Austin - Tavon - Austin - - nfl.p.26631 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 10 - WR,RB - - https://s.yimg.com/iu/api/res/1.2/HbQqn0bg_TfqrI2AnK1mNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26631.png - small - - https://s.yimg.com/iu/api/res/1.2/HbQqn0bg_TfqrI2AnK1mNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26631.png - 0 - O - - WR - RB - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.24946 - 24946 - - Lee Smith - Lee - Smith - Lee - Smith - - nfl.p.24946 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 86 - TE - - https://s.yimg.com/iu/api/res/1.2/WwU54ByJrceP3rJPsSGdSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24946.png - small - - https://s.yimg.com/iu/api/res/1.2/WwU54ByJrceP3rJPsSGdSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/24946.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26428 - 26428 - - Rod Streater - Rod - Streater - Rod - Streater - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26428 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/394mkg2tfnPUBh6fEih52A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26428.png - small - - https://s.yimg.com/iu/api/res/1.2/394mkg2tfnPUBh6fEih52A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26428.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27055 - 27055 - - Russell Shepard - Russell - Shepard - Russell - Shepard - - nfl.p.27055 - nfl.t.19 - New York Giants - NYG - - 9 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/JiiIwX4o85.KcF.bYLbizA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27055.png - small - - https://s.yimg.com/iu/api/res/1.2/JiiIwX4o85.KcF.bYLbizA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27055.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28458 - 28458 - - Jaelen Strong - Jaelen - Strong - Jaelen - Strong - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28458 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/YHFBZbEg4RlftjmBxRb4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28458.png - small - - https://s.yimg.com/iu/api/res/1.2/YHFBZbEg4RlftjmBxRb4.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28458.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30153 - 30153 - - Curtis Samuel - Curtis - Samuel - Curtis - Samuel - - D - Doubtful - nfl.p.30153 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/xFyRRdF35.hM.yvSpzxzPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30153.png - small - - https://s.yimg.com/iu/api/res/1.2/xFyRRdF35.hM.yvSpzxzPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30153.png - 0 - O - - WR - - 1 - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27938 - 27938 - - Philly Brown - Philly - Brown - Philly - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27938 - nfl.t.7 - Denver Broncos - Den - - 10 - - 5 - WR - - https://s.yimg.com/iu/api/res/1.2/iJFtVhlIcqHy.mCtqqTq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27938.png - small - - https://s.yimg.com/iu/api/res/1.2/iJFtVhlIcqHy.mCtqqTq7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/27938.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29348 - 29348 - - Ricardo Louis - Ricardo - Louis - Ricardo - Louis - - IR - Injured Reserve - neck - nfl.p.29348 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/AIPvLV_Y9CsCwC4B8vv93Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29348.png - small - - https://s.yimg.com/iu/api/res/1.2/AIPvLV_Y9CsCwC4B8vv93Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29348.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28026 - 28026 - - Willie Snead IV - Willie - Snead IV - Willie - Snead IV - - nfl.p.28026 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/2DwRwiX.R..UV00nFJfrsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28026.png - small - - https://s.yimg.com/iu/api/res/1.2/2DwRwiX.R..UV00nFJfrsQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28026.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.8850 - 8850 - - Jamaal Charles - Jamaal - Charles - Jamaal - Charles - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8850 - nfl.t.7 - Denver Broncos - Den - - 10 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/S4SjLNfACzpTOES85YFeCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/8850.png - small - - https://s.yimg.com/iu/api/res/1.2/S4SjLNfACzpTOES85YFeCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09072017/8850.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26264 - 26264 - - Giorgio Tavecchio - Giorgio - Tavecchio - Giorgio - Tavecchio - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26264 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/TueGEitRqUBx._cV1XGl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26264.png - small - - https://s.yimg.com/iu/api/res/1.2/TueGEitRqUBx._cV1XGl8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26264.png - 0 - K - - K - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28561 - 28561 - - James O'Shaughnessy - James - O'Shaughnessy - James - O'Shaughnessy - - nfl.p.28561 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/VRcEFSE2J3QpTF_BFGVXDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28561.png - small - - https://s.yimg.com/iu/api/res/1.2/VRcEFSE2J3QpTF_BFGVXDA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28561.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29475 - 29475 - - Charone Peake - Charone - Peake - Charone - Peake - - nfl.p.29475 - nfl.t.20 - New York Jets - NYJ - - 11 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/R3BaEfBmfvNJK_U._kkV.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29475.png - small - - https://s.yimg.com/iu/api/res/1.2/R3BaEfBmfvNJK_U._kkV.g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29475.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29571 - 29571 - - Alan Cross - Alan - Cross - Alan - Cross - - nfl.p.29571 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 45 - TE - - https://s.yimg.com/iu/api/res/1.2/sGSniKWmhkhOchmgUXkw0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29571.png - small - - https://s.yimg.com/iu/api/res/1.2/sGSniKWmhkhOchmgUXkw0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29571.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26497 - 26497 - - Phillip Supernaw - Phillip - Supernaw - Phillip - Supernaw - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26497 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 89 - TE - - https://s.yimg.com/iu/api/res/1.2/.WYcHKELyev1jc2W21CEzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26497.png - small - - https://s.yimg.com/iu/api/res/1.2/.WYcHKELyev1jc2W21CEzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26497.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29978 - 29978 - - Jaydon Mickens - Jaydon - Mickens - Jaydon - Mickens - - nfl.p.29978 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/bkXfq9gOC_dn0hlHwBSa_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29978.png - small - - https://s.yimg.com/iu/api/res/1.2/bkXfq9gOC_dn0hlHwBSa_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29978.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25816 - 25816 - - Robert Turbin - Robert - Turbin - Robert - Turbin - - SUSP - Suspended - nfl.p.25816 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/00fGRHTGy_vm_ZwlMAIFVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25816.png - small - - https://s.yimg.com/iu/api/res/1.2/00fGRHTGy_vm_ZwlMAIFVQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/25816.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26096 - 26096 - - Brenton Bersin - Brenton - Bersin - Brenton - Bersin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26096 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/ipEb1t0xH4XqeS0m3kkqkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26096.png - small - - https://s.yimg.com/iu/api/res/1.2/ipEb1t0xH4XqeS0m3kkqkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26096.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26839 - 26839 - - Charles Johnson - Charles - Johnson - Charles - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26839 - nfl.t.20 - New York Jets - NYJ - - 11 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/_LdmNAlBNb7WEaDqXtT9CA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26839.png - small - - https://s.yimg.com/iu/api/res/1.2/_LdmNAlBNb7WEaDqXtT9CA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/26839.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27597 - 27597 - - Charles Sims - Charles - Sims - Charles - Sims - - NA - Inactive: Coach's Decision or Not on Roster - knee - nfl.p.27597 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/pqkjaWIE0_GOsYT2i2ganw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27597.png - small - - https://s.yimg.com/iu/api/res/1.2/pqkjaWIE0_GOsYT2i2ganw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27597.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26416 - 26416 - - Derek Carrier - Derek - Carrier - Derek - Carrier - - nfl.p.26416 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/7CY29GqE5aLVwrGH2Te.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26416.png - small - - https://s.yimg.com/iu/api/res/1.2/7CY29GqE5aLVwrGH2Te.tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26416.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25992 - 25992 - - Sean McGrath - Sean - McGrath - Sean - McGrath - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25992 - nfl.t.8 - Detroit Lions - Det - - 6 - - 85 - TE - - https://s.yimg.com/iu/api/res/1.2/2N74fP_osJs1dh1Gj4BNmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25992.png - small - - https://s.yimg.com/iu/api/res/1.2/2N74fP_osJs1dh1Gj4BNmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25992.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30240 - 30240 - - Michael Roberts - Michael - Roberts - Michael - Roberts - - nfl.p.30240 - nfl.t.8 - Detroit Lions - Det - - 6 - - 80 - TE - - https://s.yimg.com/iu/api/res/1.2/T_u9HRcuDEoZTa1y8Gb0dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30240.png - small - - https://s.yimg.com/iu/api/res/1.2/T_u9HRcuDEoZTa1y8Gb0dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30240.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28494 - 28494 - - Jeremy Langford - Jeremy - Langford - Jeremy - Langford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28494 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/.MOyOlOyQbh7_47OHM8Cew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28494.png - small - - https://s.yimg.com/iu/api/res/1.2/.MOyOlOyQbh7_47OHM8Cew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/28494.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26657 - 26657 - - Justin Hunter - Justin - Hunter - Justin - Hunter - - nfl.p.26657 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/QzeCLhcBJWcdTeyFTJ8DwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26657.png - small - - https://s.yimg.com/iu/api/res/1.2/QzeCLhcBJWcdTeyFTJ8DwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26657.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26789 - 26789 - - Caleb Sturgis - Caleb - Sturgis - Caleb - Sturgis - - nfl.p.26789 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 6 - K - - https://s.yimg.com/iu/api/res/1.2/aamIm.l8u7BGC48k2ncA1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26789.png - small - - https://s.yimg.com/iu/api/res/1.2/aamIm.l8u7BGC48k2ncA1w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26789.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.30023 - 30023 - - Marvin Hall - Marvin - Hall - Marvin - Hall - - nfl.p.30023 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/aWVK70GBJCxGk2ZvkEpeNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30023.png - small - - https://s.yimg.com/iu/api/res/1.2/aWVK70GBJCxGk2ZvkEpeNw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30023.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9271 - 9271 - - Darrius Heyward-Bey - Darrius - Heyward-Bey - Darrius - Heyward-Bey - - nfl.p.9271 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/HwVvwXhRqq.jv6.qs49T_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9271.png - small - - https://s.yimg.com/iu/api/res/1.2/HwVvwXhRqq.jv6.qs49T_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9271.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29319 - 29319 - - Braxton Miller - Braxton - Miller - Braxton - Miller - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29319 - nfl.t.34 - Houston Texans - Hou - - 10 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/kBzp6TEQqW4Wa.LDgoR4Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29319.png - small - - https://s.yimg.com/iu/api/res/1.2/kBzp6TEQqW4Wa.LDgoR4Dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29319.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26024 - 26024 - - Travaris Cadet - Travaris - Cadet - Travaris - Cadet - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26024 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/dwRabwkN5XfiXygIMsx5pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26024.png - small - - https://s.yimg.com/iu/api/res/1.2/dwRabwkN5XfiXygIMsx5pg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/26024.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27767 - 27767 - - James Wright - James - Wright - James - Wright - - IR - Injured Reserve - undisclosed - nfl.p.27767 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/gLjBsZOu4vUixXgYYqvuKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27767.png - small - - https://s.yimg.com/iu/api/res/1.2/gLjBsZOu4vUixXgYYqvuKQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/27767.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24942 - 24942 - - Niles Paul - Niles - Paul - Niles - Paul - - nfl.p.24942 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 81 - TE - - https://s.yimg.com/iu/api/res/1.2/pBZorpF6bwoeLisvgYDwQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24942.png - small - - https://s.yimg.com/iu/api/res/1.2/pBZorpF6bwoeLisvgYDwQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24942.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24843 - 24843 - - Shane Vereen - Shane - Vereen - Shane - Vereen - - IR - Injured Reserve - undisclosed - nfl.p.24843 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/D5OxZ8pz_Qmc4cH2W5aU_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/24843.png - small - - https://s.yimg.com/iu/api/res/1.2/D5OxZ8pz_Qmc4cH2W5aU_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/24843.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29024 - 29024 - - Lucky Whitehead - Lucky - Whitehead - Lucky - Whitehead - - foot - nfl.p.29024 - nfl.t.20 - New York Jets - NYJ - - 11 - - 82 - WR - - https://s.yimg.com/iu/api/res/1.2/km7ooyqyXbM2oZRE_z1hBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29024.png - small - - https://s.yimg.com/iu/api/res/1.2/km7ooyqyXbM2oZRE_z1hBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/29024.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28511 - 28511 - - Vince Mayle - Vince - Mayle - Vince - Mayle - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28511 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 88 - TE - - https://s.yimg.com/iu/api/res/1.2/k8Egg7yWzBuDy05EBzDjeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28511.png - small - - https://s.yimg.com/iu/api/res/1.2/k8Egg7yWzBuDy05EBzDjeA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28511.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.5046 - 5046 - - Sebastian Janikowski - Sebastian - Janikowski - Sebastian - Janikowski - - nfl.p.5046 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 11 - K - - https://s.yimg.com/iu/api/res/1.2/mhfKWGBUl94sMoTvWV96Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5046.png - small - - https://s.yimg.com/iu/api/res/1.2/mhfKWGBUl94sMoTvWV96Xw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/5046.png - 0 - K - - K - - - 124.3 - 13.1 - 1.2 - 0.04 - - - week - 1 - 7 - 0 - - - - 380.p.29949 - 29949 - - Aldrick Rosas - Aldrick - Rosas - Aldrick - Rosas - - nfl.p.29949 - nfl.t.19 - New York Giants - NYG - - 9 - - 2 - K - - https://s.yimg.com/iu/api/res/1.2/B4PjpdutSiUn1dnrAAmi_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29949.png - small - - https://s.yimg.com/iu/api/res/1.2/B4PjpdutSiUn1dnrAAmi_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29949.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.26218 - 26218 - - Griff Whalen - Griff - Whalen - Griff - Whalen - - NA - Inactive: Coach's Decision or Not on Roster - turf toe - nfl.p.26218 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/93p5LIZkSKu5ais8tV3DKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26218.png - small - - https://s.yimg.com/iu/api/res/1.2/93p5LIZkSKu5ais8tV3DKA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26218.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29447 - 29447 - - Aaron Burbridge - Aaron - Burbridge - Aaron - Burbridge - - IR - Injured Reserve - undisclosed - nfl.p.29447 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/i62EZNbk2IDyNUNUTyG8zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29447.png - small - - https://s.yimg.com/iu/api/res/1.2/i62EZNbk2IDyNUNUTyG8zQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/29447.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29001 - 29001 - - Bradley Marquez - Bradley - Marquez - Bradley - Marquez - - nfl.p.29001 - nfl.t.8 - Detroit Lions - Det - - 6 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/sx7jiVQdMTXu4qOiV08sNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29001.png - small - - https://s.yimg.com/iu/api/res/1.2/sx7jiVQdMTXu4qOiV08sNg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29001.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25743 - 25743 - - Brian Quick - Brian - Quick - Brian - Quick - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25743 - nfl.t.28 - Washington Redskins - Was - - 4 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/ba2EeWdaL01NTRr3kGPSmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25743.png - small - - https://s.yimg.com/iu/api/res/1.2/ba2EeWdaL01NTRr3kGPSmQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/25743.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31238 - 31238 - - Kamryn Pettway - Kamryn - Pettway - Kamryn - Pettway - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31238 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30355 - 30355 - - Khalfani Muhammad - Khalfani - Muhammad - Khalfani - Muhammad - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30355 - nfl.t.17 - New England Patriots - NE - - 11 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/nYd14o4LvZMRuIWmRCNUkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30355.png - small - - https://s.yimg.com/iu/api/res/1.2/nYd14o4LvZMRuIWmRCNUkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30355.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31622 - 31622 - - Akrum Wadley - Akrum - Wadley - Akrum - Wadley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31622 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30292 - 30292 - - T.J. Logan - T.J. - Logan - T.J. - Logan - - nfl.p.30292 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/dqNMNM8AhsXGng_1SnTtDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30292.png - small - - https://s.yimg.com/iu/api/res/1.2/dqNMNM8AhsXGng_1SnTtDQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30292.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31379 - 31379 - - Phillip Lindsay - Phillip - Lindsay - Phillip - Lindsay - - nfl.p.31379 - nfl.t.7 - Denver Broncos - Den - - 10 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/XSC2pTJSe1wb9ycADaSajQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31379.png - small - - https://s.yimg.com/iu/api/res/1.2/XSC2pTJSe1wb9ycADaSajQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31379.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31510 - 31510 - - Johnny Stanton - Johnny - Stanton - Johnny - Stanton - - IR - Injured Reserve - left knee - nfl.p.31510 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 48 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31335 - 31335 - - Chris Ezeala - Chris - Ezeala - Chris - Ezeala - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31335 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/2_6F8Bx.I0iqF_rfGBoJPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31335.png - small - - https://s.yimg.com/iu/api/res/1.2/2_6F8Bx.I0iqF_rfGBoJPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31335.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29476 - 29476 - - Keith Marshall - Keith - Marshall - Keith - Marshall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29476 - nfl.t.28 - Washington Redskins - Was - - 4 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/UQBdZzAMBmvnd4PAS1Se_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29476.png - small - - https://s.yimg.com/iu/api/res/1.2/UQBdZzAMBmvnd4PAS1Se_A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29476.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31396 - 31396 - - Martez Carter - Martez - Carter - Martez - Carter - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31396 - nfl.t.28 - Washington Redskins - Was - - 4 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/5nR7DMxK5VjNIp2kD5LaiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31396.png - small - - https://s.yimg.com/iu/api/res/1.2/5nR7DMxK5VjNIp2kD5LaiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31396.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30398 - 30398 - - Tim Cook - Tim - Cook - Tim - Cook - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30398 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 41 - RB - - https://s.yimg.com/iu/api/res/1.2/KKCT0LWwBkyqTFwnewQ3xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30398.png - small - - https://s.yimg.com/iu/api/res/1.2/KKCT0LWwBkyqTFwnewQ3xg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30398.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29184 - 29184 - - Bronson Hill - Bronson - Hill - Bronson - Hill - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29184 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/qr11wjeuqVI3InrMeXvwxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29184.1.png - small - - https://s.yimg.com/iu/api/res/1.2/qr11wjeuqVI3InrMeXvwxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29184.1.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30516 - 30516 - - Taquan Mizzell - Taquan - Mizzell - Taquan - Mizzell - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30516 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/hboi6qJMcNgD2z80Ql5ezQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30516.png - small - - https://s.yimg.com/iu/api/res/1.2/hboi6qJMcNgD2z80Ql5ezQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30516.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27312 - 27312 - - George Winn - George - Winn - George - Winn - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27312 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 37 - RB - - https://s.yimg.com/iu/api/res/1.2/jq5y2i_gpDp3PltbTBrQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27312.png - small - - https://s.yimg.com/iu/api/res/1.2/jq5y2i_gpDp3PltbTBrQ.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/27312.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30319 - 30319 - - De'Angelo Henderson - De'Angelo - Henderson - De'Angelo - Henderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30319 - nfl.t.20 - New York Jets - NYJ - - 11 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/xm_kVWxx5u1Cbt90LDXJag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30319.png - small - - https://s.yimg.com/iu/api/res/1.2/xm_kVWxx5u1Cbt90LDXJag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30319.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30234 - 30234 - - Joe Williams - Joe - Williams - Joe - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30234 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/oaZFsrOUCBLqSIp0cFkE6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30234.png - small - - https://s.yimg.com/iu/api/res/1.2/oaZFsrOUCBLqSIp0cFkE6g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30234.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31467 - 31467 - - Khalid Hill - Khalid - Hill - Khalid - Hill - - IR - Injured Reserve - undisclosed - nfl.p.31467 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26601 - 26601 - - Austin Johnson - Austin - Johnson - Austin - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26601 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/crKJLcCJYxrnfiTfzoxb9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26601.png - small - - https://s.yimg.com/iu/api/res/1.2/crKJLcCJYxrnfiTfzoxb9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26601.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31074 - 31074 - - Nyheim Hines - Nyheim - Hines - Nyheim - Hines - - nfl.p.31074 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 21 - RB - - https://s.yimg.com/iu/api/res/1.2/o7lUYc_33tLMcGxptX_.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31074.png - small - - https://s.yimg.com/iu/api/res/1.2/o7lUYc_33tLMcGxptX_.kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/31074.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.28922 - 28922 - - John Crockett - John - Crockett - John - Crockett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28922 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/lcuRVHnex2FGLLOh1w7CYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28922.png - small - - https://s.yimg.com/iu/api/res/1.2/lcuRVHnex2FGLLOh1w7CYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/28922.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31795 - 31795 - - Justin Stockton - Justin - Stockton - Justin - Stockton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31795 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 43 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31514 - 31514 - - Chris Warren III - Chris - Warren III - Chris - Warren III - - IR - Injured Reserve - undisclosed - nfl.p.31514 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.31278 - 31278 - - Shaun Wilson - Shaun - Wilson - Shaun - Wilson - - nfl.p.31278 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/3nQtUyBQS6qUDwFiu2G8_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31278.png - small - - https://s.yimg.com/iu/api/res/1.2/3nQtUyBQS6qUDwFiu2G8_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31278.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28953 - 28953 - - Terrence Magee - Terrence - Magee - Terrence - Magee - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28953 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 41 - RB - - https://s.yimg.com/iu/api/res/1.2/nJyGVTmsQe_qfAPEI9yybg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28953.png - small - - https://s.yimg.com/iu/api/res/1.2/nJyGVTmsQe_qfAPEI9yybg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28953.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30873 - 30873 - - Lenard Tillery - Lenard - Tillery - Lenard - Tillery - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30873 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/FPf5H1N.8jDKCK2b.Ch25A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30873.png - small - - https://s.yimg.com/iu/api/res/1.2/FPf5H1N.8jDKCK2b.Ch25A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30873.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31096 - 31096 - - Ito Smith - Ito - Smith - Ito - Smith - - nfl.p.31096 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/xzgiErw3KMDpBfcJNUZw1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31096.png - small - - https://s.yimg.com/iu/api/res/1.2/xzgiErw3KMDpBfcJNUZw1A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31096.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30650 - 30650 - - De'Veon Smith - De'Veon - Smith - De'Veon - Smith - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30650 - nfl.t.28 - Washington Redskins - Was - - 4 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/I7KXzQGV9abi9ayZGZuDAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30650.png - small - - https://s.yimg.com/iu/api/res/1.2/I7KXzQGV9abi9ayZGZuDAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/30650.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31319 - 31319 - - Austin Ramesh - Austin - Ramesh - Austin - Ramesh - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31319 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31423 - 31423 - - Mark Thompson - Mark - Thompson - Mark - Thompson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31423 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31228 - 31228 - - Mike Boone - Mike - Boone - Mike - Boone - - nfl.p.31228 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/pKXO5mzuP7wn6YMGJohGBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31228.png - small - - https://s.yimg.com/iu/api/res/1.2/pKXO5mzuP7wn6YMGJohGBA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31228.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30275 - 30275 - - Jeremy McNichols - Jeremy - McNichols - Jeremy - McNichols - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30275 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/JU_G.7gln2V6JnF_MXt_5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30275.png - small - - https://s.yimg.com/iu/api/res/1.2/JU_G.7gln2V6JnF_MXt_5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30275.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31174 - 31174 - - Trenton Cannon - Trenton - Cannon - Trenton - Cannon - - nfl.p.31174 - nfl.t.20 - New York Jets - NYJ - - 11 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/l2tAi_CfJCUspOMch3URfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31174.png - small - - https://s.yimg.com/iu/api/res/1.2/l2tAi_CfJCUspOMch3URfA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31174.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31567 - 31567 - - Josh Adams - Josh - Adams - Josh - Adams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31567 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31787 - 31787 - - Gerald Holmes - Gerald - Holmes - Gerald - Holmes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31787 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31241 - 31241 - - Roc Thomas - Roc - Thomas - Roc - Thomas - - Q - Questionable - nfl.p.31241 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/RTctrwmXetZ6VYcP98CvTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31241.png - small - - https://s.yimg.com/iu/api/res/1.2/RTctrwmXetZ6VYcP98CvTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31241.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31221 - 31221 - - Justin Jackson - Justin - Jackson - Justin - Jackson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31221 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/HEm6xKQOdJPpKfwbOJ5Uwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31221.png - small - - https://s.yimg.com/iu/api/res/1.2/HEm6xKQOdJPpKfwbOJ5Uwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31221.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31662 - 31662 - - Ryan Nall - Ryan - Nall - Ryan - Nall - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31662 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29085 - 29085 - - Mack Brown - Mack - Brown - Mack - Brown - - IR - Injured Reserve - undisclosed - nfl.p.29085 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 31 - RB - - https://s.yimg.com/iu/api/res/1.2/xwJ.zcoH4SJESFUmen51zA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29085.png - small - - https://s.yimg.com/iu/api/res/1.2/xwJ.zcoH4SJESFUmen51zA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29085.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31621 - 31621 - - Larry Rose III - Larry - Rose III - Larry - Rose III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31621 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29661 - 29661 - - Brandon Wilds - Brandon - Wilds - Brandon - Wilds - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29661 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/VeC.CygXZjtcpRK6gGTTmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29661.png - small - - https://s.yimg.com/iu/api/res/1.2/VeC.CygXZjtcpRK6gGTTmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29661.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31637 - 31637 - - Kyle Lewis - Kyle - Lewis - Kyle - Lewis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31637 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 1 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31280 - 31280 - - Jordan Chunn - Jordan - Chunn - Jordan - Chunn - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31280 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/PbxNOBiSxpdmnbr_kRrIOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31280.png - small - - https://s.yimg.com/iu/api/res/1.2/PbxNOBiSxpdmnbr_kRrIOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31280.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30587 - 30587 - - Jarveon Williams - Jarveon - Williams - Jarveon - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30587 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/68SAl1cd2PCspIbulpWBLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30587.png - small - - https://s.yimg.com/iu/api/res/1.2/68SAl1cd2PCspIbulpWBLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30587.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31171 - 31171 - - Boston Scott - Boston - Scott - Boston - Scott - - nfl.p.31171 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/VX3Uywd58H0ulHTqKgtByA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31171.png - small - - https://s.yimg.com/iu/api/res/1.2/VX3Uywd58H0ulHTqKgtByA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31171.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.30533 - 30533 - - Brandon Radcliff - Brandon - Radcliff - Brandon - Radcliff - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30533 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 37 - RB - - https://s.yimg.com/iu/api/res/1.2/98ORuxRiy0.7mWT.f8qGrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30533.png - small - - https://s.yimg.com/iu/api/res/1.2/98ORuxRiy0.7mWT.f8qGrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30533.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30318 - 30318 - - Sam Rogers - Sam - Rogers - Sam - Rogers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30318 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/k9.jOqKQ0iITSereXh_eYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30318.png - small - - https://s.yimg.com/iu/api/res/1.2/k9.jOqKQ0iITSereXh_eYQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/30318.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31537 - 31537 - - Gregory Howell - Gregory - Howell - Gregory - Howell - - nfl.p.31537 - nfl.t.34 - Houston Texans - Hou - - 10 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29715 - 29715 - - Aaron Green - Aaron - Green - Aaron - Green - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29715 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/cKNxBgUsqKn7nzy_t2Rj5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29715.png - small - - https://s.yimg.com/iu/api/res/1.2/cKNxBgUsqKn7nzy_t2Rj5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29715.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31595 - 31595 - - Keith Ford - Keith - Ford - Keith - Ford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31595 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31100 - 31100 - - Kalen Ballage - Kalen - Ballage - Kalen - Ballage - - nfl.p.31100 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/RzE.lKHiMIHnNbBTF3V_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31100.png - small - - https://s.yimg.com/iu/api/res/1.2/RzE.lKHiMIHnNbBTF3V_tQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31100.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.26812 - 26812 - - Mike James - Mike - James - Mike - James - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26812 - nfl.t.8 - Detroit Lions - Det - - 6 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/oLjBaVn8FABkDRnNWFxV_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/26812.png - small - - https://s.yimg.com/iu/api/res/1.2/oLjBaVn8FABkDRnNWFxV_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09152017/26812.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31620 - 31620 - - Dalyn Dawkins - Dalyn - Dawkins - Dalyn - Dawkins - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31620 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31339 - 31339 - - Malik Williams - Malik - Williams - Malik - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31339 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/c4oMoRUGfPnNnW9gIYgLmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31339.png - small - - https://s.yimg.com/iu/api/res/1.2/c4oMoRUGfPnNnW9gIYgLmw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31339.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30245 - 30245 - - Donnel Pumphrey - Donnel - Pumphrey - Donnel - Pumphrey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30245 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/u9M9g8C9DW_c9BHvChSSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30245.png - small - - https://s.yimg.com/iu/api/res/1.2/u9M9g8C9DW_c9BHvChSSAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30245.png - 0 - O - - RB - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30860 - 30860 - - Dare Ogunbowale - Dare - Ogunbowale - Dare - Ogunbowale - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30860 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/2rpPhktZDOxXjCPXlp4V5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30860.png - small - - https://s.yimg.com/iu/api/res/1.2/2rpPhktZDOxXjCPXlp4V5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/30860.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31407 - 31407 - - Elijah Wellman - Elijah - Wellman - Elijah - Wellman - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.31407 - nfl.t.28 - Washington Redskins - Was - - 4 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/umdL_fiXiis_6SJVXfFQ1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31407.png - small - - https://s.yimg.com/iu/api/res/1.2/umdL_fiXiis_6SJVXfFQ1g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31407.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29575 - 29575 - - Russell Hansbrough - Russell - Hansbrough - Russell - Hansbrough - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29575 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/fUFNxsnxmPZLbP_dONSMdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29575.png - small - - https://s.yimg.com/iu/api/res/1.2/fUFNxsnxmPZLbP_dONSMdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29575.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30496 - 30496 - - James Summers - James - Summers - James - Summers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30496 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/Zar_X4bOnD0fNGgbTnlpnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30496.png - small - - https://s.yimg.com/iu/api/res/1.2/Zar_X4bOnD0fNGgbTnlpnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30496.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31704 - 31704 - - Robert Martin - Robert - Martin - Robert - Martin - - Q - Questionable - nfl.p.31704 - nfl.t.19 - New York Giants - NYG - - 9 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31590 - 31590 - - Terry Swanson - Terry - Swanson - Terry - Swanson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31590 - nfl.t.34 - Houston Texans - Hou - - 10 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29450 - 29450 - - Darius Jackson - Darius - Jackson - Darius - Jackson - - nfl.p.29450 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/Fi3W5kdx0Bm4g8M7CQv8lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29450.png - small - - https://s.yimg.com/iu/api/res/1.2/Fi3W5kdx0Bm4g8M7CQv8lg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29450.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30751 - 30751 - - Akeem Judd - Akeem - Judd - Akeem - Judd - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30751 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/ugSnObrsK_3VkJOOBNCVBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30751.png - small - - https://s.yimg.com/iu/api/res/1.2/ugSnObrsK_3VkJOOBNCVBg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30751.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31513 - 31513 - - Henry Poggi - Henry - Poggi - Henry - Poggi - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31513 - nfl.t.17 - New England Patriots - NE - - 11 - - 48 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30757 - 30757 - - Algernon Brown - Algernon - Brown - Algernon - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30757 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/wLHdzHy5GL4X0M.cPdDVfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30757.png - small - - https://s.yimg.com/iu/api/res/1.2/wLHdzHy5GL4X0M.cPdDVfg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30757.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30353 - 30353 - - Marquez Williams - Marquez - Williams - Marquez - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30353 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/EQzHjCiCbWkee2c4fbTO4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30353.png - small - - https://s.yimg.com/iu/api/res/1.2/EQzHjCiCbWkee2c4fbTO4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30353.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31798 - 31798 - - Kobe McCrary - Kobe - McCrary - Kobe - McCrary - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31798 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 48 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31485 - 31485 - - Jarvion Franklin - Jarvion - Franklin - Jarvion - Franklin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31485 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30351 - 30351 - - Devante Mays - Devante - Mays - Devante - Mays - - IR - Injured Reserve - hamstring - nfl.p.30351 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/6rEuoiptH42zvctx79yYog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30351.png - small - - https://s.yimg.com/iu/api/res/1.2/6rEuoiptH42zvctx79yYog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30351.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31104 - 31104 - - Chase Edmonds - Chase - Edmonds - Chase - Edmonds - - nfl.p.31104 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 29 - RB - - https://s.yimg.com/iu/api/res/1.2/Sy4UlBSzMjYxDoxsqacqJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31104.png - small - - https://s.yimg.com/iu/api/res/1.2/Sy4UlBSzMjYxDoxsqacqJw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31104.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.28618 - 28618 - - Marcus Murphy - Marcus - Murphy - Marcus - Murphy - - nfl.p.28618 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/SaquxHWTg5lK4d2DXKOmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28618.png - small - - https://s.yimg.com/iu/api/res/1.2/SaquxHWTg5lK4d2DXKOmCw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28618.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31748 - 31748 - - Sherman Badie - Sherman - Badie - Sherman - Badie - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31748 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31560 - 31560 - - Quinton Flowers - Quinton - Flowers - Quinton - Flowers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31560 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31805 - 31805 - - Ja'Quan Gardner - Ja'Quan - Gardner - Ja'Quan - Gardner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31805 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31341 - 31341 - - Luke McNitt - Luke - McNitt - Luke - McNitt - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31341 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 43 - RB - - https://s.yimg.com/iu/api/res/1.2/SsQTVK1U1Pe3mbcv6DENkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31341.png - small - - https://s.yimg.com/iu/api/res/1.2/SsQTVK1U1Pe3mbcv6DENkw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31341.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31653 - 31653 - - Ralph Webb - Ralph - Webb - Ralph - Webb - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31653 - nfl.t.17 - New England Patriots - NE - - 11 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31781 - 31781 - - James Butler - James - Butler - James - Butler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31781 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31302 - 31302 - - Reggie Bonnafon - Reggie - Bonnafon - Reggie - Bonnafon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31302 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/SRtfMw7eLIJI8rFsCCwayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31302.png - small - - https://s.yimg.com/iu/api/res/1.2/SRtfMw7eLIJI8rFsCCwayg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31302.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31564 - 31564 - - Ray Lawry - Ray - Lawry - Ray - Lawry - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31564 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31338 - 31338 - - Justin Crawford - Justin - Crawford - Justin - Crawford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31338 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/L._LeNk9X2ynaIoDCfnhzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31338.png - small - - https://s.yimg.com/iu/api/res/1.2/L._LeNk9X2ynaIoDCfnhzw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31338.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31206 - 31206 - - Bo Scarbrough - Bo - Scarbrough - Bo - Scarbrough - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31206 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/2qGR1lC5nkwdQahzZHpCjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31206.png - small - - https://s.yimg.com/iu/api/res/1.2/2qGR1lC5nkwdQahzZHpCjw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31206.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30703 - 30703 - - Devine Redding - Devine - Redding - Devine - Redding - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30703 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/BGsr_pWVh.Ck_vRY17BFaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30703.png - small - - https://s.yimg.com/iu/api/res/1.2/BGsr_pWVh.Ck_vRY17BFaQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30703.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31500 - 31500 - - Darrel Williams - Darrel - Williams - Darrel - Williams - - nfl.p.31500 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 31 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31685 - 31685 - - Detrez Newsome - Detrez - Newsome - Detrez - Newsome - - nfl.p.31685 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.30305 - 30305 - - Alex Armah - Alex - Armah - Alex - Armah - - nfl.p.30305 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/ZaHoYnYbkeDIFIs80bBfyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30305.png - small - - https://s.yimg.com/iu/api/res/1.2/ZaHoYnYbkeDIFIs80bBfyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30305.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31466 - 31466 - - Marcus Martin - Marcus - Martin - Marcus - Martin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31466 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 56 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31457 - 31457 - - Dontrell Hilliard - Dontrell - Hilliard - Dontrell - Hilliard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31457 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29700 - 29700 - - Tra Carson - Tra - Carson - Tra - Carson - - nfl.p.29700 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/PKRLsEr6QrKAqM6Lc0k9Zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29700.png - small - - https://s.yimg.com/iu/api/res/1.2/PKRLsEr6QrKAqM6Lc0k9Zg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29700.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31700 - 31700 - - Zach Olstad - Zach - Olstad - Zach - Olstad - - NA - Inactive: Coach's Decision or Not on Roster - ankle - nfl.p.31700 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31715 - 31715 - - Ryan Yurachek - Ryan - Yurachek - Ryan - Yurachek - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31715 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31394 - 31394 - - Jeff Wilson - Jeff - Wilson - Jeff - Wilson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31394 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 41 - RB - - https://s.yimg.com/iu/api/res/1.2/oPOfbkWyRGsZKJaOKzlJ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31394.png - small - - https://s.yimg.com/iu/api/res/1.2/oPOfbkWyRGsZKJaOKzlJ9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31394.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29542 - 29542 - - Jhurell Pressley - Jhurell - Pressley - Jhurell - Pressley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29542 - nfl.t.19 - New York Giants - NYG - - 9 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/ARMU_s9bJ1Xi8yTEkoWP_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29542.png - small - - https://s.yimg.com/iu/api/res/1.2/ARMU_s9bJ1Xi8yTEkoWP_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29542.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30354 - 30354 - - Elijah Hood - Elijah - Hood - Elijah - Hood - - IR - Injured Reserve - undisclosed - nfl.p.30354 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/dBNAzTRrA9DPJ7KL2dKi0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30354.png - small - - https://s.yimg.com/iu/api/res/1.2/dBNAzTRrA9DPJ7KL2dKi0Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30354.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28865 - 28865 - - Trey Williams - Trey - Williams - Trey - Williams - - IR - Injured Reserve - undisclosed - nfl.p.28865 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/XY5IytaaG4tOyNI4HOLcSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28865.png - small - - https://s.yimg.com/iu/api/res/1.2/XY5IytaaG4tOyNI4HOLcSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28865.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30522 - 30522 - - Dalton Crossan - Dalton - Crossan - Dalton - Crossan - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.30522 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/0_OIJCq2ZuFjdaGYM5Pkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30522.png - small - - https://s.yimg.com/iu/api/res/1.2/0_OIJCq2ZuFjdaGYM5Pkdw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30522.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30370 - 30370 - - Justin Davis - Justin - Davis - Justin - Davis - - nfl.p.30370 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/YP12BN3HIHC6bi0eZQ4LdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30370.png - small - - https://s.yimg.com/iu/api/res/1.2/YP12BN3HIHC6bi0eZQ4LdQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30370.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30717 - 30717 - - Joel Bouagnon - Joel - Bouagnon - Joel - Bouagnon - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30717 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/aaXmzqkW4oON74k6PVPYtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30717.png - small - - https://s.yimg.com/iu/api/res/1.2/aaXmzqkW4oON74k6PVPYtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30717.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30915 - 30915 - - Darius Victor - Darius - Victor - Darius - Victor - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30915 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31196 - 31196 - - David Williams - David - Williams - David - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31196 - nfl.t.7 - Denver Broncos - Den - - 10 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/yJPZMGHPBZWTpnul8_u_tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31196.png - small - - https://s.yimg.com/iu/api/res/1.2/yJPZMGHPBZWTpnul8_u_tw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31196.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29993 - 29993 - - Jalen Simmons - Jalen - Simmons - Jalen - Simmons - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29993 - nfl.t.19 - New York Giants - NYG - - 9 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/qff.3KWbb_u9Fioax5Jrlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29993.png - small - - https://s.yimg.com/iu/api/res/1.2/qff.3KWbb_u9Fioax5Jrlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29993.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31082 - 31082 - - Mark Walton - Mark - Walton - Mark - Walton - - Q - Questionable - nfl.p.31082 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/ooq6D1Bh685We_1XSEpoyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31082.png - small - - https://s.yimg.com/iu/api/res/1.2/ooq6D1Bh685We_1XSEpoyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31082.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30517 - 30517 - - Ricky Ortiz - Ricky - Ortiz - Ricky - Ortiz - - nfl.p.30517 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/J14Is.B_yihErqSI65glnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30517.png - small - - https://s.yimg.com/iu/api/res/1.2/J14Is.B_yihErqSI65glnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30517.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31340 - 31340 - - Daniel Marx - Daniel - Marx - Daniel - Marx - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31340 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/BbIQAqIJyIg6agL.ftj7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31340.png - small - - https://s.yimg.com/iu/api/res/1.2/BbIQAqIJyIg6agL.ftj7Ag--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31340.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31425 - 31425 - - De'Lance Turner - De'Lance - Turner - De'Lance - Turner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31425 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 47 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31493 - 31493 - - J.D. Moore - J.D. - Moore - J.D. - Moore - - IR - Injured Reserve - undisclosed - nfl.p.31493 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 43 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31443 - 31443 - - Dimitri Flowers - Dimitri - Flowers - Dimitri - Flowers - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31443 - nfl.t.20 - New York Jets - NYJ - - 11 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31483 - 31483 - - Nick Sharga - Nick - Sharga - Nick - Sharga - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31483 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31575 - 31575 - - Lavon Coleman - Lavon - Coleman - Lavon - Coleman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31575 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31207 - 31207 - - Nick Bawden - Nick - Bawden - Nick - Bawden - - IR - Injured Reserve - torn right ACL - nfl.p.31207 - nfl.t.8 - Detroit Lions - Det - - 6 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/wMg4Vvx_gyucz4EPPsYYqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31207.png - small - - https://s.yimg.com/iu/api/res/1.2/wMg4Vvx_gyucz4EPPsYYqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31207.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.24860 - 24860 - - Stevan Ridley - Stevan - Ridley - Stevan - Ridley - - nfl.p.24860 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/fwcC_ioFssaQXD8GsCy0Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24860.png - small - - https://s.yimg.com/iu/api/res/1.2/fwcC_ioFssaQXD8GsCy0Ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24860.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31337 - 31337 - - Demario Richard - Demario - Richard - Demario - Richard - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31337 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 41 - RB - - https://s.yimg.com/iu/api/res/1.2/irFQ6QJ80M9n23NS9C2sCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31337.png - small - - https://s.yimg.com/iu/api/res/1.2/irFQ6QJ80M9n23NS9C2sCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31337.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29695 - 29695 - - Joe Kerridge - Joe - Kerridge - Joe - Kerridge - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29695 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/blnW0o4SnaHYjKTmUr6c6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29695.png - small - - https://s.yimg.com/iu/api/res/1.2/blnW0o4SnaHYjKTmUr6c6Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29695.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30658 - 30658 - - LeShun Daniels Jr. - LeShun - Daniels Jr. - LeShun - Daniels Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30658 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/.l3wdlEvmGvIwhpWD6AtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/30658.png - small - - https://s.yimg.com/iu/api/res/1.2/.l3wdlEvmGvIwhpWD6AtYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312017/30658.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31684 - 31684 - - Anthony Manzo-Lewis - Anthony - Manzo-Lewis - Anthony - Manzo-Lewis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31684 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31424 - 31424 - - Gus Edwards - Gus - Edwards - Gus - Edwards - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31424 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31730 - 31730 - - Nick Holley - Nick - Holley - Nick - Holley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31730 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.100020 - 100020 - - New York - New York - - New York - - - nfl.p.100020 - nfl.t.20 - New York Jets - NYJ - - 11 - - - DEF - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyj.gif - small - - https://s.yimg.com/lq/i/us/sp/v/nfl/teams/1/50x50w/nyj.gif - 0 - DT - - DEF - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28527 - 28527 - - Rashad Greene Sr. - Rashad - Greene Sr. - Rashad - Greene Sr. - - nfl.p.28527 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/RhHM6U6X1WUF.hqPfsxcKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28527.png - small - - https://s.yimg.com/iu/api/res/1.2/RhHM6U6X1WUF.hqPfsxcKw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28527.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30002 - 30002 - - Jake Lampman - Jake - Lampman - Jake - Lampman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30002 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/6SyCyvi.Ldbzn2PKfAqCyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30002.png - small - - https://s.yimg.com/iu/api/res/1.2/6SyCyvi.Ldbzn2PKfAqCyA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30002.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30737 - 30737 - - Travis Rudolph - Travis - Rudolph - Travis - Rudolph - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30737 - nfl.t.19 - New York Giants - NYG - - 9 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/qphJtiOWytVOvab4Jpae3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30737.png - small - - https://s.yimg.com/iu/api/res/1.2/qphJtiOWytVOvab4Jpae3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30737.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29208 - 29208 - - Ross Travis - Ross - Travis - Ross - Travis - - IR - Injured Reserve - undisclosed - nfl.p.29208 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 43 - TE - - https://s.yimg.com/iu/api/res/1.2/lZPG19GOLYjddffpSP3s7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29208.png - small - - https://s.yimg.com/iu/api/res/1.2/lZPG19GOLYjddffpSP3s7Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29208.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30523 - 30523 - - Darrell Daniels - Darrell - Daniels - Darrell - Daniels - - nfl.p.30523 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 87 - TE - - https://s.yimg.com/iu/api/res/1.2/oNTm9dQkVKSdGsfauPdmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30523.png - small - - https://s.yimg.com/iu/api/res/1.2/oNTm9dQkVKSdGsfauPdmwQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/30523.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27821 - 27821 - - Kapri Bibbs - Kapri - Bibbs - Kapri - Bibbs - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27821 - nfl.t.28 - Washington Redskins - Was - - 4 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/9YzpYysv7Eja2rF_lJXcMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27821.png - small - - https://s.yimg.com/iu/api/res/1.2/9YzpYysv7Eja2rF_lJXcMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27821.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30661 - 30661 - - Jacob Hollister - Jacob - Hollister - Jacob - Hollister - - Q - Questionable - nfl.p.30661 - nfl.t.17 - New England Patriots - NE - - 11 - - 47 - TE - - https://s.yimg.com/iu/api/res/1.2/F5ux6qy1hQ1DHw36OBfCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30661.png - small - - https://s.yimg.com/iu/api/res/1.2/F5ux6qy1hQ1DHw36OBfCAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30661.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30230 - 30230 - - Josh Reynolds - Josh - Reynolds - Josh - Reynolds - - Q - Questionable - nfl.p.30230 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/z3AoWDhVtf_UDZZ0yKnNPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30230.png - small - - https://s.yimg.com/iu/api/res/1.2/z3AoWDhVtf_UDZZ0yKnNPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30230.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29906 - 29906 - - Elijhaa Penny - Elijhaa - Penny - Elijhaa - Penny - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29906 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/cLlvG50lg2NBf.a1RH9BnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29906.png - small - - https://s.yimg.com/iu/api/res/1.2/cLlvG50lg2NBf.a1RH9BnQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29906.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27213 - 27213 - - MarQueis Gray - MarQueis - Gray - MarQueis - Gray - - nfl.p.27213 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 48 - TE - - https://s.yimg.com/iu/api/res/1.2/i1KocxH960qwWqHHS0Vz7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27213.png - small - - https://s.yimg.com/iu/api/res/1.2/i1KocxH960qwWqHHS0Vz7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27213.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25723 - 25723 - - Michael Floyd - Michael - Floyd - Michael - Floyd - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25723 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/qGJGOZdn_Jim35IIEthl7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25723.png - small - - https://s.yimg.com/iu/api/res/1.2/qGJGOZdn_Jim35IIEthl7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/25723.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29420 - 29420 - - Jakeem Grant - Jakeem - Grant - Jakeem - Grant - - Q - Questionable - nfl.p.29420 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/bXlNw_UBUpnzhHWymCWTaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29420.png - small - - https://s.yimg.com/iu/api/res/1.2/bXlNw_UBUpnzhHWymCWTaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29420.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.29320 - 29320 - - Leonte Carroo - Leonte - Carroo - Leonte - Carroo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29320 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/hdhfIT3RTneT5qYjhK71BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29320.png - small - - https://s.yimg.com/iu/api/res/1.2/hdhfIT3RTneT5qYjhK71BQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29320.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29518 - 29518 - - Kenneth Farrow - Kenneth - Farrow - Kenneth - Farrow - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29518 - nfl.t.17 - New England Patriots - NE - - 11 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/L_MlxVOche10psCoOs1a.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/29518.png - small - - https://s.yimg.com/iu/api/res/1.2/L_MlxVOche10psCoOs1a.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09172017/29518.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30337 - 30337 - - Zane Gonzalez - Zane - Gonzalez - Zane - Gonzalez - - nfl.p.30337 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 2 - K - - https://s.yimg.com/iu/api/res/1.2/l8Yys4C3G3FNygqTZZMkqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30337.png - small - - https://s.yimg.com/iu/api/res/1.2/l8Yys4C3G3FNygqTZZMkqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30337.png - 0 - K - - K - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28727 - 28727 - - Jordan Taylor - Jordan - Taylor - Jordan - Taylor - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.28727 - nfl.t.7 - Denver Broncos - Den - - 10 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/fRXPK6IGVajzyRr18Xx7YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28727.png - small - - https://s.yimg.com/iu/api/res/1.2/fRXPK6IGVajzyRr18Xx7YA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28727.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29360 - 29360 - - Demarcus Robinson - Demarcus - Robinson - Demarcus - Robinson - - nfl.p.29360 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/HLp_ktZ1oEzQBjoyErElOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29360.png - small - - https://s.yimg.com/iu/api/res/1.2/HLp_ktZ1oEzQBjoyErElOA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29360.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28475 - 28475 - - Sammie Coates - Sammie - Coates - Sammie - Coates - - nfl.p.28475 - nfl.t.34 - Houston Texans - Hou - - 10 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/BvwjBXtIjsDdEVNd78ZyAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28475.png - small - - https://s.yimg.com/iu/api/res/1.2/BvwjBXtIjsDdEVNd78ZyAQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28475.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28060 - 28060 - - Freddie Martino - Freddie - Martino - Freddie - Martino - - nfl.p.28060 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/_ueddcYAltnFjXQ4aABSOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28060.png - small - - https://s.yimg.com/iu/api/res/1.2/_ueddcYAltnFjXQ4aABSOw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28060.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28990 - 28990 - - Malcolm Brown - Malcolm - Brown - Malcolm - Brown - - nfl.p.28990 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/Z49DKz9ZFlc4YSIURejBtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28990.png - small - - https://s.yimg.com/iu/api/res/1.2/Z49DKz9ZFlc4YSIURejBtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28990.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9043 - 9043 - - Mike Tolbert - Mike - Tolbert - Mike - Tolbert - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9043 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 35 - RB - - https://s.yimg.com/iu/api/res/1.2/k0zWH4wGCK9AaNc0lCy7eA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9043.png - small - - https://s.yimg.com/iu/api/res/1.2/k0zWH4wGCK9AaNc0lCy7eA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9043.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29152 - 29152 - - Kasen Williams - Kasen - Williams - Kasen - Williams - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29152 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 6 - WR - - https://s.yimg.com/iu/api/res/1.2/0KTie6XUQZO882oR.m5VlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29152.png - small - - https://s.yimg.com/iu/api/res/1.2/0KTie6XUQZO882oR.m5VlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29152.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27652 - 27652 - - De'Anthony Thomas - De'Anthony - Thomas - De'Anthony - Thomas - - nfl.p.27652 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/mZcriI9n07yaaCrZaunLqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27652.png - small - - https://s.yimg.com/iu/api/res/1.2/mZcriI9n07yaaCrZaunLqQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27652.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30241 - 30241 - - Josh Malone - Josh - Malone - Josh - Malone - - nfl.p.30241 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/r3xtacaRYLMQ6rMGcC7Mxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30241.png - small - - https://s.yimg.com/iu/api/res/1.2/r3xtacaRYLMQ6rMGcC7Mxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30241.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26064 - 26064 - - Lance Dunbar - Lance - Dunbar - Lance - Dunbar - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26064 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 25 - RB - - https://s.yimg.com/iu/api/res/1.2/z_Sb07depTgUPjEjrqr9aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26064.png - small - - https://s.yimg.com/iu/api/res/1.2/z_Sb07depTgUPjEjrqr9aQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09202017/26064.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28021 - 28021 - - Ryan Hewitt - Ryan - Hewitt - Ryan - Hewitt - - nfl.p.28021 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 45 - TE - - https://s.yimg.com/iu/api/res/1.2/rdY0H2wDbZ2S3Nqxjlilfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28021.png - small - - https://s.yimg.com/iu/api/res/1.2/rdY0H2wDbZ2S3Nqxjlilfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28021.png - 0 - O - - TE - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30577 - 30577 - - Cethan Carter - Cethan - Carter - Cethan - Carter - - IR - Injured Reserve - shoulder - nfl.p.30577 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 82 - TE - - https://s.yimg.com/iu/api/res/1.2/zkwFtld4HwpLtZnzwLArSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30577.png - small - - https://s.yimg.com/iu/api/res/1.2/zkwFtld4HwpLtZnzwLArSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30577.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30211 - 30211 - - Chad Williams - Chad - Williams - Chad - Williams - - nfl.p.30211 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/NBdyEgzbLis53S4XVT7DvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30211.png - small - - https://s.yimg.com/iu/api/res/1.2/NBdyEgzbLis53S4XVT7DvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30211.png - 0 - O - - WR - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29293 - 29293 - - Roberto Aguayo - Roberto - Aguayo - Roberto - Aguayo - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29293 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 4 - K - - https://s.yimg.com/iu/api/res/1.2/knW_qTXoQLOpjph3nthQ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29293.png - small - - https://s.yimg.com/iu/api/res/1.2/knW_qTXoQLOpjph3nthQ3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29293.png - 0 - K - - K - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29440 - 29440 - - Michael Thomas - Michael - Thomas - Michael - Thomas - - nfl.p.29440 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 88 - WR - - https://s.yimg.com/iu/api/res/1.2/veXnMKGj8p6kRtwoLAitSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29440.png - small - - https://s.yimg.com/iu/api/res/1.2/veXnMKGj8p6kRtwoLAitSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29440.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30061 - 30061 - - Troymaine Pope - Troymaine - Pope - Troymaine - Pope - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30061 - nfl.t.34 - Houston Texans - Hou - - 10 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/sERvsK4r1pFRnVlYy77yCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30061.png - small - - https://s.yimg.com/iu/api/res/1.2/sERvsK4r1pFRnVlYy77yCA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30061.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28185 - 28185 - - George Atkinson III - George - Atkinson III - George - Atkinson III - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28185 - nfl.t.20 - New York Jets - NYJ - - 11 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/5lORoA94vb0tR79yuLNZ5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28185.png - small - - https://s.yimg.com/iu/api/res/1.2/5lORoA94vb0tR79yuLNZ5w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/28185.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30254 - 30254 - - Chad Hansen - Chad - Hansen - Chad - Hansen - - nfl.p.30254 - nfl.t.17 - New England Patriots - NE - - 11 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/qWjg4JKG.SVQLpyOxDuLzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30254.png - small - - https://s.yimg.com/iu/api/res/1.2/qWjg4JKG.SVQLpyOxDuLzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30254.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28572 - 28572 - - Kaelin Clay - Kaelin - Clay - Kaelin - Clay - - nfl.p.28572 - nfl.t.19 - New York Giants - NYG - - 9 - - 15 - WR - - https://s.yimg.com/iu/api/res/1.2/6zyuYAnRm.NRBMTEApBrxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28572.png - small - - https://s.yimg.com/iu/api/res/1.2/6zyuYAnRm.NRBMTEApBrxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28572.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28414 - 28414 - - Breshad Perriman - Breshad - Perriman - Breshad - Perriman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28414 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/2QDoqWh7TwmQ8AdGF_1zAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28414.png - small - - https://s.yimg.com/iu/api/res/1.2/2QDoqWh7TwmQ8AdGF_1zAA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28414.png - 0 - O - - WR - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26753 - 26753 - - Kyle Juszczyk - Kyle - Juszczyk - Kyle - Juszczyk - - nfl.p.26753 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/41ClwzwwAZl2PG2qYEcryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26753.png - small - - https://s.yimg.com/iu/api/res/1.2/41ClwzwwAZl2PG2qYEcryA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/26753.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29471 - 29471 - - Daniel Lasco II - Daniel - Lasco II - Daniel - Lasco II - - PUP-R - Physically Unable to Perform (Regular-season) - nfl.p.29471 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/0_VxwC._6FoPzRcs7xc_oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/29471.png - small - - https://s.yimg.com/iu/api/res/1.2/0_VxwC._6FoPzRcs7xc_oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09082017/29471.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28283 - 28283 - - Fitzgerald Toussaint - Fitzgerald - Toussaint - Fitzgerald - Toussaint - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28283 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/Qy.UYWuGD2hfgturEKSd9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28283.png - small - - https://s.yimg.com/iu/api/res/1.2/Qy.UYWuGD2hfgturEKSd9Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28283.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29825 - 29825 - - Tanner McEvoy - Tanner - McEvoy - Tanner - McEvoy - - nfl.p.29825 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/O1JiPEfMDyyAMDETcukg_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29825.png - small - - https://s.yimg.com/iu/api/res/1.2/O1JiPEfMDyyAMDETcukg_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29825.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26719 - 26719 - - Knile Davis - Knile - Davis - Knile - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26719 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 43 - RB - - https://s.yimg.com/iu/api/res/1.2/zi24f_3ujvYlUhUtLTBY2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26719.png - small - - https://s.yimg.com/iu/api/res/1.2/zi24f_3ujvYlUhUtLTBY2A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/26719.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28583 - 28583 - - Malcolm Johnson - Malcolm - Johnson - Malcolm - Johnson - - IR - Injured Reserve - undisclosed - nfl.p.28583 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/dLLyHkUMYx3nFZaa.Wj8kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28583.png - small - - https://s.yimg.com/iu/api/res/1.2/dLLyHkUMYx3nFZaa.Wj8kw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28583.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27167 - 27167 - - Benny Cunningham - Benny - Cunningham - Benny - Cunningham - - nfl.p.27167 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/Y6X2VA98d7af.r2Io7hziw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27167.png - small - - https://s.yimg.com/iu/api/res/1.2/Y6X2VA98d7af.r2Io7hziw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27167.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28562 - 28562 - - Cameron Artis-Payne - Cameron - Artis-Payne - Cameron - Artis-Payne - - nfl.p.28562 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/UPx5ANu6OhS_OPFN33.H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28562.png - small - - https://s.yimg.com/iu/api/res/1.2/UPx5ANu6OhS_OPFN33.H5g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28562.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9449 - 9449 - - Cedric Peerman - Cedric - Peerman - Cedric - Peerman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9449 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/nGKKC3PExFpnXHmv.b7rjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/9449.png - small - - https://s.yimg.com/iu/api/res/1.2/nGKKC3PExFpnXHmv.b7rjQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/9449.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29913 - 29913 - - Ben Braunecker - Ben - Braunecker - Ben - Braunecker - - nfl.p.29913 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 84 - TE - - https://s.yimg.com/iu/api/res/1.2/_9c4v0Q27mT_07e.1gvbLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29913.png - small - - https://s.yimg.com/iu/api/res/1.2/_9c4v0Q27mT_07e.1gvbLA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29913.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28496 - 28496 - - Jalston Fowler - Jalston - Fowler - Jalston - Fowler - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28496 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 43 - RB - - https://s.yimg.com/iu/api/res/1.2/imhttFm77PLVowOQFO_j_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28496.png - small - - https://s.yimg.com/iu/api/res/1.2/imhttFm77PLVowOQFO_j_w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/28496.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29872 - 29872 - - D.J. Foster - D.J. - Foster - D.J. - Foster - - IR - Injured Reserve - knee - nfl.p.29872 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 37 - RB - - https://s.yimg.com/iu/api/res/1.2/4c1A6QI0_rBQVce2TVE8Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29872.png - small - - https://s.yimg.com/iu/api/res/1.2/4c1A6QI0_rBQVce2TVE8Wg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29872.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29257 - 29257 - - Laquon Treadwell - Laquon - Treadwell - Laquon - Treadwell - - nfl.p.29257 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/Wih.zUJAlPp.whMyTnujmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29257.png - small - - https://s.yimg.com/iu/api/res/1.2/Wih.zUJAlPp.whMyTnujmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29257.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.25379 - 25379 - - Kamar Aiken - Kamar - Aiken - Kamar - Aiken - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25379 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 81 - WR - - https://s.yimg.com/iu/api/res/1.2/G31bB44eKfTXMsyPHGF_Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25379.png - small - - https://s.yimg.com/iu/api/res/1.2/G31bB44eKfTXMsyPHGF_Fw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25379.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29703 - 29703 - - Alex Erickson - Alex - Erickson - Alex - Erickson - - nfl.p.29703 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 12 - WR - - https://s.yimg.com/iu/api/res/1.2/Ycy3QM9HWRYJxT_20Q8HAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29703.png - small - - https://s.yimg.com/iu/api/res/1.2/Ycy3QM9HWRYJxT_20Q8HAw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29703.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28887 - 28887 - - Zach Zenner - Zach - Zenner - Zach - Zenner - - IR - Injured Reserve - undisclosed - nfl.p.28887 - nfl.t.8 - Detroit Lions - Det - - 6 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/4LSaSiUgu7LNnFJo5eqE3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28887.png - small - - https://s.yimg.com/iu/api/res/1.2/4LSaSiUgu7LNnFJo5eqE3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/28887.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30192 - 30192 - - ArDarius Stewart - ArDarius - Stewart - ArDarius - Stewart - - SUSP - Suspended - nfl.p.30192 - nfl.t.20 - New York Jets - NYJ - - 11 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/UU2gwtrHIGr.7IPjqZLuLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30192.png - small - - https://s.yimg.com/iu/api/res/1.2/UU2gwtrHIGr.7IPjqZLuLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/30192.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30219 - 30219 - - Amara Darboh - Amara - Darboh - Amara - Darboh - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30219 - nfl.t.17 - New England Patriots - NE - - 11 - - 82 - WR - - https://s.yimg.com/iu/api/res/1.2/G2pEqvLL1qbiTT3FTAg9lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30219.png - small - - https://s.yimg.com/iu/api/res/1.2/G2pEqvLL1qbiTT3FTAg9lQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/30219.png - 0 - O - - WR - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30720 - 30720 - - Tanner Gentry - Tanner - Gentry - Tanner - Gentry - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30720 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/o9ZlJ5cpu.cN62KYqf0zIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30720.png - small - - https://s.yimg.com/iu/api/res/1.2/o9ZlJ5cpu.cN62KYqf0zIA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30720.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29383 - 29383 - - Paul Perkins - Paul - Perkins - Paul - Perkins - - O - Out - nfl.p.29383 - nfl.t.19 - New York Giants - NYG - - 9 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/8eL3OO5WSyikKgP2xS97dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29383.png - small - - https://s.yimg.com/iu/api/res/1.2/8eL3OO5WSyikKgP2xS97dg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29383.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8497 - 8497 - - Clark Harris - Clark - Harris - Clark - Harris - - nfl.p.8497 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 46 - TE - - https://s.yimg.com/iu/api/res/1.2/037vmO3opGUQrRxFkajAlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8497.png - small - - https://s.yimg.com/iu/api/res/1.2/037vmO3opGUQrRxFkajAlA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/8497.png - 0 - O - - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26535 - 26535 - - Jamize Olawale - Jamize - Olawale - Jamize - Olawale - - nfl.p.26535 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 49 - RB - - https://s.yimg.com/iu/api/res/1.2/Zuv8cF16INaysOy5OhrHPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26535.png - small - - https://s.yimg.com/iu/api/res/1.2/Zuv8cF16INaysOy5OhrHPA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/26535.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29775 - 29775 - - Bryce Treggs - Bryce - Treggs - Bryce - Treggs - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29775 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/A3360y6IDkM43ULIIZT6tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29775.png - small - - https://s.yimg.com/iu/api/res/1.2/A3360y6IDkM43ULIIZT6tg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29775.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26702 - 26702 - - Markus Wheaton - Markus - Wheaton - Markus - Wheaton - - nfl.p.26702 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/nUmOy9Cn4Gv29YY4.XzSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26702.png - small - - https://s.yimg.com/iu/api/res/1.2/nUmOy9Cn4Gv29YY4.XzSRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/26702.png - 0 - O - - WR - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29854 - 29854 - - Tommylee Lewis - Tommylee - Lewis - Tommylee - Lewis - - nfl.p.29854 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/gGZ9uk2wFAHgyO2NEHEfzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29854.png - small - - https://s.yimg.com/iu/api/res/1.2/gGZ9uk2wFAHgyO2NEHEfzA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08252018/29854.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30861 - 30861 - - Chris Thompson - Chris - Thompson - Chris - Thompson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30861 - nfl.t.34 - Houston Texans - Hou - - 10 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/trsKTQsvmzFb4R7VoOKP7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30861.png - small - - https://s.yimg.com/iu/api/res/1.2/trsKTQsvmzFb4R7VoOKP7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30861.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26838 - 26838 - - Tommy Bohanon - Tommy - Bohanon - Tommy - Bohanon - - nfl.p.26838 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/lJnVKjkJy_gV7W89DrWIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26838.png - small - - https://s.yimg.com/iu/api/res/1.2/lJnVKjkJy_gV7W89DrWIxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26838.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27369 - 27369 - - Brett Maher - Brett - Maher - Brett - Maher - - nfl.p.27369 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 2 - K - - https://s.yimg.com/iu/api/res/1.2/BwOW9TRNIJKjOBvrOld58g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27369.png - small - - https://s.yimg.com/iu/api/res/1.2/BwOW9TRNIJKjOBvrOld58g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27369.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31482 - 31482 - - Eddy Pineiro - Eddy - Pineiro - Eddy - Pineiro - - IR - Injured Reserve - undisclosed - nfl.p.31482 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 9 - K - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - K - - K - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31606 - 31606 - - Tyler Davis - Tyler - Davis - Tyler - Davis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31606 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 9 - K - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31361 - 31361 - - David Marvin - David - Marvin - David - Marvin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31361 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 1 - K - - https://s.yimg.com/iu/api/res/1.2/ro9s7msPRY5kRiEKGDy4aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31361.png - small - - https://s.yimg.com/iu/api/res/1.2/ro9s7msPRY5kRiEKGDy4aw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31361.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31265 - 31265 - - Trevor Moore - Trevor - Moore - Trevor - Moore - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31265 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 5 - K - - https://s.yimg.com/iu/api/res/1.2/UUGPF1K4L4Ug9ceTKvIokA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31265.png - small - - https://s.yimg.com/iu/api/res/1.2/UUGPF1K4L4Ug9ceTKvIokA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31265.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31366 - 31366 - - Michael Badgley - Michael - Badgley - Michael - Badgley - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31366 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 1 - K - - https://s.yimg.com/iu/api/res/1.2/jiET0oTBW3fK0ToOHesKLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31366.png - small - - https://s.yimg.com/iu/api/res/1.2/jiET0oTBW3fK0ToOHesKLQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/31366.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31310 - 31310 - - Matt McCrane - Matt - McCrane - Matt - McCrane - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31310 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 1 - K - - https://s.yimg.com/iu/api/res/1.2/WCiF3cgePJkqPXpXpbFmgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31310.png - small - - https://s.yimg.com/iu/api/res/1.2/WCiF3cgePJkqPXpXpbFmgg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31310.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29834 - 29834 - - Marshall Koehn - Marshall - Koehn - Marshall - Koehn - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29834 - nfl.t.19 - New York Giants - NYG - - 9 - - 8 - K - - https://s.yimg.com/iu/api/res/1.2/EXaNFleyJRoCnuf8XGD6hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29834.png - small - - https://s.yimg.com/iu/api/res/1.2/EXaNFleyJRoCnuf8XGD6hQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29834.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31538 - 31538 - - Greg Joseph - Greg - Joseph - Greg - Joseph - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31538 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 5 - K - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29915 - 29915 - - Jonathan Brown - Jonathan - Brown - Jonathan - Brown - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29915 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 3 - K - - https://s.yimg.com/iu/api/res/1.2/gq6Vt7sNHHdvB3DyGkw7ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29915.png - small - - https://s.yimg.com/iu/api/res/1.2/gq6Vt7sNHHdvB3DyGkw7ww--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29915.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31199 - 31199 - - Jason Sanders - Jason - Sanders - Jason - Sanders - - nfl.p.31199 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 7 - K - - https://s.yimg.com/iu/api/res/1.2/dCtblAjcHBiItC3wBxyEaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31199.png - small - - https://s.yimg.com/iu/api/res/1.2/dCtblAjcHBiItC3wBxyEaw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31199.png - 0 - K - - K - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29712 - 29712 - - Taylor Bertolet - Taylor - Bertolet - Taylor - Bertolet - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29712 - nfl.t.20 - New York Jets - NYJ - - 11 - - 6 - K - - https://s.yimg.com/iu/api/res/1.2/nmmEoYnWflevlM_qV2ky5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29712.png - small - - https://s.yimg.com/iu/api/res/1.2/nmmEoYnWflevlM_qV2ky5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29712.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29793 - 29793 - - Ross Martin - Ross - Martin - Ross - Martin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29793 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 7 - K - - https://s.yimg.com/iu/api/res/1.2/Ucg5hehVJIKHFk8ZJkkZWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29793.png - small - - https://s.yimg.com/iu/api/res/1.2/Ucg5hehVJIKHFk8ZJkkZWA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29793.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30038 - 30038 - - Sam Ficken - Sam - Ficken - Sam - Ficken - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30038 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 5 - K - - https://s.yimg.com/iu/api/res/1.2/A8Qiab7o88uKcy2Qaee98w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30038.png - small - - https://s.yimg.com/iu/api/res/1.2/A8Qiab7o88uKcy2Qaee98w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30038.png - 0 - K - - K - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9347 - 9347 - - Brandon Tate - Brandon - Tate - Brandon - Tate - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9347 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 87 - WR - - https://s.yimg.com/iu/api/res/1.2/q9ImKnfWIrOECEvF0B5AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9347.png - small - - https://s.yimg.com/iu/api/res/1.2/q9ImKnfWIrOECEvF0B5AZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/9347.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30269 - 30269 - - Brian Hill - Brian - Hill - Brian - Hill - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30269 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/CvUtZqHYwBSQDNC0CEWBiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30269.png - small - - https://s.yimg.com/iu/api/res/1.2/CvUtZqHYwBSQDNC0CEWBiQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30269.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30246 - 30246 - - Ryan Switzer - Ryan - Switzer - Ryan - Switzer - - nfl.p.30246 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/04eME3VfVmSCWM0vQyX6hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30246.png - small - - https://s.yimg.com/iu/api/res/1.2/04eME3VfVmSCWM0vQyX6hg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30246.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29680 - 29680 - - Byron Marshall - Byron - Marshall - Byron - Marshall - - Q - Questionable - nfl.p.29680 - nfl.t.28 - Washington Redskins - Was - - 4 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/q2QjfAwrMHSouiqxGmUcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29680.png - small - - https://s.yimg.com/iu/api/res/1.2/q2QjfAwrMHSouiqxGmUcrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29680.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30531 - 30531 - - JoJo Natson Jr. - JoJo - Natson Jr. - JoJo - Natson Jr. - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30531 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 19 - WR - - https://s.yimg.com/iu/api/res/1.2/nHpfez5X_dbAMLGCtfghhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30531.png - small - - https://s.yimg.com/iu/api/res/1.2/nHpfez5X_dbAMLGCtfghhA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30531.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30352 - 30352 - - Noah Brown - Noah - Brown - Noah - Brown - - IR - Injured Reserve - hamstring - nfl.p.30352 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 85 - WR - - https://s.yimg.com/iu/api/res/1.2/wXOQq5sawcpqV0d3ewvo4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30352.png - small - - https://s.yimg.com/iu/api/res/1.2/wXOQq5sawcpqV0d3ewvo4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/30352.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29678 - 29678 - - Marcus Johnson - Marcus - Johnson - Marcus - Johnson - - nfl.p.29678 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/ToDETSh_H0fVSdEPhaLRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29678.png - small - - https://s.yimg.com/iu/api/res/1.2/ToDETSh_H0fVSdEPhaLRuQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29678.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29351 - 29351 - - Pharoh Cooper - Pharoh - Cooper - Pharoh - Cooper - - nfl.p.29351 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/WF3MDmzrEaU2MDwY3j7mQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29351.png - small - - https://s.yimg.com/iu/api/res/1.2/WF3MDmzrEaU2MDwY3j7mQw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29351.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.25970 - 25970 - - Brittan Golden - Brittan - Golden - Brittan - Golden - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25970 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 10 - WR - - https://s.yimg.com/iu/api/res/1.2/EP6iaSoztJBPj7NupqybTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25970.png - small - - https://s.yimg.com/iu/api/res/1.2/EP6iaSoztJBPj7NupqybTA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/25970.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30252 - 30252 - - Jehu Chesson - Jehu - Chesson - Jehu - Chesson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30252 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/XLRspgy85TEmpLJy_HFVrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30252.png - small - - https://s.yimg.com/iu/api/res/1.2/XLRspgy85TEmpLJy_HFVrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30252.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28071 - 28071 - - Bernard Reedy - Bernard - Reedy - Bernard - Reedy - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28071 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/xSnOU8gcMYfIfOxencOfwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28071.png - small - - https://s.yimg.com/iu/api/res/1.2/xSnOU8gcMYfIfOxencOfwA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/28071.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30850 - 30850 - - Trey Edmunds - Trey - Edmunds - Trey - Edmunds - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30850 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 33 - RB - - https://s.yimg.com/iu/api/res/1.2/8ImP0oah4KyHOFzljslpCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30850.png - small - - https://s.yimg.com/iu/api/res/1.2/8ImP0oah4KyHOFzljslpCg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30850.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28272 - 28272 - - Branden Oliver - Branden - Oliver - Branden - Oliver - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28272 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/aCJGDiaP4M9UClELe3Gxpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/28272.png - small - - https://s.yimg.com/iu/api/res/1.2/aCJGDiaP4M9UClELe3Gxpw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/28272.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24923 - 24923 - - Anthony Sherman - Anthony - Sherman - Anthony - Sherman - - nfl.p.24923 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/qmIuIr17M_y9HdXGN2A0ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24923.png - small - - https://s.yimg.com/iu/api/res/1.2/qmIuIr17M_y9HdXGN2A0ew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/24923.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29821 - 29821 - - Tre Madden - Tre - Madden - Tre - Madden - - nfl.p.29821 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/EXVFGf_xmNQcszshtviJQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29821.png - small - - https://s.yimg.com/iu/api/res/1.2/EXVFGf_xmNQcszshtviJQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29821.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29397 - 29397 - - Trevor Davis - Trevor - Davis - Trevor - Davis - - nfl.p.29397 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/7uYN6ZzKOskUxJtJTgNV_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29397.png - small - - https://s.yimg.com/iu/api/res/1.2/7uYN6ZzKOskUxJtJTgNV_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29397.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.28535 - 28535 - - Brett Hundley - Brett - Hundley - Brett - Hundley - - nfl.p.28535 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/jskwWIFRz_.ZKK2KHGzxYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28535.png - small - - https://s.yimg.com/iu/api/res/1.2/jskwWIFRz_.ZKK2KHGzxYg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28535.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30739 - 30739 - - Shane Smith - Shane - Smith - Shane - Smith - - nfl.p.30739 - nfl.t.19 - New York Giants - NYG - - 9 - - 43 - RB,TE - - https://s.yimg.com/iu/api/res/1.2/hUH_vbZoDT6G2WuJKhSo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30739.png - small - - https://s.yimg.com/iu/api/res/1.2/hUH_vbZoDT6G2WuJKhSo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30739.png - 0 - O - - RB - TE - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29433 - 29433 - - Cody Core - Cody - Core - Cody - Core - - Q - Questionable - nfl.p.29433 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/WVM6rWAT_oG6T59yC4jllQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29433.png - small - - https://s.yimg.com/iu/api/res/1.2/WVM6rWAT_oG6T59yC4jllQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29433.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29470 - 29470 - - Dwayne Washington - Dwayne - Washington - Dwayne - Washington - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29470 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 36 - RB - - https://s.yimg.com/iu/api/res/1.2/hbFHWf83IYAn9OrDSxGR8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29470.png - small - - https://s.yimg.com/iu/api/res/1.2/hbFHWf83IYAn9OrDSxGR8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29470.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30550 - 30550 - - Victor Bolden Jr. - Victor - Bolden Jr. - Victor - Bolden Jr. - - SUSP - Suspended - nfl.p.30550 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/VwwC8JWDbBAwrZqPwu_Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30550.png - small - - https://s.yimg.com/iu/api/res/1.2/VwwC8JWDbBAwrZqPwu_Nxg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30550.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24014 - 24014 - - Arrelious Benn - Arrelious - Benn - Arrelious - Benn - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24014 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/39ksBKwiEdN7Q5vdC.ypxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/24014.png - small - - https://s.yimg.com/iu/api/res/1.2/39ksBKwiEdN7Q5vdC.ypxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09132017/24014.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27764 - 27764 - - Jeff Janis - Jeff - Janis - Jeff - Janis - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27764 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 13 - WR - - https://s.yimg.com/iu/api/res/1.2/1UvRAsUA8D4fKFTdL7dlgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27764.png - small - - https://s.yimg.com/iu/api/res/1.2/1UvRAsUA8D4fKFTdL7dlgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27764.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26805 - 26805 - - Kenjon Barner - Kenjon - Barner - Kenjon - Barner - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26805 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/495djpUkEb7wL2wonJsPjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26805.png - small - - https://s.yimg.com/iu/api/res/1.2/495djpUkEb7wL2wonJsPjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26805.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26596 - 26596 - - Fozzy Whittaker - Fozzy - Whittaker - Fozzy - Whittaker - - IR - Injured Reserve - torn right ACL - nfl.p.26596 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 43 - RB - - https://s.yimg.com/iu/api/res/1.2/fu_ifFJoR.vPPaaj0_aROQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26596.png - small - - https://s.yimg.com/iu/api/res/1.2/fu_ifFJoR.vPPaaj0_aROQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/26596.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28740 - 28740 - - Quan Bray - Quan - Bray - Quan - Bray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28740 - nfl.t.34 - Houston Texans - Hou - - 10 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/tlcbUd_O_dTE1LJv.0QRSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28740.png - small - - https://s.yimg.com/iu/api/res/1.2/tlcbUd_O_dTE1LJv.0QRSQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28740.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30285 - 30285 - - Isaiah McKenzie - Isaiah - McKenzie - Isaiah - McKenzie - - nfl.p.30285 - nfl.t.7 - Denver Broncos - Den - - 10 - - 16 - WR - - https://s.yimg.com/iu/api/res/1.2/uLkKcRNpJ.Q5Of9OsFlr3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30285.png - small - - https://s.yimg.com/iu/api/res/1.2/uLkKcRNpJ.Q5Of9OsFlr3Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30285.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24063 - 24063 - - Andre Roberts - Andre - Roberts - Andre - Roberts - - nfl.p.24063 - nfl.t.20 - New York Jets - NYJ - - 11 - - 3 - WR - - https://s.yimg.com/iu/api/res/1.2/SvAx3XpVZNjLTOJslW.n5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24063.png - small - - https://s.yimg.com/iu/api/res/1.2/SvAx3XpVZNjLTOJslW.n5Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24063.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29951 - 29951 - - C.J. Ham - C.J. - Ham - C.J. - Ham - - nfl.p.29951 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 30 - RB - - https://s.yimg.com/iu/api/res/1.2/OI6xb0T27TqFiDH083wW8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29951.png - small - - https://s.yimg.com/iu/api/res/1.2/OI6xb0T27TqFiDH083wW8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29951.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8297 - 8297 - - Drew Stanton - Drew - Stanton - Drew - Stanton - - nfl.p.8297 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/FqMSV8gDmaPBjWSGK4pT4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8297.png - small - - https://s.yimg.com/iu/api/res/1.2/FqMSV8gDmaPBjWSGK4pT4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/8297.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29396 - 29396 - - Kevin Hogan - Kevin - Hogan - Kevin - Hogan - - nfl.p.29396 - nfl.t.7 - Denver Broncos - Den - - 10 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/gAWSWZbH.5Pdp7nBg8c1NQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29396.png - small - - https://s.yimg.com/iu/api/res/1.2/gAWSWZbH.5Pdp7nBg8c1NQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29396.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24963 - 24963 - - Dwayne Harris - Dwayne - Harris - Dwayne - Harris - - nfl.p.24963 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 17 - WR - - https://s.yimg.com/iu/api/res/1.2/tTv4LUn1cA0WpRuw0shc.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24963.png - small - - https://s.yimg.com/iu/api/res/1.2/tTv4LUn1cA0WpRuw0shc.A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/24963.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26696 - 26696 - - Mike Glennon - Mike - Glennon - Mike - Glennon - - nfl.p.26696 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/MK.9gpsQAsOac89crUVnbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26696.png - small - - https://s.yimg.com/iu/api/res/1.2/MK.9gpsQAsOac89crUVnbA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26696.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28594 - 28594 - - Aaron Ripkowski - Aaron - Ripkowski - Aaron - Ripkowski - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28594 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/_zaNmGXfEKZcb4mx7.aj_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28594.png - small - - https://s.yimg.com/iu/api/res/1.2/_zaNmGXfEKZcb4mx7.aj_Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28594.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8609 - 8609 - - Eric Weems - Eric - Weems - Eric - Weems - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8609 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 14 - WR - - https://s.yimg.com/iu/api/res/1.2/v9m2bp8t9GiTWhHBVTxzmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8609.png - small - - https://s.yimg.com/iu/api/res/1.2/v9m2bp8t9GiTWhHBVTxzmA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/8609.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29805 - 29805 - - Lawrence Thomas - Lawrence - Thomas - Lawrence - Thomas - - nfl.p.29805 - nfl.t.20 - New York Jets - NYJ - - 11 - - 44 - RB - - https://s.yimg.com/iu/api/res/1.2/ev8VxDLaQSLkmf1cqqYRjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29805.png - small - - https://s.yimg.com/iu/api/res/1.2/ev8VxDLaQSLkmf1cqqYRjA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29805.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8930 - 8930 - - Matthew Slater - Matthew - Slater - Matthew - Slater - - Q - Questionable - nfl.p.8930 - nfl.t.17 - New England Patriots - NE - - 11 - - 18 - WR - - https://s.yimg.com/iu/api/res/1.2/nlazJ.KVLJ_3RoaE0jlbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8930.png - small - - https://s.yimg.com/iu/api/res/1.2/nlazJ.KVLJ_3RoaE0jlbGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/8930.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28068 - 28068 - - Roosevelt Nix - Roosevelt - Nix - Roosevelt - Nix - - nfl.p.28068 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/ApDYXCZkZgqs90hdQCUWNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28068.png - small - - https://s.yimg.com/iu/api/res/1.2/ApDYXCZkZgqs90hdQCUWNQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28068.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29410 - 29410 - - Andy Janovich - Andy - Janovich - Andy - Janovich - - nfl.p.29410 - nfl.t.7 - Denver Broncos - Den - - 10 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/q8gKWHCoM8icqIb8gX9Drw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29410.png - small - - https://s.yimg.com/iu/api/res/1.2/q8gKWHCoM8icqIb8gX9Drw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29410.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27135 - 27135 - - Zach Line - Zach - Line - Zach - Line - - nfl.p.27135 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/mRGyQl8bSBtv6dkHQIHajA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27135.png - small - - https://s.yimg.com/iu/api/res/1.2/mRGyQl8bSBtv6dkHQIHajA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27135.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28223 - 28223 - - Senorise Perry - Senorise - Perry - Senorise - Perry - - nfl.p.28223 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/u9gprorfyYRRzjNUsq_6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28223.png - small - - https://s.yimg.com/iu/api/res/1.2/u9gprorfyYRRzjNUsq_6_g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28223.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29353 - 29353 - - Tyler Ervin - Tyler - Ervin - Tyler - Ervin - - nfl.p.29353 - nfl.t.34 - Houston Texans - Hou - - 10 - - 21 - RB - - https://s.yimg.com/iu/api/res/1.2/HWlakvoYfDx4G2.wSr9FlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29353.png - small - - https://s.yimg.com/iu/api/res/1.2/HWlakvoYfDx4G2.wSr9FlQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29353.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30365 - 30365 - - Matthew Dayes - Matthew - Dayes - Matthew - Dayes - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30365 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 27 - RB - - https://s.yimg.com/iu/api/res/1.2/0_zseACsfB.nsgxyn8Goow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30365.png - small - - https://s.yimg.com/iu/api/res/1.2/0_zseACsfB.nsgxyn8Goow--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30365.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27790 - 27790 - - David Fluellen - David - Fluellen - David - Fluellen - - nfl.p.27790 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/jsJvscyD1gxtbyoIOHuFnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27790.png - small - - https://s.yimg.com/iu/api/res/1.2/jsJvscyD1gxtbyoIOHuFnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/27790.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29631 - 29631 - - Kalif Raymond - Kalif - Raymond - Kalif - Raymond - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29631 - nfl.t.19 - New York Giants - NYG - - 9 - - 83 - WR - - https://s.yimg.com/iu/api/res/1.2/JEO1p2xEaXYAAVcUq47M9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29631.png - small - - https://s.yimg.com/iu/api/res/1.2/JEO1p2xEaXYAAVcUq47M9g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29631.png - 0 - O - - WR - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26299 - 26299 - - Derrick Coleman - Derrick - Coleman - Derrick - Coleman - - nfl.p.26299 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 32 - RB - - https://s.yimg.com/iu/api/res/1.2/RQ7Oki360uwSHTRRmeNyHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26299.png - small - - https://s.yimg.com/iu/api/res/1.2/RQ7Oki360uwSHTRRmeNyHQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26299.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28556 - 28556 - - Michael Burton - Michael - Burton - Michael - Burton - - nfl.p.28556 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/yCtWOrxfJamFTkcPppvCvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28556.png - small - - https://s.yimg.com/iu/api/res/1.2/yCtWOrxfJamFTkcPppvCvA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28556.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24939 - 24939 - - T.J. Yates - T.J. - Yates - T.J. - Yates - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24939 - nfl.t.34 - Houston Texans - Hou - - 10 - - 2 - QB - - https://s.yimg.com/iu/api/res/1.2/v2v8WVFriAIKtrCcRkae7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24939.png - small - - https://s.yimg.com/iu/api/res/1.2/v2v8WVFriAIKtrCcRkae7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/24939.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29178 - 29178 - - Terrell Watson - Terrell - Watson - Terrell - Watson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29178 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/30PDQCN2QsgAY8q6EN70JA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29178.png - small - - https://s.yimg.com/iu/api/res/1.2/30PDQCN2QsgAY8q6EN70JA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/29178.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28654 - 28654 - - Raheem Mostert - Raheem - Mostert - Raheem - Mostert - - nfl.p.28654 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 31 - RB - - https://s.yimg.com/iu/api/res/1.2/2mc8zfZAk10fu5IYBl1ILg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28654.png - small - - https://s.yimg.com/iu/api/res/1.2/2mc8zfZAk10fu5IYBl1ILg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/28654.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26389 - 26389 - - Brandon Bolden - Brandon - Bolden - Brandon - Bolden - - nfl.p.26389 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 38 - RB - - https://s.yimg.com/iu/api/res/1.2/JHOSfFYoObpgW3_fuVSsQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26389.png - small - - https://s.yimg.com/iu/api/res/1.2/JHOSfFYoObpgW3_fuVSsQQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26389.png - 0 - O - - RB - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28874 - 28874 - - Akeem Hunt - Akeem - Hunt - Akeem - Hunt - - NA - Inactive: Coach's Decision or Not on Roster - undisclosed - nfl.p.28874 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 31 - RB - - https://s.yimg.com/iu/api/res/1.2/QsMzEXwiD25mhorFmcvHLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28874.png - small - - https://s.yimg.com/iu/api/res/1.2/QsMzEXwiD25mhorFmcvHLg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/28874.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25712 - 25712 - - Robert Griffin III - Robert - Griffin III - Robert - Griffin III - - nfl.p.25712 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/47NtbvitvbFBMlzyS.sJgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25712.png - small - - https://s.yimg.com/iu/api/res/1.2/47NtbvitvbFBMlzyS.sJgQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25712.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29432 - 29432 - - Derek Watt - Derek - Watt - Derek - Watt - - nfl.p.29432 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 34 - RB - - https://s.yimg.com/iu/api/res/1.2/WhSItqza2GwQwcbhrufkkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29432.png - small - - https://s.yimg.com/iu/api/res/1.2/WhSItqza2GwQwcbhrufkkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29432.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29599 - 29599 - - Josh Ferguson - Josh - Ferguson - Josh - Ferguson - - IR - Injured Reserve - undisclosed - nfl.p.29599 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 39 - RB - - https://s.yimg.com/iu/api/res/1.2/ABZFJV0b0BRyRz94K4ApZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29599.png - small - - https://s.yimg.com/iu/api/res/1.2/ABZFJV0b0BRyRz94K4ApZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012018/29599.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27739 - 27739 - - Jay Prosch - Jay - Prosch - Jay - Prosch - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27739 - nfl.t.34 - Houston Texans - Hou - - 10 - - 45 - RB - - https://s.yimg.com/iu/api/res/1.2/.4MqtLGYM.1m9ERkt90mFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27739.png - small - - https://s.yimg.com/iu/api/res/1.2/.4MqtLGYM.1m9ERkt90mFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27739.png - 0 - O - - RB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25158 - 25158 - - Patrick DiMarco - Patrick - DiMarco - Patrick - DiMarco - - nfl.p.25158 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 42 - RB - - https://s.yimg.com/iu/api/res/1.2/pza5rMuAeJSQ51_jTE0m3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25158.png - small - - https://s.yimg.com/iu/api/res/1.2/pza5rMuAeJSQ51_jTE0m3A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/25158.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24760 - 24760 - - James Develin - James - Develin - James - Develin - - nfl.p.24760 - nfl.t.17 - New England Patriots - NE - - 11 - - 46 - RB - - https://s.yimg.com/iu/api/res/1.2/CdtFSWekjP4MgnIzMiVv8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24760.png - small - - https://s.yimg.com/iu/api/res/1.2/CdtFSWekjP4MgnIzMiVv8Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24760.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28141 - 28141 - - Keith Smith - Keith - Smith - Keith - Smith - - nfl.p.28141 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 41 - RB - - https://s.yimg.com/iu/api/res/1.2/PsHYEFJrKuO_l2hwPp9nVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28141.png - small - - https://s.yimg.com/iu/api/res/1.2/PsHYEFJrKuO_l2hwPp9nVw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28141.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26721 - 26721 - - Matt Barkley - Matt - Barkley - Matt - Barkley - - IR - Injured Reserve - knee - nfl.p.26721 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/Yw4hJyESGXbuW0yYZ1i11A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26721.png - small - - https://s.yimg.com/iu/api/res/1.2/Yw4hJyESGXbuW0yYZ1i11A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/26721.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29431 - 29431 - - Danny Vitale - Danny - Vitale - Danny - Vitale - - IR - Injured Reserve - undisclosed - nfl.p.29431 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 40 - RB - - https://s.yimg.com/iu/api/res/1.2/_iFd2BZkHJz42cTIVxgvzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29431.png - small - - https://s.yimg.com/iu/api/res/1.2/_iFd2BZkHJz42cTIVxgvzQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/29431.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24912 - 24912 - - Taiwan Jones - Taiwan - Jones - Taiwan - Jones - - nfl.p.24912 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 26 - RB - - https://s.yimg.com/iu/api/res/1.2/Qb7oHmtjAoi4pUCdphThvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24912.png - small - - https://s.yimg.com/iu/api/res/1.2/Qb7oHmtjAoi4pUCdphThvw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24912.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24970 - 24970 - - Jordan Todman - Jordan - Todman - Jordan - Todman - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24970 - nfl.t.34 - Houston Texans - Hou - - 10 - - 22 - RB - - https://s.yimg.com/iu/api/res/1.2/h8Sw5mRfYe05MsAPX9Iiqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24970.png - small - - https://s.yimg.com/iu/api/res/1.2/h8Sw5mRfYe05MsAPX9Iiqw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/24970.png - 0 - O - - RB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9547 - 9547 - - Brian Hoyer - Brian - Hoyer - Brian - Hoyer - - nfl.p.9547 - nfl.t.17 - New England Patriots - NE - - 11 - - 2 - QB - - https://s.yimg.com/iu/api/res/1.2/SFdTBUdRYBv5UAQo4xAcJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9547.png - small - - https://s.yimg.com/iu/api/res/1.2/SFdTBUdRYBv5UAQo4xAcJg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/9547.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29327 - 29327 - - Cody Kessler - Cody - Kessler - Cody - Kessler - - nfl.p.29327 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/8RSHixm.w1enn79K0u7Lbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29327.png - small - - https://s.yimg.com/iu/api/res/1.2/8RSHixm.w1enn79K0u7Lbg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/29327.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30614 - 30614 - - Taysom Hill - Taysom - Hill - Taysom - Hill - - nfl.p.30614 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/ABf8hjN3mSNXcm_Xa9L1Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30614.png - small - - https://s.yimg.com/iu/api/res/1.2/ABf8hjN3mSNXcm_Xa9L1Yg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30614.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.27692 - 27692 - - AJ McCarron - AJ - McCarron - AJ - McCarron - - nfl.p.27692 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 15 - QB - - https://s.yimg.com/iu/api/res/1.2/_BFqv32sOMm.b.UafvwoHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27692.png - small - - https://s.yimg.com/iu/api/res/1.2/_BFqv32sOMm.b.UafvwoHg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27692.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30977 - 30977 - - Josh Allen - Josh - Allen - Josh - Allen - - nfl.p.30977 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 17 - QB - - https://s.yimg.com/iu/api/res/1.2/Wstxxgt3AXMTkPHC512ZcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30977.png - small - - https://s.yimg.com/iu/api/res/1.2/Wstxxgt3AXMTkPHC512ZcQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30977.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.27742 - 27742 - - Garrett Gilbert - Garrett - Gilbert - Garrett - Gilbert - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27742 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/0MRsEIDMDmVvIFRjYPitwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27742.png - small - - https://s.yimg.com/iu/api/res/1.2/0MRsEIDMDmVvIFRjYPitwg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/27742.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26346 - 26346 - - Austin Davis - Austin - Davis - Austin - Davis - - IR - Injured Reserve - undisclosed - nfl.p.26346 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/_CtGX5ohz5.gmTrZhuXeZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26346.png - small - - https://s.yimg.com/iu/api/res/1.2/_CtGX5ohz5.gmTrZhuXeZw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26346.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27878 - 27878 - - Stephen Morris - Stephen - Morris - Stephen - Morris - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27878 - nfl.t.34 - Houston Texans - Hou - - 10 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/GwyCjsmwzCEbCMOjsPz9wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27878.png - small - - https://s.yimg.com/iu/api/res/1.2/GwyCjsmwzCEbCMOjsPz9wA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27878.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31002 - 31002 - - Lamar Jackson - Lamar - Jackson - Lamar - Jackson - - nfl.p.31002 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/b1_.C3MFj_IPGthRm7_Xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31002.png - small - - https://s.yimg.com/iu/api/res/1.2/b1_.C3MFj_IPGthRm7_Xcg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31002.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 3 - 0 - - - - 380.p.31365 - 31365 - - J.T. Barrett - J.T. - Barrett - J.T. - Barrett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31365 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/w0etNm8uYNKXiZV3coS0bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31365.png - small - - https://s.yimg.com/iu/api/res/1.2/w0etNm8uYNKXiZV3coS0bg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31365.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31189 - 31189 - - Danny Etling - Danny - Etling - Danny - Etling - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31189 - nfl.t.17 - New England Patriots - NE - - 11 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/RU95PtO1FKrj.SrtDlglhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31189.png - small - - https://s.yimg.com/iu/api/res/1.2/RU95PtO1FKrj.SrtDlglhg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31189.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31190 - 31190 - - Alex McGough - Alex - McGough - Alex - McGough - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31190 - nfl.t.26 - Seattle Seahawks - Sea - - 7 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/ry4GT8RBHxsHlhjcrkmOHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31190.png - small - - https://s.yimg.com/iu/api/res/1.2/ry4GT8RBHxsHlhjcrkmOHA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31190.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30822 - 30822 - - Kyle Sloter - Kyle - Sloter - Kyle - Sloter - - nfl.p.30822 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 1 - QB - - https://s.yimg.com/iu/api/res/1.2/URaZe1o3kkn1_7kcZL7XMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30822.png - small - - https://s.yimg.com/iu/api/res/1.2/URaZe1o3kkn1_7kcZL7XMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30822.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30980 - 30980 - - Josh Rosen - Josh - Rosen - Josh - Rosen - - Q - Questionable - nfl.p.30980 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/rdNROScDktvnHR9qwksQnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30980.png - small - - https://s.yimg.com/iu/api/res/1.2/rdNROScDktvnHR9qwksQnA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30980.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 2 - 0 - - - - 380.p.30366 - 30366 - - Chad Kelly - Chad - Kelly - Chad - Kelly - - nfl.p.30366 - nfl.t.7 - Denver Broncos - Den - - 10 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/HuWloRaOE3wB0mJgV.85pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30366.png - small - - https://s.yimg.com/iu/api/res/1.2/HuWloRaOE3wB0mJgV.85pw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/30366.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31141 - 31141 - - Mike White - Mike - White - Mike - White - - nfl.p.31141 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/g.2f5hZft_GP9hjCwD1zyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31141.png - small - - https://s.yimg.com/iu/api/res/1.2/g.2f5hZft_GP9hjCwD1zyg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/31141.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28839 - 28839 - - Taylor Heinicke - Taylor - Heinicke - Taylor - Heinicke - - nfl.p.28839 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/UwXZkaSWJNBM5P3V5rCStA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28839.png - small - - https://s.yimg.com/iu/api/res/1.2/UwXZkaSWJNBM5P3V5rCStA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/28839.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31239 - 31239 - - Peter Pujals - Peter - Pujals - Peter - Pujals - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31239 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/6DlA8GAlRvV_lUCXD3Q2jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31239.png - small - - https://s.yimg.com/iu/api/res/1.2/6DlA8GAlRvV_lUCXD3Q2jw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31239.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29441 - 29441 - - Jeff Driskel - Jeff - Driskel - Jeff - Driskel - - nfl.p.29441 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/VxnqeQjOK9r0nW0GyxMKew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29441.png - small - - https://s.yimg.com/iu/api/res/1.2/VxnqeQjOK9r0nW0GyxMKew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29441.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27170 - 27170 - - Tyler Bray - Tyler - Bray - Tyler - Bray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27170 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/qTZiyoha6pIwCl0nf5i4oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27170.png - small - - https://s.yimg.com/iu/api/res/1.2/qTZiyoha6pIwCl0nf5i4oA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27170.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26949 - 26949 - - Ryan Griffin - Ryan - Griffin - Ryan - Griffin - - nfl.p.26949 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/MKqDdmAwJ9e.OeBSThz0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26949.png - small - - https://s.yimg.com/iu/api/res/1.2/MKqDdmAwJ9e.OeBSThz0Fg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/26949.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8834 - 8834 - - Chad Henne - Chad - Henne - Chad - Henne - - nfl.p.8834 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/1HtutgNEqhgj3kU8oAjpyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/8834.png - small - - https://s.yimg.com/iu/api/res/1.2/1HtutgNEqhgj3kU8oAjpyw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/8834.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31490 - 31490 - - Chase Litton - Chase - Litton - Chase - Litton - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31490 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30466 - 30466 - - Alek Torgersen - Alek - Torgersen - Alek - Torgersen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30466 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/J51uVSfV0WopGhjDue_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30466.png - small - - https://s.yimg.com/iu/api/res/1.2/J51uVSfV0WopGhjDue_f3g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/30466.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31078 - 31078 - - Kyle Lauletta - Kyle - Lauletta - Kyle - Lauletta - - nfl.p.31078 - nfl.t.19 - New York Giants - NYG - - 9 - - 17 - QB - - https://s.yimg.com/iu/api/res/1.2/SyTQSpHAgFveNgexjUYXlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31078.png - small - - https://s.yimg.com/iu/api/res/1.2/SyTQSpHAgFveNgexjUYXlw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31078.png - 0 - O - - QB - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30788 - 30788 - - Cooper Rush - Cooper - Rush - Cooper - Rush - - nfl.p.30788 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/A6FXltSK.cSD0gyICvN7Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30788.png - small - - https://s.yimg.com/iu/api/res/1.2/A6FXltSK.cSD0gyICvN7Zw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09292017/30788.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31301 - 31301 - - Kyle Allen - Kyle - Allen - Kyle - Allen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31301 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/bdvckEZX86pIXEybnMD6Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31301.png - small - - https://s.yimg.com/iu/api/res/1.2/bdvckEZX86pIXEybnMD6Vg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31301.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26662 - 26662 - - Geno Smith - Geno - Smith - Geno - Smith - - nfl.p.26662 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/ngo7vbxebu9GTNDo5rEAEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26662.png - small - - https://s.yimg.com/iu/api/res/1.2/ngo7vbxebu9GTNDo5rEAEw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/26662.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.31741 - 31741 - - Nick Stevens - Nick - Stevens - Nick - Stevens - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31741 - nfl.t.7 - Denver Broncos - Den - - 10 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31803 - 31803 - - John Wolford - John - Wolford - John - Wolford - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31803 - nfl.t.20 - New York Jets - NYJ - - 11 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31688 - 31688 - - Nic Shimonek - Nic - Shimonek - Nic - Shimonek - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31688 - nfl.t.28 - Washington Redskins - Was - - 4 - - 2 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29545 - 29545 - - Joel Stave - Joel - Stave - Joel - Stave - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29545 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/duM9gK4l1rzBTG_LHm9Nog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29545.png - small - - https://s.yimg.com/iu/api/res/1.2/duM9gK4l1rzBTG_LHm9Nog--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/29545.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31169 - 31169 - - Luke Falk - Luke - Falk - Luke - Falk - - nfl.p.31169 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/bUT466h3iPU0kGGw.cXqOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31169.png - small - - https://s.yimg.com/iu/api/res/1.2/bUT466h3iPU0kGGw.cXqOg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31169.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27711 - 27711 - - David Fales - David - Fales - David - Fales - - nfl.p.27711 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/36U2PbQB9NQZCsQsIzjJdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/27711.png - small - - https://s.yimg.com/iu/api/res/1.2/36U2PbQB9NQZCsQsIzjJdg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl/players_l/20151016/27711.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9269 - 9269 - - Mark Sanchez - Mark - Sanchez - Mark - Sanchez - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.9269 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/EfqEmvp8lkmMz3PVVNICkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/9269.png - small - - https://s.yimg.com/iu/api/res/1.2/EfqEmvp8lkmMz3PVVNICkg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09012017/9269.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29373 - 29373 - - Cardale Jones - Cardale - Jones - Cardale - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29373 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/l2Sz7pRbGIKQ4L.j5NQJeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29373.png - small - - https://s.yimg.com/iu/api/res/1.2/l2Sz7pRbGIKQ4L.j5NQJeg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08262018/29373.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30328 - 30328 - - Brad Kaaya - Brad - Kaaya - Brad - Kaaya - - IR - Injured Reserve - undisclosed - nfl.p.30328 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/fVSiwFoMv9pjEh4peaZX4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30328.png - small - - https://s.yimg.com/iu/api/res/1.2/fVSiwFoMv9pjEh4peaZX4g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/30328.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24060 - 24060 - - Colt McCoy - Colt - McCoy - Colt - McCoy - - Q - Questionable - nfl.p.24060 - nfl.t.28 - Washington Redskins - Was - - 4 - - 12 - QB - - https://s.yimg.com/iu/api/res/1.2/MHKtdIoT70Fyl15E6iUSrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24060.png - small - - https://s.yimg.com/iu/api/res/1.2/MHKtdIoT70Fyl15E6iUSrA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/24060.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29421 - 29421 - - Nate Sudfeld - Nate - Sudfeld - Nate - Sudfeld - - nfl.p.29421 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/sWMT37uR9BbMYj_rWgiN4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29421.png - small - - https://s.yimg.com/iu/api/res/1.2/sWMT37uR9BbMYj_rWgiN4Q--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29421.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31279 - 31279 - - Dalton Sturm - Dalton - Sturm - Dalton - Sturm - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31279 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 1 - QB - - https://s.yimg.com/iu/api/res/1.2/DNoO8sRUh09iy5bT0jYH7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31279.png - small - - https://s.yimg.com/iu/api/res/1.2/DNoO8sRUh09iy5bT0jYH7g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31279.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25171 - 25171 - - Scott Tolzien - Scott - Tolzien - Scott - Tolzien - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25171 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 16 - QB - - https://s.yimg.com/iu/api/res/1.2/oUUwFU4fQC12PqjojXO20g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25171.png - small - - https://s.yimg.com/iu/api/res/1.2/oUUwFU4fQC12PqjojXO20g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/25171.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27429 - 27429 - - Matt McGloin - Matt - McGloin - Matt - McGloin - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27429 - nfl.t.12 - Kansas City Chiefs - KC - - 12 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/IlCkF73SA0R0qQACtj7C7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27429.png - small - - https://s.yimg.com/iu/api/res/1.2/IlCkF73SA0R0qQACtj7C7w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/27429.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.8937 - 8937 - - Josh Johnson - Josh - Johnson - Josh - Johnson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.8937 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/PVwYZk.7IRqaHJZTp0GO.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8937.png - small - - https://s.yimg.com/iu/api/res/1.2/PVwYZk.7IRqaHJZTp0GO.w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09052017/8937.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29457 - 29457 - - Brandon Doughty - Brandon - Doughty - Brandon - Doughty - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29457 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/uMBVivrciouJ_PiBG6qaMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/29457.png - small - - https://s.yimg.com/iu/api/res/1.2/uMBVivrciouJ_PiBG6qaMQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09182017/29457.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.6849 - 6849 - - Matt Schaub - Matt - Schaub - Matt - Schaub - - nfl.p.6849 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/Q.bscrOxpwlM8nrDAXNo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6849.png - small - - https://s.yimg.com/iu/api/res/1.2/Q.bscrOxpwlM8nrDAXNo5A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/6849.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31695 - 31695 - - Brogan Roback - Brogan - Roback - Brogan - Roback - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31695 - nfl.t.5 - Cleveland Browns - Cle - - 11 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30563 - 30563 - - Nick Mullens - Nick - Mullens - Nick - Mullens - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30563 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/dK6Tk7c14RC_9Z4nIRsyrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30563.png - small - - https://s.yimg.com/iu/api/res/1.2/dK6Tk7c14RC_9Z4nIRsyrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/30563.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29260 - 29260 - - Paxton Lynch - Paxton - Lynch - Paxton - Lynch - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29260 - nfl.t.7 - Denver Broncos - Den - - 10 - - 12 - QB - - https://s.yimg.com/iu/api/res/1.2/5dxNjc5q07iWIQZSu_lKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29260.png - small - - https://s.yimg.com/iu/api/res/1.2/5dxNjc5q07iWIQZSu_lKbw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29260.png - 0 - O - - QB - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26547 - 26547 - - Alex Tanney - Alex - Tanney - Alex - Tanney - - nfl.p.26547 - nfl.t.19 - New York Giants - NYG - - 9 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/ry8lxKnDTz5OAxj06FakRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26547.png - small - - https://s.yimg.com/iu/api/res/1.2/ry8lxKnDTz5OAxj06FakRA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/26547.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31252 - 31252 - - Austin Allen - Austin - Allen - Austin - Allen - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31252 - nfl.t.27 - Tampa Bay Buccaneers - TB - - 5 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/4UIQWw17iFVA8.f6i3NNTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31252.png - small - - https://s.yimg.com/iu/api/res/1.2/4UIQWw17iFVA8.f6i3NNTw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/31252.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31804 - 31804 - - Connor Jessop - Connor - Jessop - Connor - Jessop - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31804 - nfl.t.28 - Washington Redskins - Was - - 4 - - 2 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29425 - 29425 - - Jake Rudock - Jake - Rudock - Jake - Rudock - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29425 - nfl.t.8 - Detroit Lions - Det - - 6 - - 14 - QB - - https://s.yimg.com/iu/api/res/1.2/p1rNaePkSO5rgQaVW_9bZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29425.png - small - - https://s.yimg.com/iu/api/res/1.2/p1rNaePkSO5rgQaVW_9bZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29425.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31330 - 31330 - - Jack Heneghan - Jack - Heneghan - Jack - Heneghan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31330 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/sFBYTZGWTa_SFhfaWcbxDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31330.png - small - - https://s.yimg.com/iu/api/res/1.2/sFBYTZGWTa_SFhfaWcbxDg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/31330.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.29284 - 29284 - - Christian Hackenberg - Christian - Hackenberg - Christian - Hackenberg - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29284 - nfl.t.4 - Cincinnati Bengals - Cin - - 9 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/3IcNIpz0OER0m7yw38GItw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29284.png - small - - https://s.yimg.com/iu/api/res/1.2/3IcNIpz0OER0m7yw38GItw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/20160906/29284.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7798 - 7798 - - Kellen Clemens - Kellen - Clemens - Kellen - Clemens - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7798 - nfl.t.24 - Los Angeles Chargers - LAC - - 8 - - 10 - QB - - https://s.yimg.com/iu/api/res/1.2/vZrnJI2lGixNDBllqXtr0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7798.png - small - - https://s.yimg.com/iu/api/res/1.2/vZrnJI2lGixNDBllqXtr0g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09092017/7798.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29334 - 29334 - - Connor Cook - Connor - Cook - Connor - Cook - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29334 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 18 - QB - - https://s.yimg.com/iu/api/res/1.2/ResHqd1WsAqscs_WJ8mhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29334.png - small - - https://s.yimg.com/iu/api/res/1.2/ResHqd1WsAqscs_WJ8mhcw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/29334.png - 0 - O - - QB - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31046 - 31046 - - Mason Rudolph - Mason - Rudolph - Mason - Rudolph - - nfl.p.31046 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 2 - QB - - https://s.yimg.com/iu/api/res/1.2/U9c_8BqF_Yb0._ymLbYNGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31046.png - small - - https://s.yimg.com/iu/api/res/1.2/U9c_8BqF_Yb0._ymLbYNGQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/31046.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27560 - 27560 - - Teddy Bridgewater - Teddy - Bridgewater - Teddy - Bridgewater - - nfl.p.27560 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/lqIMTw4.R9AxvaXvltYjMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27560.png - small - - https://s.yimg.com/iu/api/res/1.2/lqIMTw4.R9AxvaXvltYjMw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/27560.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28463 - 28463 - - Garrett Grayson - Garrett - Grayson - Garrett - Grayson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.28463 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/Q4YTHYp9lKBbLTaqggkJFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28463.png - small - - https://s.yimg.com/iu/api/res/1.2/Q4YTHYp9lKBbLTaqggkJFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/28463.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30248 - 30248 - - Joshua Dobbs - Joshua - Dobbs - Joshua - Dobbs - - nfl.p.30248 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/eOAbf2yuV4N.dcAInW1_DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30248.png - small - - https://s.yimg.com/iu/api/res/1.2/eOAbf2yuV4N.dcAInW1_DA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/30248.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31336 - 31336 - - Kurt Benkert - Kurt - Benkert - Kurt - Benkert - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31336 - nfl.t.1 - Atlanta Falcons - Atl - - 8 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/Kwjgnz8lIAUQKEgRUqbNLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31336.png - small - - https://s.yimg.com/iu/api/res/1.2/Kwjgnz8lIAUQKEgRUqbNLw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31336.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.9678 - 9678 - - Chase Daniel - Chase - Daniel - Chase - Daniel - - nfl.p.9678 - nfl.t.3 - Chicago Bears - Chi - - 5 - - 4 - QB - - https://s.yimg.com/iu/api/res/1.2/GkvhlppuNerAjtNYzu03JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/9678.png - small - - https://s.yimg.com/iu/api/res/1.2/GkvhlppuNerAjtNYzu03JQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08282018/9678.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30200 - 30200 - - Davis Webb - Davis - Webb - Davis - Webb - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30200 - nfl.t.20 - New York Jets - NYJ - - 11 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/VEmgps2AYWLmhhDOlJXoxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30200.png - small - - https://s.yimg.com/iu/api/res/1.2/VEmgps2AYWLmhhDOlJXoxQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30200.png - 0 - O - - QB - - 1 - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29435 - 29435 - - Brandon Allen - Brandon - Allen - Brandon - Allen - - nfl.p.29435 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/grfh74zHj8JIjPTFxGT2ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29435.png - small - - https://s.yimg.com/iu/api/res/1.2/grfh74zHj8JIjPTFxGT2ZQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08292018/29435.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31431 - 31431 - - Tim Boyle - Tim - Boyle - Tim - Boyle - - nfl.p.31431 - nfl.t.9 - Green Bay Packers - GB - - 7 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31734 - 31734 - - Luis Perez - Luis - Perez - Luis - Perez - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31734 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - small - - https://s.yimg.com/iu/api/res/1.2/lUF78F57TcIwtVu.6J32rw--~B/YXBwaWQ9c2hhcmVkO2NoPTIwMDtjcj0xO2N3PTE1MztkeD03NDtkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/dh/ap/default/140828/silhouette@2x.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31173 - 31173 - - Tanner Lee - Tanner - Lee - Tanner - Lee - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31173 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/rrJlYm4rzCJOyWi.iM9u8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31173.png - small - - https://s.yimg.com/iu/api/res/1.2/rrJlYm4rzCJOyWi.iM9u8A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31173.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30538 - 30538 - - Phillip Walker - Phillip - Walker - Phillip - Walker - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30538 - nfl.t.11 - Indianapolis Colts - Ind - - 9 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/V6R029l3hx8Z6phxHCOX9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30538.png - small - - https://s.yimg.com/iu/api/res/1.2/V6R029l3hx8Z6phxHCOX9w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09212017/30538.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25732 - 25732 - - Brandon Weeden - Brandon - Weeden - Brandon - Weeden - - nfl.p.25732 - nfl.t.34 - Houston Texans - Hou - - 10 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/5cf4PD7HL9weAS67E_NORQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25732.png - small - - https://s.yimg.com/iu/api/res/1.2/5cf4PD7HL9weAS67E_NORQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25732.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.30747 - 30747 - - Tyler Ferguson - Tyler - Ferguson - Tyler - Ferguson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.30747 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/rVfPg_Kd3.WIqFDzZ0qZPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30747.png - small - - https://s.yimg.com/iu/api/res/1.2/rVfPg_Kd3.WIqFDzZ0qZPQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/30747.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29722 - 29722 - - Joe Callahan - Joe - Callahan - Joe - Callahan - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29722 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/estsdAjViQPbZRDqtOqC8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29722.png - small - - https://s.yimg.com/iu/api/res/1.2/estsdAjViQPbZRDqtOqC8w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/29722.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31308 - 31308 - - Chad Kanoff - Chad - Kanoff - Chad - Kanoff - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31308 - nfl.t.22 - Arizona Cardinals - Ari - - 9 - - 6 - QB - - https://s.yimg.com/iu/api/res/1.2/QYOwxHOW6YFg4PFJqy_6rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31308.png - small - - https://s.yimg.com/iu/api/res/1.2/QYOwxHOW6YFg4PFJqy_6rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/31308.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.29870 - 29870 - - Josh Woodrum - Josh - Woodrum - Josh - Woodrum - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.29870 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 7 - QB - - https://s.yimg.com/iu/api/res/1.2/hzn8.UgLDTj.gBCaeALT2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29870.png - small - - https://s.yimg.com/iu/api/res/1.2/hzn8.UgLDTj.gBCaeALT2w--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/29870.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31219 - 31219 - - Logan Woodside - Logan - Woodside - Logan - Woodside - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.31219 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/.jM2wZBedHCFzkiECn7xfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31219.png - small - - https://s.yimg.com/iu/api/res/1.2/.jM2wZBedHCFzkiECn7xfw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/31219.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.27663 - 27663 - - Tom Savage - Tom - Savage - Tom - Savage - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.27663 - nfl.t.18 - New Orleans Saints - NO - - 6 - - 12 - QB - - https://s.yimg.com/iu/api/res/1.2/HaRO2V2Y5KkIHlSL3oABuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27663.png - small - - https://s.yimg.com/iu/api/res/1.2/HaRO2V2Y5KkIHlSL3oABuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09192017/27663.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.7389 - 7389 - - Derek Anderson - Derek - Anderson - Derek - Anderson - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.7389 - nfl.t.29 - Carolina Panthers - Car - - 4 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/1aqFSRoFhs4c_4UYJx1teQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7389.png - small - - https://s.yimg.com/iu/api/res/1.2/1aqFSRoFhs4c_4UYJx1teQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222017/7389.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26738 - 26738 - - Landry Jones - Landry - Jones - Landry - Jones - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26738 - nfl.t.23 - Pittsburgh Steelers - Pit - - 7 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/e7kLhIJiWZA7KVeYJt2vRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26738.png - small - - https://s.yimg.com/iu/api/res/1.2/e7kLhIJiWZA7KVeYJt2vRw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/26738.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.28491 - 28491 - - Bryce Petty - Bryce - Petty - Bryce - Petty - - undisclosed - nfl.p.28491 - nfl.t.15 - Miami Dolphins - Mia - - 11 - - 14 - QB - - https://s.yimg.com/iu/api/res/1.2/.Do8Fa7E5O3_B.XFXUjUHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28491.png - small - - https://s.yimg.com/iu/api/res/1.2/.Do8Fa7E5O3_B.XFXUjUHw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08312018/28491.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - 380.p.7406 - 7406 - - Matt Cassel - Matt - Cassel - Matt - Cassel - - nfl.p.7406 - nfl.t.8 - Detroit Lions - Det - - 6 - - 8 - QB - - https://s.yimg.com/iu/api/res/1.2/fw2GxKuyaLq.0dvfexkYSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7406.png - small - - https://s.yimg.com/iu/api/res/1.2/fw2GxKuyaLq.0dvfexkYSA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/7406.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.26639 - 26639 - - EJ Manuel - EJ - Manuel - EJ - Manuel - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.26639 - nfl.t.13 - Oakland Raiders - Oak - - 7 - - 3 - QB - - https://s.yimg.com/iu/api/res/1.2/1RCFikXGNFYyCg84n0YHtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26639.png - small - - https://s.yimg.com/iu/api/res/1.2/1RCFikXGNFYyCg84n0YHtg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242018/26639.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24861 - 24861 - - Ryan Mallett - Ryan - Mallett - Ryan - Mallett - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24861 - nfl.t.33 - Baltimore Ravens - Bal - - 10 - - 15 - QB - - https://s.yimg.com/iu/api/res/1.2/kFPCWCPGwgy5nDr8JLzPGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/24861.png - small - - https://s.yimg.com/iu/api/res/1.2/kFPCWCPGwgy5nDr8JLzPGA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/09302017/24861.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.25798 - 25798 - - Nick Foles - Nick - Foles - Nick - Foles - - nfl.p.25798 - nfl.t.21 - Philadelphia Eagles - Phi - - 9 - - 9 - QB - - https://s.yimg.com/iu/api/res/1.2/vWP73Sl4_MnjevDux2Jp8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25798.png - small - - https://s.yimg.com/iu/api/res/1.2/vWP73Sl4_MnjevDux2Jp8g--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/25798.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 5 - 0 - - - - 380.p.30284 - 30284 - - Nathan Peterman - Nathan - Peterman - Nathan - Peterman - - nfl.p.30284 - nfl.t.2 - Buffalo Bills - Buf - - 11 - - 2 - QB - - https://s.yimg.com/iu/api/res/1.2/1oaHInRR.3cdVhLAGa_fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30284.png - small - - https://s.yimg.com/iu/api/res/1.2/1oaHInRR.3cdVhLAGa_fkQ--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/30284.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.28477 - 28477 - - Sean Mannion - Sean - Mannion - Sean - Mannion - - nfl.p.28477 - nfl.t.14 - Los Angeles Rams - LAR - - 12 - - 14 - QB - - https://s.yimg.com/iu/api/res/1.2/oyHKQePokNYbu8.XNI7wuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28477.png - small - - https://s.yimg.com/iu/api/res/1.2/oyHKQePokNYbu8.XNI7wuw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/28477.png - 0 - O - - QB - - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.24175 - 24175 - - Joe Webb III - Joe - Webb III - Joe - Webb III - - nfl.p.24175 - nfl.t.34 - Houston Texans - Hou - - 10 - - 5 - QB - - https://s.yimg.com/iu/api/res/1.2/ghrLZk9_qwt_wsr3XWMfnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24175.png - small - - https://s.yimg.com/iu/api/res/1.2/ghrLZk9_qwt_wsr3XWMfnw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/24175.png - 0 - O - - QB - - 1 - - - - - - - - - - - - week - 1 - 0 - - - - 380.p.31029 - 31029 - - Derrius Guice - Derrius - Guice - Derrius - Guice - - IR - Injured Reserve - torn left ACL - nfl.p.31029 - nfl.t.28 - Washington Redskins - Was - - 4 - - 29 - RB - - https://s.yimg.com/iu/api/res/1.2/QkJ8p37wX_7uERxUbTAt9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31029.png - small - - https://s.yimg.com/iu/api/res/1.2/QkJ8p37wX_7uERxUbTAt9A--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/31029.png - 0 - O - - RB - - - 49.7 - 5.6 - 9.6 - 0.26 - - - week - 1 - 6 - 0 - - - - 380.p.24858 - 24858 - - DeMarco Murray - DeMarco - Murray - DeMarco - Murray - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.24858 - nfl.t.10 - Tennessee Titans - Ten - - 8 - - 29 - RB - - https://s.yimg.com/iu/api/res/1.2/kZVJaGr212KuELIqkXLYew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24858.png - small - - https://s.yimg.com/iu/api/res/1.2/kZVJaGr212KuELIqkXLYew--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08242017/24858.png - 0 - O - - RB - - - 57.8 - 6.4 - 1.6 - 0.08 - - - week - 1 - 1 - 0 - - - - 380.p.25648 - 25648 - - Kai Forbath - Kai - Forbath - Kai - Forbath - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25648 - nfl.t.16 - Minnesota Vikings - Min - - 10 - - 2 - K - - https://s.yimg.com/iu/api/res/1.2/0SimSvpWpAM1StHFS3DTrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25648.png - small - - https://s.yimg.com/iu/api/res/1.2/0SimSvpWpAM1StHFS3DTrw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08222018/25648.png - 0 - K - - K - - - 137.7 - 14.3 - 1.1 - 0.09 - - - week - 1 - 2 - 0 - - - - 380.p.27570 - 27570 - - Jordan Matthews - Jordan - Matthews - Jordan - Matthews - - NA - Inactive: Coach's Decision or Not on Roster - right hamstring - nfl.p.27570 - nfl.t.17 - New England Patriots - NE - - 11 - - 80 - WR - - https://s.yimg.com/iu/api/res/1.2/OLdHu0gLhVUai0kKN4LNFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27570.png - small - - https://s.yimg.com/iu/api/res/1.2/OLdHu0gLhVUai0kKN4LNFw--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08212018/27570.png - 0 - O - - WR - - - - - - - - - - - - - week - 1 - 1 - 0 - - - - 380.p.27567 - 27567 - - Marqise Lee - Marqise - Lee - Marqise - Lee - - IR - Injured Reserve - left knee - nfl.p.27567 - nfl.t.30 - Jacksonville Jaguars - Jax - - 9 - - 11 - WR - - https://s.yimg.com/iu/api/res/1.2/UytH2yH.As4Up.HlerlvsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27567.png - small - - https://s.yimg.com/iu/api/res/1.2/UytH2yH.As4Up.HlerlvsA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08232018/27567.png - 0 - O - - WR - - 1 - - 130.7 - 13.8 - 1.3 - 0.12 - - - week - 1 - 6 - 0 - - - - 380.p.27624 - 27624 - - Jerick McKinnon - Jerick - McKinnon - Jerick - McKinnon - - IR - Injured Reserve - torn right ACL - nfl.p.27624 - nfl.t.25 - San Francisco 49ers - SF - - 11 - - 28 - RB - - https://s.yimg.com/iu/api/res/1.2/pNvJv736xkZPXGG3x2u7Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27624.png - small - - https://s.yimg.com/iu/api/res/1.2/pNvJv736xkZPXGG3x2u7Rg--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08202018/27624.png - 0 - O - - RB - - 1 - - 33.5 - 3.9 - 27.7 - 0.84 - - - week - 1 - 33 - 0 - - - - 380.p.25427 - 25427 - - Dan Bailey - Dan - Bailey - Dan - Bailey - - NA - Inactive: Coach's Decision or Not on Roster - nfl.p.25427 - nfl.t.6 - Dallas Cowboys - Dal - - 8 - - 5 - K - - https://s.yimg.com/iu/api/res/1.2/i1G6VtymXH_Um5pyX9bXUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25427.png - small - - https://s.yimg.com/iu/api/res/1.2/i1G6VtymXH_Um5pyX9bXUA--~B/YXBwaWQ9c2hhcmVkO2NoPTIzMzY7Y3I9MTtjdz0xNzkwO2R4PTg1NztkeT0wO2ZpPXVsY3JvcDtoPTYwO3E9MTAwO3c9NDY-/https://s.yimg.com/xe/i/us/sp/v/nfl_cutout/players_l/08272018/25427.png - 0 - K - - K - - 1 - - 117.5 - 12.5 - 1.2 - 0.71 - - - week - 1 - 24 - 0 - - - - - - - - 380 - 380 - Football - nfl - full - https://football.fantasysports.yahoo.com/f1 - 2018 - 0 - 0 - 0 - - - diff --git a/data/stat_categories.txt b/data/stat_categories.txt index 4ce475b..0077c20 100644 --- a/data/stat_categories.txt +++ b/data/stat_categories.txt @@ -1552,3 +1552,1557 @@ + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + From 5d46f117126d285c20b77cccccc67f24e88357ca Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 31 Jan 2019 13:06:06 -0500 Subject: [PATCH 12/21] CDL: boxplot for point distribution by player positions --- src/plot_average_score_by_position.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/plot_average_score_by_position.py b/src/plot_average_score_by_position.py index 9ad1b8f..364545c 100644 --- a/src/plot_average_score_by_position.py +++ b/src/plot_average_score_by_position.py @@ -61,3 +61,9 @@ plt.title(position+f"_top_{top_n}") fig = g.get_figure() fig.savefig(position+f"_top_{top_n}.png") + + plt.figure() + g = sns.boxplot(x="position", y="points", data=player_df) + plt.title("Point Distribution by position") + fig=g.get_figure() + fig.savefig("player_box.png") From bf218f61bd423cf3b48eefcfa70456a9eca04b77 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Fri, 1 Feb 2019 11:54:36 -0500 Subject: [PATCH 13/21] CDL: script for parsing data files Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/data_parser.py | 82 ++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 79 insertions(+), 3 deletions(-) diff --git a/src/data_parser.py b/src/data_parser.py index cce5ec3..3c0a648 100644 --- a/src/data_parser.py +++ b/src/data_parser.py @@ -2,7 +2,11 @@ Created on Aug 29, 2018 @author: cdleong + ''' +import xmltodict + +OPENING_XML_STRING = '''''' class PyFantasyDataParser(object): ''' @@ -14,7 +18,79 @@ def __init__(self): Constructor ''' print(f"Initializing {self}") - + + def parse_yahoo_xml_string_to_dict(self, xml_string): + # remove the first line, with the "" + if OPENING_XML_STRING in xml_string: + xml_string.replace(OPENING_XML_STRING, "") + + return xmltodict.parse(xml_string) + + def clear_text_file_and_write_multiple_xml_results(self, file_path, xml_results): + # clear it first + open(file_path, 'w').close() + + # append + with open(file_path, "a") as text_file: + for result in xml_results: + print(f"{result}", file=text_file) + + def game_parse(self, xml_string_to_parse): + + base_dict = self.parse_yahoo_xml_string_to_dict(xml_string_to_parse) + fantasy_content_dict = base_dict['fantasy_content'] + game_dict = fantasy_content_dict['game'] + players_dict = game_dict['players'] + player_list = players_dict['player'] + return player_list + + def get_player_list_from_xml_string(self, xml_string_to_parse): + ''' + :param xml_string_to_parse: + ''' + player_list = [] + if "" in xml_string_to_parse: + game_dict = fantasy_content_dict['game'] + players_dict = game_dict['players'] + player_list = players_dict['player'] + elif "" in xml_string_to_parse: + league_dict = fantasy_content_dict['league'] + players_dict = league_dict['players'] + player_list = players_dict['player'] + + + return player_list + + def combine_xml_strings_to_one_big_list_of_players(self, xml_strings): + + combined_player_list = [] + + for xml_string in xml_strings: + if xml_string: + combined_player_list += self.get_player_list_from_xml_string(xml_string) + + return combined_player_list + + def get_player_list_from_data_file(self, data_file_path): + print(f"Getting data from {data_file_path}") + + with open(data_file_path, "r") as text_file: + string_containing_multiple_xml_strings = text_file.read() + + # split on OPENING_XML_STRING + xml_strings = string_containing_multiple_xml_strings.split(OPENING_XML_STRING) + + combined_player_list = self.combine_xml_strings_to_one_big_list_of_players(xml_strings) + print(f"Got {len(combined_player_list)} players") + return combined_player_list + if __name__ == "__main__": - bob = PyFantasyDataParser() - \ No newline at end of file + bob = PyFantasyDataParser() + + data_file_path = "../data/all_league_players.txt" + player_list = bob.get_player_list_from_data_file(data_file_path) From e26a4748b2d872dd361605bb56d904337ebf0525 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Fri, 1 Feb 2019 11:55:29 -0500 Subject: [PATCH 14/21] CDL: updating position/score graphing scripts Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/plot_average_score_by_position.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plot_average_score_by_position.py b/src/plot_average_score_by_position.py index 364545c..44f2820 100644 --- a/src/plot_average_score_by_position.py +++ b/src/plot_average_score_by_position.py @@ -52,7 +52,7 @@ fig = g.get_figure() fig.savefig(position+".png") - top_n = 14 + top_n = 28 plt.figure() top_df = pos_df.tail(top_n) g = sns.distplot(top_df['points'], From 079d76b9557fab58b085b67614ce42bb013fd48c Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Fri, 1 Feb 2019 11:56:27 -0500 Subject: [PATCH 15/21] CDL: updating the Yahoo sports interface somewhat, moving datafile parsing out Signed-off-by: Colin Leong <4109253+cdleong@users.noreply.github.com> --- src/yahoo_sports_interface.py | 61 ++--------------------------------- 1 file changed, 3 insertions(+), 58 deletions(-) diff --git a/src/yahoo_sports_interface.py b/src/yahoo_sports_interface.py index 22a23fb..ced74a7 100644 --- a/src/yahoo_sports_interface.py +++ b/src/yahoo_sports_interface.py @@ -8,13 +8,9 @@ import xmltodict import pandas as pd import random -import pprint +import data_parser secure_random = random.SystemRandom() - -OPENING_XML_STRING = '''''' - - class PyFantasyYahooSportsInterface(object): # CLASS CONSTANTS NFL_PLAYERS_PER_TEAM = 53 @@ -145,58 +141,7 @@ def league_specific_query(self, subquery="", league_number=None,): return self.query_yahoo(query) - def clear_text_file_and_write_multiple_xml_results(self, file_path, xml_results): - # clear it first - open(file_path, 'w').close() - - # append - with open(file_path, "a") as text_file: - for result in xml_results: - print(f"{result}", file=text_file) - - def parse_yahoo_xml_string_to_dict(self, xml_string): - # remove the first line, with the "" - if OPENING_XML_STRING in xml_string: - xml_string.replace(OPENING_XML_STRING, "") - - return xmltodict.parse(xml_string) - - def get_player_list_from_xml_string(self, xml_string_to_parse): - ''' - :param xml_string_to_parse: - ''' - player_list = [] - if " Date: Thu, 21 Feb 2019 20:22:07 -0500 Subject: [PATCH 16/21] CDL: python script for generating csv from player data --- src/data_exploration/xml_to_csv.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/data_exploration/xml_to_csv.py diff --git a/src/data_exploration/xml_to_csv.py b/src/data_exploration/xml_to_csv.py new file mode 100644 index 0000000..8aad1f4 --- /dev/null +++ b/src/data_exploration/xml_to_csv.py @@ -0,0 +1,3 @@ +import xml + + From 78f0157661f0d98c5b8b3b391faafddb4b0b3cae Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 21 Feb 2019 21:13:38 -0500 Subject: [PATCH 17/21] CDL: first pass at requirements.yml --- requirements.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 requirements.yml diff --git a/requirements.yml b/requirements.yml new file mode 100644 index 0000000..75e50b7 --- /dev/null +++ b/requirements.yml @@ -0,0 +1,14 @@ +name: pyfantasy +channels: + - conda-forge + - defaults +dependencies: + - matplotlib + - numpy + - pandas + - pyqt + - rauth + - requests + - scipy + - seaborn + - xmltodict From 91b1040ee470f215af0c6f84806432a7cdaf040b Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 21 Feb 2019 22:12:22 -0500 Subject: [PATCH 18/21] CDL: various changes, including prompting the user so as to get league-specific data --- src/yahoo_sports_interface.py | 56 +++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 12 deletions(-) diff --git a/src/yahoo_sports_interface.py b/src/yahoo_sports_interface.py index ced74a7..791725a 100644 --- a/src/yahoo_sports_interface.py +++ b/src/yahoo_sports_interface.py @@ -9,8 +9,10 @@ import pandas as pd import random import data_parser +import pprint secure_random = random.SystemRandom() + class PyFantasyYahooSportsInterface(object): # CLASS CONSTANTS NFL_PLAYERS_PER_TEAM = 53 @@ -19,9 +21,9 @@ class PyFantasyYahooSportsInterface(object): # experimentally determined that there's 2789 "players" in the Yahoo DB, actually # TODO: fix calculation method - MAX_NFL_PLAYERS = (NFL_PLAYERS_PER_TEAM*NUMBER_OF_NFL_TEAMS) + NUMBER_OF_DEFENSES + MAX_NFL_PLAYERS = (NFL_PLAYERS_PER_TEAM * NUMBER_OF_NFL_TEAMS) + NUMBER_OF_DEFENSES MAX_RETURNED_PER_QUERY = 25 # determined experimentally - MAX_QUERY = math.ceil(MAX_NFL_PLAYERS/MAX_RETURNED_PER_QUERY)*2 + MAX_QUERY = math.ceil(MAX_NFL_PLAYERS / MAX_RETURNED_PER_QUERY) * 2 POSSIBLE_POSITIONS = ["QB", "WR", "RB", "TE", "K", "DEF"] def __init__(self, auth_filename): @@ -31,6 +33,10 @@ def __init__(self, auth_filename): print(f"Initializing {self}") self.auth_filename = auth_filename self.session = None + self.league_num = None + if yes_or_no("Would you like stats for your specific league? "): + # TODO: validate user input + self.league_num = int(input("What is the league number?")) def connect(self): @@ -73,7 +79,7 @@ def download_stat_categories(self): result = self.query_yahoo(query) xml = self.get_xml_from_yahoo_result(result) file_path = "../data/stat_categories.txt" - with open(file_path, "a") as text_file: + with open(file_path, "a+") as text_file: print(f"{xml}", file=text_file) def download_players_data_xml_strings(self, position=""): @@ -97,9 +103,12 @@ def download_players_data_xml_strings(self, position=""): # base query query = "game/nfl/players;out=draft_analysis,percent_owned,stats" -# league_num = 0 # TODO: ask user for league_num arg, use this if -# they provided one. -# league_query = f"league/nfl.l.{league_num}/players;out=draft_analysis,percent_owned,stats" + if self.league_num: +# league_query = f"league/nfl.l.{league_num}/players;out=draft_analysis,percent_owned,stats" + query = "league/nfl.l.{}/players;out=draft_analysis,percent_owned,stats".format(self.league_num) + + else: + print("League Number not known. Cannot get league-specific stats.") # Just one position? if position: @@ -107,7 +116,7 @@ def download_players_data_xml_strings(self, position=""): query = query + ";position=" + position # Continue building query so we can loop through and get them all - query = query+";count=" + str(count) + query = query + ";count=" + str(count) query = query + ";start=" + str(start) print(f"Final query: {query}") @@ -141,8 +150,6 @@ def league_specific_query(self, subquery="", league_number=None,): return self.query_yahoo(query) - - def download_all_player_data_from_yahoo_and_write_to_files(self, download_path="../data/all_players.txt"): ''' Download all the data to text files. @@ -165,11 +172,35 @@ def download_player_data_for_each_position_from_yahoo_and_write_to_files(self): print("done") + # TODO: clear all this out, and just use csv files. + def clear_text_file_and_write_multiple_xml_results(self, file_path, xml_results): + # clear it first + open(file_path, 'w').close() + + # append + with open(file_path, "a") as text_file: + for result in xml_results: + print(f"{result}", file=text_file) + def player_list_as_dataframe(player_ordereddict): return pd.DataFrame.from_dict(player_ordereddict) +def yes_or_no(prompt): + # raw_input returns the empty string for "enter" + yes = {'yes', 'y', 'ye', ''} + no = {'no', 'n'} + + choice = input(prompt).lower() + if choice in yes: + return True + elif choice in no: + return False + else: + print("Please respond with 'yes' or 'no'") + + def main(): # TODO: argparse - download or read? auth_filename = "auth_keys.txt" @@ -177,10 +208,11 @@ def main(): pyfsi.download_stat_categories() pyfsi.download_all_player_data_from_yahoo_and_write_to_files("../data/all_league_players.txt") -# pyfsi.download_player_data_for_each_position_from_yahoo_and_write_to_files(pyfsi) + pyfsi.download_player_data_for_each_position_from_yahoo_and_write_to_files() - data_file_path = "../data/all_players.txt" - player_list = pyfsi.get_player_list_from_data_file(data_file_path) + # The following are removed for now +# data_file_path = "../data/all_players.txt" +# player_list = pyfsi.get_player_list_from_data_file(data_file_path) # random_player = secure_random.choice(player_list) # pprint.pprint(random_player) From afb0dccdc35171948a7f63214fa0fedf493881ee Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 21 Feb 2019 22:19:53 -0500 Subject: [PATCH 19/21] CDL: updating readme a bit. --- README.md | 85 ++++++++++++++++++++++++++++++------------------------- 1 file changed, 46 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 4a5b45b..834108f 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,46 @@ -# pyfantasy - -Using Python to have fun with fantasy sports! - - -## Getting Started -(TODO, Still in development!) - -### Prerequisites -* Uses [YahooSports](https://github.com/thorrr/YahooSports) to connect to Yahoo Fantasy Sports API. - -### Setup -(Still in development!) - - -## YahoSports Data scraping: - -Query documentation can be found here: https://developer.yahoo.com/fantasysports/guide/ - -Basically, the query goes "game/nfl/something" - -Player resource: https://developer.yahoo.com/fantasysports/guide/#player-resource or https://developer.yahoo.com/fantasysports/guide/player-resource.html -Game resource: https://developer.yahoo.com/fantasysports/guide/game-resource.html - -You need to generate an auth file using your Yahoo developer credentials: https://developer.yahoo.com/apps/ and [YahooSports](https://github.com/thorrr/YahooSports) - -## Authors - -* **[Colin Leong]((https://github.com/cdleong))** - -## Acknowledgments -* [Jason Bell](https://github.com/thorrr) the author of [YahooSports](https://github.com/thorrr/YahooSports), which I'm using to pull data down. - - -## License - -This project is licensed under the GPLv3 License - see the [LICENSE.md](LICENSE.md) file for details - - +# pyfantasy + +Using Python to have fun with fantasy sports! + + +## Getting Started +(TODO, Still in development!) + +### Prerequisites +* Uses [YahooSports](https://github.com/thorrr/YahooSports) to connect to Yahoo Fantasy Sports API. + +### Setup +(Still in development!) + +``` +# setup conda environment. +conda env create -n pyfantasy -f requirements.yml +``` + + + + +## YahoSports Data scraping: + +Query documentation can be found here: https://developer.yahoo.com/fantasysports/guide/ + +Basically, the query goes "game/nfl/something" + +Player resource: https://developer.yahoo.com/fantasysports/guide/#player-resource or https://developer.yahoo.com/fantasysports/guide/player-resource.html +Game resource: https://developer.yahoo.com/fantasysports/guide/game-resource.html + +You need to generate an auth file using your Yahoo developer credentials: https://developer.yahoo.com/apps/ and [YahooSports](https://github.com/thorrr/YahooSports) + +## Authors + +* **[Colin Leong]((https://github.com/cdleong))** + +## Acknowledgments +* [Jason Bell](https://github.com/thorrr) the author of [YahooSports](https://github.com/thorrr/YahooSports), which I'm using to pull data down. + + +## License + +This project is licensed under the GPLv3 License - see the [LICENSE.md](LICENSE.md) file for details + + From bed0e6ae83c11a9215cfcb3f3083c76416bfd9d7 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 21 Feb 2019 22:21:07 -0500 Subject: [PATCH 20/21] CDL: stat categories, for future reference. --- data/stat_categories.txt | 3108 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 3108 insertions(+) diff --git a/data/stat_categories.txt b/data/stat_categories.txt index 0077c20..be6ba56 100644 --- a/data/stat_categories.txt +++ b/data/stat_categories.txt @@ -3106,3 +3106,3111 @@ + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + + + + 380 + 380 + Football + nfl + full + https://football.fantasysports.yahoo.com/f1 + 2018 + 1 + 1 + 0 + + + + 0 + Games Played + GP + 1 + + O + DP + K + DT + + + + 1 + Passing Attempts + Pass Att + 1 + + O + + + + 2 + Completions + Comp + 1 + + O + + + + 3 + Incomplete Passes + Inc + 0 + + O + + + + 4 + Passing Yards + Pass Yds + 1 + + O + + + + 5 + Passing Touchdowns + Pass TD + 1 + + O + + + + 6 + Interceptions + Int + 0 + + O + + + + 7 + Sacks + Sack + 0 + + O + + + + 8 + Rushing Attempts + Rush Att + 1 + + O + + + + 9 + Rushing Yards + Rush Yds + 1 + + O + + + + 10 + Rushing Touchdowns + Rush TD + 1 + + O + + + + 11 + Receptions + Rec + 1 + + O + + + + 12 + Receiving Yards + Rec Yds + 1 + + O + + + + 13 + Receiving Touchdowns + Rec TD + 1 + + O + + + + 14 + Return Yards + Ret Yds + 1 + + O + + + + 15 + Return Touchdowns + Ret TD + 1 + + O + + + + 16 + 2-Point Conversions + 2-PT + 1 + + O + + + + 17 + Fumbles + Fum + 0 + + O + + + + 18 + Fumbles Lost + Fum Lost + 0 + + O + + + + 19 + Field Goals 0-19 Yards + FG 0-19 + 1 + + K + + + + 20 + Field Goals 20-29 Yards + FG 20-29 + 1 + + K + + + + 21 + Field Goals 30-39 Yards + FG 30-39 + 1 + + K + + + + 22 + Field Goals 40-49 Yards + FG 40-49 + 1 + + K + + + + 23 + Field Goals 50+ Yards + FG 50+ + 1 + + K + + + + 24 + Field Goals Missed 0-19 Yards + FGM 0-19 + 0 + + K + + + + 25 + Field Goals Missed 20-29 Yards + FGM 20-29 + 0 + + K + + + + 26 + Field Goals Missed 30-39 Yards + FGM 30-39 + 0 + + K + + + + 27 + Field Goals Missed 40-49 Yards + FGM 40-49 + 0 + + K + + + + 28 + Field Goals Missed 50+ Yards + FGM 50+ + 0 + + K + + + + 29 + Point After Attempt Made + PAT Made + 1 + + K + + + + 30 + Point After Attempt Missed + PAT Miss + 0 + + K + + + + 31 + Points Allowed + Pts Allow + 0 + + DT + + + + 32 + Sack + Sack + 1 + + DT + + + + 33 + Interception + Int + 1 + + DT + + + + 34 + Fumble Recovery + Fum Rec + 1 + + DT + + + + 35 + Touchdown + TD + 1 + + DT + + + + 36 + Safety + Safe + 1 + + DT + + + + 37 + Block Kick + Blk Kick + 1 + + DT + + + + 38 + Tackle Solo + Tack Solo + 1 + + DP + + + + 39 + Tackle Assist + Tack Ast + 1 + + DP + + + + 40 + Sack + Sack + 1 + + DP + + + + 41 + Interception + Int + 1 + + DP + + + + 42 + Fumble Force + Fum Force + 1 + + DP + + + + 43 + Fumble Recovery + Fum Rec + 1 + + DP + + + + 44 + Defensive Touchdown + TD + 1 + + DP + + + + 45 + Safety + Safe + 1 + + DP + + + + 46 + Pass Defended + Pass Def + 1 + + DP + + + + 47 + Block Kick + Blk Kick + 1 + + DP + + + + 48 + Return Yards + Ret Yds + 1 + + DT + + + + 49 + Kickoff and Punt Return Touchdowns + Kick and Punt Ret TD + 1 + + DT + + + + 50 + Points Allowed 0 points + Pts Allow 0 + 1 + + DT + + + + 51 + Points Allowed 1-6 points + Pts Allow 1-6 + 1 + + DT + + + + 52 + Points Allowed 7-13 points + Pts Allow 7-13 + 1 + + DT + + + + 53 + Points Allowed 14-20 points + Pts Allow 14-20 + 1 + + DT + + + + 54 + Points Allowed 21-27 points + Pts Allow 21-27 + 1 + + DT + + + + 55 + Points Allowed 28-34 points + Pts Allow 28-34 + 1 + + DT + + + + 56 + Points Allowed 35+ points + Pts Allow 35+ + 1 + + DT + + + + 57 + Offensive Fumble Return TD + Fum Ret TD + 1 + + O + + + + 58 + Pick Sixes Thrown + Pick Six + 0 + + O + + + + 59 + 40+ Yard Completions + 40 Yd Comp + 1 + + O + + + + 60 + 40+ Yard Passing Touchdowns + 40 Yd Pass TD + 1 + + O + + + + 61 + 40+ Yard Run + 40 Yd Rush + 1 + + O + + + + 62 + 40+ Yard Rushing Touchdowns + 40 Yd Rush TD + 1 + + O + + + + 63 + 40+ Yard Receptions + 40 Yd Rec + 1 + + O + + + + 64 + 40+ Yard Receiving Touchdowns + 40 Yd Rec TD + 1 + + O + + + + 65 + Tackles for Loss + TFL + 1 + + DP + + + + 66 + Turnover Return Yards + TO Ret Yds + 1 + + DP + + + + 67 + 4th Down Stops + 4 Dwn Stops + 1 + + DT + + + + 68 + Tackles for Loss + TFL + 1 + + DT + + + + 69 + Defensive Yards Allowed + Def Yds Allow + 0 + + DT + + + + 70 + Defensive Yards Allowed - Negative + Yds Allow Neg + 1 + + DT + + + + 71 + Defensive Yards Allowed 0-99 + Yds Allow 0-99 + 1 + + DT + + + + 72 + Defensive Yards Allowed 100-199 + Yds Allow 100-199 + 1 + + DT + + + + 73 + Defensive Yards Allowed 200-299 + Yds Allow 200-299 + 1 + + DT + + + + 74 + Defensive Yards Allowed 300-399 + Yds Allow 300-399 + 1 + + DT + + + + 75 + Defensive Yards Allowed 400-499 + Yds Allow 400-499 + 1 + + DT + + + + 76 + Defensive Yards Allowed 500+ + Yds Allow 500+ + 1 + + DT + + + + 77 + Three and Outs Forced + 3 and Outs + 1 + + DT + + + + 78 + Targets + Targets + 1 + + O + + + + 79 + Passing 1st Downs + Pass 1st Downs + 1 + + O + + + + 80 + Receiving 1st Downs + Rec 1st Downs + 1 + + O + + + + 81 + Rushing 1st Downs + Rush 1st Downs + 1 + + O + + + + 82 + Extra Point Returned + XPR + 1 + + DT + + + + 83 + Extra Point Returned + XPR + 1 + + DP + + + + + + From 9a7cf39791a293e60ba6a7ab040fbaad16aabb78 Mon Sep 17 00:00:00 2001 From: Colin Leong <4109253+cdleong@users.noreply.github.com> Date: Thu, 21 Feb 2019 22:24:38 -0500 Subject: [PATCH 21/21] CDL: add pic to README --- README.md | 1 + images/player_box.png | Bin 0 -> 23998 bytes 2 files changed, 1 insertion(+) create mode 100644 images/player_box.png diff --git a/README.md b/README.md index 834108f..a777bb4 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ Using Python to have fun with fantasy sports! +![](images/player_box.png) ## Getting Started (TODO, Still in development!) diff --git a/images/player_box.png b/images/player_box.png new file mode 100644 index 0000000000000000000000000000000000000000..377b3036b026ac55b881d5bb22eaa06ff4db91da GIT binary patch literal 23998 zcmd?RXH*qiw=G)aoD|7fKmdi zbp*i-L=cP_d|dcMsCVKUykNV_sp{avzx()B;qacoMdg+|f{>Y`|6}Axzqtb+irrPz zzk9>k=I%XnH*3Vv{H}|G^IeBK7A&6DZti!SomejM3GiLKz;gTUU6(8T{Qvm{K4&*u ze$hbjJOp7uR25`(ypoqDef4!bj_}rg(>`I9!B%+CV3;$5BT!1o|J}y^?c?-kHq=?f zJOx=V?j+Qel{u($$akD+|MLE-##6(OfPZf-}K z>OZ@Pt`2YRaxM7U%wNKLA~HQrp`cAEs{sFsU%TAJK!30@B@RSiFE$}6@WOuS|G#es z2vhz4oR^c6dmMmELih0FN)-{0Uj9R+j63U_#?@XFtgNiNTm71O?`#)`@^%k4dw8Yl z{FkxtNShh&O*}Y%Bin5I*Wm7Y8}s=4+S1a?)yGHsygrXV3`fMoD66R8tEs6OY#C{E zbag4-zc0aOQazI9*b;GuM#RY|sU{(dcvVtNY;>i-k*vg~tMUD+8EK zA6My;?RS|j{oZ3`TND$oLeitnCaXN~2?^yqJcRsrXYmdWR|DFPkA6#MW@R;Wb#;AR z_&HT0?zuV@Wm4mF>t@^Z@zK4Bd((cqo2kbR>y~gvsn0Ji;iYq>r>A3ziHWIbXtbY<9vmI+ zpS^H_7$K*nC3tl$?BPS~`$u~V&o5d>wDin<{Tejx^s!6V`sMeI(M#7@v&)qAGcdxvX&u{5+V3hj)4#tWqb#ZPEin z7(?FWJQtS$leq8Bh54?eF!7a2EOT@7@aX7PxCjlV;ekTiYu88<_>3dWn?lV8aQqgF z-zntBwomo`%E#UQ)T4)mg#r@+$A`PC0mt?Z$FpI~x5Txvd}+b%~_HNJw@pC})OgqZKH&FUALVZaq! z?f&30i8a@&m_Y}zkB$58l!&1-F0O` z>~pf%Y2%NcE$?pT&MYrS1>=!fz;dc|`%VaF7+-SdGbqK6=hSEnCX)&;vF)*dQAV7I zrLpQ^LQzBzwPafH(I*7xHGLT(>w*$K}6JiW}EX}HmQ~{H-GfMAv3wZuIT0Em3D7+ zN@J)Tp6}J?0vMNUyA_@t(`(*d*DXp;m)}0{Ab$cwzj!8=746n{MoNxEhLV&e)jK`10|d^Mq>~W7klH{V-pS4tModpZb@@Z51`O#)%K^MeYmNAkNS1 zj61ib$p#mq-x;)vZ}VSkz{4jZl81{gDJZcUTml;GYqy{i$Wo4m@p2_D2>(b;$YQH~Q7|7>W;?zDhOy~gWaGz0A zSC4)5YLbP8{_g4&qpGTEcvMsi`dEJUzrm7;uklY9!bHl-%ASijGcny?lSL!bbilFX zsZ*zBW@jIS5K#;JI)-22#+6AIP8(j-*3-kw(~VrMJ7!v~-RGN_oQ$ebP7-lea&+YN zTpD>07>FSCBSn_lCMMCmhUI4SpI`idJC83|p9v;o6BedI1ndU54vzL$M=G3|O#%)* z@Ph&&=#UVGU`k0zISSu>cl|AbB=Q;CT}GJ1J&F6@Xtq73z4W;4SC8z{Z~?P~q+}99 z-%ajkD%Y+F6F6&V{9%^%mq_3@B}Hg1*$`KGE=O2*Cb07G@1ICO#IL=gm8tfEn)^ya>V6e*ELzx6*FLeeELEa zDFh|2!|mZH=HH9MWMt9@0-nobA>NzwudAyW&}by?`F@?6451OUz+S2OZ35HF5|#)T zFKj z#I)zNd>EU6z!xvcl9Cc_W8O2`(vd51v((C7)Sb9G}^CK1#+Ak#aW3 z8%iI(bb#r)Su{3gpmXykZR+alFeW)4pDUj_JGHN04|@Op!qrr%Nh{H@m&1b9%uUl# zekAl`II{Kot93DGU_XDJpg&uq37%w;=dyv0j*h;Ly8DH^mYD=YCqaTR6a;^xre4`J2--ZK);MHPB|IM{mSIen=c4xz4pFa=x+uxDR9h8H0 z1)(9&pRvhErOCr_$-eSv*xAf1%~f=7*fc;>g>8k(y%B30}c%CpIrx0aH z#uCf;m_h6mEYLfJVp|We@LW21D@sR`C8?=jPTSC(PCEuQY`*`-jI! zAJG8PtLXUR?(S5Z(iY7q@9$r`?xUojP(L_W*09gV&D{t&7~t2P9dGBFZQakQ(##DF z4V zLJA5B{Sq6E63KYAtW&eIv!X6D$j0U-Yp9WW(0hT;Qp6R4PWx_M}Lz z_o?%n!(4nW=_`Eqig89NwJiA)i0Zq$Uibg}d^1wz!2>IpoRKjqOFhv*VxjvwoSX}? z!BD<&B*2}m)oEsQR5a!j=^loKofQxu&(F{2U3qkWxop^FrXJ&haTTSIkPw>Abn^_X zFJ>MA7H(>5!xO)^qF`ggX=H3Hcz@RgzBW*~tOir{ORgUOeTWEL+}xNhbAM`gzeaYg zsP2u~7tD5vOgC41Z))AR5e%_@HcDhlz&D?xj9j}PyEo3-UqN9Y|CN*<9pp#-8XqAh zzb)-Zrp=#kQZ2rJdNu<1E2+nnJ$)xi5-RIco<|4X-xe0mLhME(d_R*l+po$>{Dw5JOc;#UI;7DjHC~pCJrE zWXTzfL*)gL@;DRz^vuk@UTbm+irA3*_a|n*v9BWStY&QR?}a(S4li-ExHA7oZ;Q1& zceG(RkEjHG*zTphaz*{kp7-{J=C@x+km7!Eb0=XhoG&Mt%ZhV{hgdPaI!~nK7Ws#+F zvEYHwz2xw46+#;1(Mv7;=P~i;V&n^klNg2#fBE9V zMVUR#4am;iTpm98k#=&@HuR*juXPJ{cJ_Ke9guZIQ6N%KAp`ZVX& z`pq8c7=TSE$$&=lDencwIWf8@TtIh%DFH{`5S+0xlw*{DB2my*P*aPLoJQkRY?CS* zQoA!||6I(S(+P4`{2Y{_^-%hx>E>!g=MLI2Nc%HzaBv`jkOlzKv2t^N@`?@%!-Fsx zCLcyRdPD+?fTHZ|vJ~PEcP8rh=Q7m={V!?DP#PeCX=yC+a}Y*DxFTA2ph(;O^QW=1 zGq=IJ?&uHCmQPL8yK}He>;jS*jb(12aaCl>3rjtbFC;8XId~^muK*K)sz4+9-p{_4 z%o;%0uf*>;t?dHfNh>d>0wTdCb^3aD_p+2SI?l9ZiwMfj*V+E6j*O^CnzGWF8YLjNy@##6&z<^2hF2P=KIO7*_9#&sd*3 zJDc({{-N6RYP@Z9!ko^z~a6OW~I|^D_ zp0n(sZMnwis)P- zh1>t}^XDU!QgWn+ssfjci5StZ_7X&i2H>|);${~>NR)HkAr+LDt(%7j2LkT%SKph~ zF+p*l^;XAgwdOa12nq_82V8=4DlDtO?I*kxb!B^(n_J|usLOutTn1!h$mC7W1ud_3 z8^X+=n3!0DI(cra%%0|=75??>*T3W$is0Qu3+Qh&K_gV^=GIr=^k@8+5NlnBuQ0Wm z0?S+_6ygQET7_afLEqZ^fAF?l4x)1rpa?5lW{%Rfml@NgfLQ$y|15XbQvXX?_+vfIV#rAelM4J)=N#}xc?+l$r zY%tGRIFJ;JMf)_+7SW6yt!u**u5hyRW(d2ToVmHwwG;``8WU$Xqk`eNZyj@77e3$9 zvW9aGS)yN%kztXOZ(_v{>Ts1MC#Mp|#=v+$`tI?+VyXr?HU@Awg5uZ`clw^!g26L<)psi6Vi>^atL(gld1u{yvr3N;AeX}uOW)YayqOvZv48rSll zLEnb@0T3Et?(lq6;?QGf7Zzf2a&B9WoW{nm+t%6L+Y_(62zRk~lG5^02>JP)kwA$1 zfN&U%&_#*nm zy18(Lw^)Qc__=v_5aijjGomhLslhzxLtuijyma{`o0WCe3x>|m68KTs?Xqa5Ec@3e zD_B?rjrw9FiT{(ZG`P4b!;_OQ*^Ilnb*H7xq`yK>WQRU8PN92m$fgKjj55O@&k}Io zWC;q!d+ta?%7i?N_>IZQ#`Y6%fL#y^et6U?+Z~ho`Dlnxsu<`+K;jd;(`OZL36Eg5 z20)2QF?!SFjE5`|5)uf)#Po`S@i6c|E;|SiN3a$^a0HQCt#prHYb`EnOF` zvp7&UR}p4xL}URAfD9;QdpTfaZbe}{X~+Ee^DWF-90YYX~hs|-o~y? z8Jm(q2qW6?3_b2-Owze5+M=x{s*P` z3PmggFi-JGNW$dI|Kz1>as5wcZi%flfy`}}`$O-=fCxCidZco_vg>pQ$-l<7x4=|7 z-V%~dSZZorFgIIzd9!1RN;EnhU-we7iios*(|20Am5<5!iv>N70$pUpxqe-<+-7V) z=Y%!c^#FEg%y65fM@NoJ#3rB2`a;6p`4*-i7MC*uvCZq$5^}#(gfNh4lj_IT4 z^2Po89UUG2;=$MIvB+jVuGW^cjk6FC;o~bDAF!w={yhp7 zCPX1C-{mU^M0<28oD@;tzFA4EH=jnOi;^BGdx>-6;`EyfJt(dD1gd;M?&iy5Wg{iF zF&*w4=gy%B9IYwJ9mhj~L9tw!_#o;&|F~wFN|iY5LHHHntm}`SKi9vz{3{Y(xSpvg zCn{LE2XPgtUQNBfal-ZA2R;qJp}d2`g?y75yHmTU0C0crd*be&#e&ybTxh|douOn7 z?3X?eGl&dO48T(16A;K686^*H|G4Y(^r=qyA3yDV9W56M9zCh)+xt}>^l8_(3oRkn z4H!sCt+=?^4f~l1pZjoc_4{`mBqujlUPFTfEfaHcxZ>S8HB%k~6@v0iNT6j~^ekj2 z0C%nK$;rtAcly{FuG|ejz4unzhy!9CV=Oyn+O;>qy16Yq(#Ma14V?klp=4&p(w!~j$=jg3dVlUrQ(&Wei z9TXeyKICn7>@i14w#B1>sl&9s7onifC4j58XO#&!YPa~dxv0pQdQdYPOY zW{USbt;2Nf2uaJ##D>BX#E0&?E;p^zQ&KA0{VBrPG0psdl6)8+e;R!NKxDoKLQnMG z3d2g(BHx_YhYueRr_bxT$M;N3m{3MSf}fwC3>XZUb@n$kJUsr)YqF_+>ZuDXvDHj+ z1YPSgdY=0F6wiDZ$q1zz4@*mR=E9$FMTmL{oH?sJ)zX#rRzBY7psTw(^x7Nw7$(UX zkk|l$TUlGbNRCfQiFTT-qHUV`@>;(4gS)MjjSXE-@6Wp^90Lk{G+18a_KJP5skp** zjtDl-B^6=c0%!NOM_1xJC$TC)-*^}r$_7#y)Z!?jj*E*!r6lR&y&fbGhlpyXsEw%! zn5xIXm(0QWU@?-J_-)^u8)Ag1g7W>qE1+DfY%s1lumo_%AXixe4+jt?vz5lbw(afi z0;xFRa_G}!?k^%Dvb(!0lbh$%>t0pKwWp4!E&gRBk7?VdW?eUCVj=#@JI@-5Em+`B zUc7h&p+KHe5gQlR;$U~(3q%)SILswh;YLR)UC)A8H3Q`PxfCx<2nsnJ?vK*LA)qXc zl@aOX8_5E#W#To914U2yJ0&OV$s_o6nZ4dwk>3uR=f-6rROy%5k;t>e2E#A57fnGJ zI`?|`Sn!$hYb~?283Bpo12z9tPpt|3s#kb2fQ1~6VZPWG95TDPjkP%*Ly#XMi^|65 z(F@p7ANraPJR?tTCMLL9I6u#=gV7KE5Vv%`U>SS7w zBI#@SRY3@~azL4BPrSV^>gP|%$tnkc-C%@tav12mh$ zH{k=qke@MfA#x33fhT%6MeGHFpuo|R)XM;J?S~k;F)~R3&cJYV_Vh3V!_Zm?rycn9 z7DB*17i)!bfU$7f+5e4(Xx}**+94E!Sy=RzTV9=iUCfA9n5JilHliftcm4{felzGL$I_?6UB& z&;JsNjRI7rh{blDGFZgH#%8;Gnc-h!`{3_`y9;&3$t+w^1h^Lyo?IGU_69mFwo;h=dvki*lBL73511Mz6TGUTb zbPz7&QE1zbup_lVw(EcN%v+yh6!$dy*_VZCxxiby{P@CZSbc#a*1=_pj-o7719Juh zIhTc3_voajKDeLDzWO4F*?$*ft}RB{&8?W%Bq3ZySJXKw{JnKNqJRB5rnIy)QV;T~ z%WNZ##LkH2+S*z@s>>!PGoa^15pq2z#+SjtGsF4DSP1w&D4m>~Kqkg=u^dSU27-!T z9mVfdF6AxpxOjM$@HHs5QSM&Qq8WeAuB@?94ycr|uhwWG+>R;y6C)XHBelmzzE@ve zIrBy{Rms8OebI7mL2V;w9gge8=;^F5lC}^4Jf~i~c(J>;kSgdhBeS(M+CM@?OZy1) zmVZATD&x+6{~iL2^Dz4XM*X*rc-P~5BAF!shiJZ#c0Pwwh;2_w z6c9WmjwrK(x++e-YFD(e;g*@T9A;9W3}N(XVxl#`T&S$9WDymm0Rqf97w$hU z&u`!JECfy{XeHL_<)itO-J+R$loS<1M$0222pObPqQ;%(9Cvao?Me_D3JQqN_(=Ws z;;^9KpSyF*GZ3yFX{q?a)5A+k4{4A5 z*@{5~)6xq3^~)|^SeASZK=k;ptViKjN>c-*9!yM>aJIR*_qfdloxvp|m3MIo?~r>k zGlM~MnQP#|O^VSJnD2U~ejzY{*2OGmA%dK^28(lQJ6Vr<5Nn~8>O zn4<&WH9dQj9Z3N$m`YP!f!+6Seft;JEJn4RA;du+f{aWWR_QMM ziyH(A;A(~JNy7s2p8ih~#;G}ASN2yTFNz792hsWaACbOO83SqO`t>+1qx(3JN`NFe zc@|?1_`4~-D-8*}h5}~w$YXku{ElfkP@chPGPUGxV{OgK%S$4Cd~gZsuLyuLU%|Z8 z3fifLXO%RRn}8;t0A(2v5Fl~1JLk34t4uFp>gIM4wLU=6bQV?zytIKk?Y(c4f&yuC zbZt3c;0Qn!h|H~9=K&SX9PQhRR&ukA!EXkNrB%9YY`(p>Bi2T3vx%0Z_Af9(WoOB6Ms(*tD7OiH>sN54y&0=t z%Q8td$Vp7Mm$jhOxPSlt)#yCK3Q}gjEeg~Mh(-Z0x#$&`w7>v8UZ~#q#Dl81>)XSo z@~^ehva@kfF&Ydlh4=T|kictinjmOW0Bob#@X1N1+rSZd|0$ z(U9<|njX~PZcqda6$DH!u|1IumMd}?RZqsd&1#~)x3TUT79U@2+fcT6FTi~lD-go8 zT<%~x_!>Zz6LtHBpPqhoq48>p1Z^U}X)7q<2m)##N)!NrAGLs*>-sWPMd2Bax#DuN zT{IuT&Gt9LK!7=%zzx07WUuOGQ-bL0>V{TK`_qG9+U)mxGVH}A+pnk{W-wRJaJyPL zh6$t@YShR9;6DS1cUjr&3dLVw*+E$N`Fp;tCiN_iSD>8R>)zW2H%|k#PE-Eituz^3 zWv~4iD&dFY^`$bvNd7~S)!VBwzSP*k7`T1e3zR|#?t!&_`*K;=XZy0$Ra8`D?CiLu z{`@$*yH|D)`u*IsL_pnBkJ22RlAs85U%Kyb8;ZEF$Veh1V~wz7RMMSM(%=4F z;h!H?;{I_(B}-UK?|0k6NQY`ekC@oNY0YMfy$ue|HozQ=kRWFNOnaXiHh@x zVqaxUfOr9_2I@pX^=&9?S|P(Tw}E0wPE8#K%0z}@kN4h&^#zk^8jyaTi{HyvHME>g z+m1;RZ(Hk{e(CHIA{SUu@o_Nb+?|~Kqq(qm6&1e0rkvqR9pfLFvo(@JYkYsx#Y}=n zkVYV_04p~x1qO6(>DHzQpD5Iv+}vuYdMd7m#(jdo>HC``uxiEP*YFUy8kCs_uiHTS z0#H75V8$cT)6+w}hp5~gDDAW6#H7o|&yTmJteFOOG6)3l-%~Z~;7#HlOOhHB1#jJ4>8bquD|ou{*gAT{Q(LYiYU&?Y@;D?U?vtOoh}d>tCVs%miUohR$$m`M z+h>YxUy%i_36O}qS=!!*)8JLDhgo*PpAR^1us_Xydd4$S<0}HeGs>~XXIl=uAueDi zobVVnZk_vI7T~%h%ENkkZ=8?V<1W9t=DgwT-)(qKe4op6J- zZEcf1*Dd~mY(>7(zNu~AiZ zMPh%c--unMk=Wq@Lc+yjUv;+5P# zK|5$uW?sHL?)ftg_pH)mg@x`EoAHjPVam4O=2Kb#e_f3x3JL`DU-^4Vb&2Iin$w3C z9Kw)l=?dY!^HgwGVAzEFld1>t@^PD@b~8l5HSjGMY)OQXG2`9J1)tM-5?`A})h{_JLJ!;8cSxI1)2C>Wx>Y28Hog*5ojHK4q)=+!P zSy{285@%%U0=Q}le^i5{X0bF<)HOs2cQ7)dA8DEzJ{E2MV`H9Gt;u!Dqrt8E+JFgd zwih@EQCd70H{|7o+RU9M8+9|VNrQ#edSd}HsFJbqt2~pq@G-$DkJpX>0z^J|5ENv5 z2cZ>}6v~^MvAf@tf)R`x1bPev>TQsFW@aLC1mRLaTYWC&cLg$Y=;8kFv%s~YMh~zp z3s|-iKYjXi1TcOM;~e9KvC!EoFPj!eF5=)&CmCU1*K+CYJ_GURh6IQjP*lxBMUxNt z3dP?;1*S1zx+j3aZ`G7Od{{B%Lj;y%dYG8DfXmZ8KMPF%nx9pdB^RB3hXVmIQ}xE@ za*brs7sEx0FF)#5CnVT8Md10~7-vqxuIH~iI0Xht1~Bs_Cp%5ZHgt3lfHAT4YfI$% z_e4{)Y{+@_50RaTetgWSA1 zzxoaQ9gn~lBd*7843AwB#uClHsQ0bJ5f&Y9C>gU8T7(e%7X!g}!Un3ZWMk!)BiGv) zoZj|dJUMn0*9JVx`T(@y!2%UbY-(z1^uY}WjD))j(#Mawl0-7zzyIu2o0yo$`-vsp zlbg+g<~LqR+$`R5B)^ocTe9!)t+3(TWtwa+wA|r}NdDT}4Z!ajcrlSeC>YSTh1R)H z)<}T0)87tE{r6g^Q2&U~r#M~@9qvviV>OYS!5iycBBrlPOCR2l7!!k`hn%-o!Og}- zFYx}|Ey(40ZUc6mjN5w=%ovo zA8s8gvMiMq!%==M5ga6AqRCE@*VdolCQYK+)ff}?gHm3o$+s45tLzo){2P)hlo-+K zf7JNjO(+rHT*|D+`))@(NlLPJy8v1DUO^fu$Ti_hpIl0IzkcOWQB@7n&Gope8rMWp zHr~p-dEWasVH`7{;$ohu3$>0e^2%ggHpzFW zH!CgRnEbs#St#q1_d^q1UqAQ}j3xnOzI;b5_~szc9(|eT4}5_4k*{B7I0mz5P?Mvh zIRZlV;Uich(LfyC%pKB~#C|_$S9H4<1cBXM z$2>Z=ujB${R3ej(hHu~cYTvqrf#ke@57PWTEY-85`DzAq<2NXf-#VG3F_MAH$t?I< z+{Sqao60jcxS!>DG3kX$+X*%8a6qfU2S3$LP<=^!@=;!EF^=lu!F3BKb;gyqDvXRM z`SK9LU~}_Br5N{-KDUFchu`9XmV3f`fu0J;5uJ8IFFT zQDFL$kuwqX1O01n`YYbOI)YO6)G6T?j_N8S&8BKOFo5iAA7>;T##^CiHXOVb(B4xA z8A{x?96XQRtkS79ZwFj~e~C4wnKyjVw5OZ!aeqZx1iu#-tUmXq4{g!amdGbmb36Nk zC)@dx)2)MqRp)=G5xu=g{rMxTd&o~I_cv%u9E*xJXMp@&h{(+K{heL6^3wiX+(mRw z&;w}&kbtud*nvtvRiY@`OG94FW>}yGKW6ev4Cao@uCHhM(SNSp!7x=y7N7VVQ{ca@ z>!65maIrnt+z;nUjm!-&5hjf^xNB$Z+=PReW@~hv9WUFgxB(HFl;D` zYW2BF(w4~U`$$@p*Q(Mch~>GFrYyOYH!tM3|8WK?=?+g%0fmaQE=w=(a6gjRws?WUx;l+{R*GdM8p!nfJ#zk zm{XMZ2x<4E!0*62nYuJSd7twzZ3=F7?(XM8qk(yOS5p(#(Gj;eh>g;J**lZm@*6rj zfxwoOI08!tUcthD*kE>6_-f^c4=)_u-Q6tE)z02@PV3sl7!(R_+-#7WdiO+RXMOpWM;C1I~!~gs)7zC4x}RdPPEzs5F=DR0l(dz|KIE>?2;hZIQ6<- zT%8vWEG>oap(ZV5s8sFj7{*Jq>uj?mw~8w(xkklV-T(RwY4nUE(!;@x2#c6{wc3mo z6#j<~E4s=#*sG&ycTy?fk|d`PvOGL54<8El(iOH^RH856QL~IKhsClUxL13QuuTCP1X1l z!$sKl&Q!-QRP^F8rZEGr|HiW&qmM643Pe^uwDMkkNzKHB0sToOtY4ZkE;TltWzc$d z7uw1)OzX@5@d`054)g2BN%k>#+l8OijIu;Zv3fAbWVA%*uhaV&GHjEu{94rV_eqsE zNgAVW`ZWk*gZhV>)QcM?gV+g`{rZ7ph~F-u9)YJ>Q}GUzq@Hq zlg&FYQi_elr6#xxvz$q$B&FMPU2BiO#{YHk#sqnd7%WOFJ)kr1Z+7WHr^a+BZ3gH8mym#jb1GBTI1E zy8A`E9HapwyuHeR3=SIP?c`kZeCSvw8Ld4S0GgYdEf%_egGZ9##16nN*yT5swdY~Z z3$l{uvR%9)gX8PsV$2?iO@&D2;kp2PUvt${|C}XLsz?mL7aLpU%|}8n>G=}pT&^@x zX?LEe2JNrqO)ro816mz>OVs*BA=%-eH#|GnbR>o0Zw zcXxcX01}s3E&7R!@7hN4h*8Gr^@`)$3>#wu{?IB%D(=ZHGRh|s#G*fWcB;hI`D${G zl2WVeoFEujeRh^6b-z=TsS^jXpXa-VX(U?o!s=?qdAo8+0j-xjdW_bM52Z2FD(;}0;F(2E zp?V!y6Q~J4mw%|NT#M$;yKIH;oTa>hHtn$yoCkXnv{95e0u_W>m6#-bMn7=dk^Sn? zthLudlC69UWnP&$FJXKSN^bo-JW$FdIocxZ=R)LK>1E?N##C@@_#CwSI`356VN2gp$T)v_v?O1u#)K>?H2(Ne zjyIe=nqGu7jFhoae6>2bAs8=7(iYs_&jrjeQNJsc_+OzmX@&lT^=|Q1nx5X zAw*y&FbaNc4()kB3xPQi8*zcAvmbY_C@3n@_N=e13E*C3V|$A}iGLzE{CxXAPSXvp zS_F}mmE~*$RhdYeGHTh|+k0($8^|@i;7xxp!6=2@092j?%3#^MSK;_icDZN%A9!Fv zUMj32wOt4mtIEIDH#)|doJhxwFTqCWpTgItAoeVN}r|;59*3p&j(03 zYV=_g`v0}mdO-jLx(XL)yr{NcJpBC1Ko!kEW0?nuPfhs7#yi|L`lO7rwpm%vTs#KL zc3rCzNN)M^j$;AQw7n>j29aTL*jeWOfo{i?PbY={{<28PEE)3a*RQpH%{sIpW`|ep z>#t+xv)@v9~XyUmqO{UO$?8cPv#a zb#n$??tjN;y#i7q+IntdlijhtwRIQTF;MXZ5wQ78!$nCLPm<2V!?WH(ZE6Ojg=gLi zmG1xMW>oEIBI|LwDNaH0rP~*Q=18ZBYz}E@W`I~|yEB4-hK0I=(M5)K-vXIUBVT;@xq98KIyV=?55~dAQd-RC=S010VD0r=5}+*|$37xjyYWA4vmI;_}6%`2e#4 z5y!F1&?}kO;SM3T&|&oA1;g_9d7sXvQ{BnG7gH0EpvCplA9|xnuJcX?iXjaQjCV@+_*~rG-OQ--%h_GJ-=zjYy z9dJGH!;?W_fgl#M!FNKuOqjTV>WP=VzCWYZ$bSQH2&Cu-E0c!?2lrtIfjH*uQ&61E zX9s?AjmRn6FW+7or3W|cNop;Q0U4BPXZf{Okf<)WZ*thu61bWAi1IPxXJm0qCy|)ckpDz#{~cE3&+T) zS8Yu7x-=IR{E2Rd=b()zpr6A40J4_*Ps}u z0AKb`@cDlh&&%V?ClVgmu2az4a)QC#B-gjro( zE0~I7m%&RNYy3ZIkN@^(|E-=1uB-dh4NlJvYV<-C!AAb>-Mi1_;0Hu2%XZWx+kWlk z_xAKh=ykkui!xGeNY zC-_>94zC1nYeN&AA^~N?lgk6Rc|zTnv;1rrmc0zxZY%UQQ$Azvji-2OTG7KS;UG#z z`5{r}!B7=(fy6rFPV(PtH}Z^lt5uv>~TP5nR4KGa?oW5`1Q6)7?MOavs~i zZ8o6^8;6#> z8?jFciC@2-y`Cs9IYT4E=5vAANMRrz@**YGN(-6vKt`cUfub$ujbjVA%I%j~mJg$u zk4^6%xTcJ5WvR!5t7K1q(Slkac3JH14;JFkaRdpT6((gqx-{Q?$p0ueeFY{;uVs+s&Z$#$Z7`g%vTRWMNDa#|=cE%y;4lN2qeFY$$RY{jAUBJW@e zid!^MO7TCHGAKZi`R*a*NN$KcQn?7YF|G=`m^J>~fryUUo!W%=uFF@{OXGL27sKo~iMA&<^0i1Bs+Q$I81bS@M&B zpmXHVK6nJ@Dr&dc++m6y85wRad;`vNYLTRKfg@ZfFThqDQCT_aat~TvAmp+L?+88O zNl!UxDvP~2GCqD*&{Yg>CZf6ddtpUIVio%@446^S%rFROXp_n%7=b%D2{gRmdy08< zuRuUVf7L|x#AyDn_cZ8x+avCJWV8%u}%Xs1QIw_R`yE25Zi;d#?&p}xTSBd^R z0PL3>FxcbXzAli!3VC(84kN2JIOL0sg5TavRg+&fh}5g^RPX-6jd`uMz||pq7HS zozP#yMki2A5Qw_a>FDTO)@Ecu5X3}aXARJ$irl`d?e6cZ8?nNr^wvMoKn~iZk5DU* zAlRY68c_rdUC_de&H~ls#KblwgU$4WyUuia^09XM^&(@%A#-n@swnQ z1E!h0JQnAAKpM8pv!-L+E^|gOGG%=r~)ZU8Y ze>pV7Z0f%MXbdC3&oEPm`%me#$7F&u!(R7G4iW>u(FEfP%id)l`^3v!+a9SpZ>>D| zEDCaTKKbvPu>N9CLPk!@l3yScQp>_*V(Qj?|3euy{ON9YRxu~OdPNAI#bL|f;rWwG zwKp}UqxZ0sQYkOv%7)XV%4~)E> z-Mfx0Q0TzZVFvV?pMkUQM+y>>-|w|8DzIe>bM}V}j1_iv`aCc|rUd=$_Xi#$@<7M& zBRt@+%H6E}<`zV7!Gg5vu2-yNNrs0PCUqE~U&Sjvgb|tI%*)tx>Vm1VX?a#zc}Ct+ z;`P<|1XArHtDMJWw=63kKTWN0o1LHM+8?qVEk*w9?x7 zzoK8g$~GOIre9vhM1K17<02S&|0sA@HqM1%4TTwypx~Q9Rh6fyb=||sw z{=BfyXEus0lQyU80^N=c;1!vfnF$1QN@jMp!R3(zG)~@jF-M->LYBx-npPp02#bYf z^`0jD$S!~K$^Xm!%nTcDsgPsSL`^(I&knu3fpV{(R1vG9RPIlgq4VVAJy;H!N4DSG-Uh{!7H>ZemPbaPP?CX72P2L}#al+wEm4%oD0t=$@J!}Q*; zf;~QJ#`l1|2P002=bhlj)T6C)sQf4Dv&EI-|L2aY4^%+@hl{3X;RK*h=Zn@96;S{; zasfK*0c|kHANGMa6y^V^`CFGpOYk-vM;KsBuZanx^`eg-#i2q&YanXV``XD&u;mhJ z^!pwZ6jW%_MR)b(M9+e>jV60qsu<9 zAY^*!l=08}uS9j@_KkSJGeJYCT>O|eiV!`05oq zx1B|*;6OP;NJzLgpXAIYBy=bLOfSNt3HcXyv_tP%%8v-W(!5g()v*slc_h;(3&BKo&|Bw=rrVCVoUEiab? zLZp9rX$fsl5=1;F`BT9xq@b(}O7+zp46v@gT(XDF^`2kx;3j2~xP1x%w#=@00?0Q( zsC=QZ+bDteEtyjVO2Zjdl7qJj^<=<6q5C)?fk{b*1<|%lzx(EBWN4vXs0Fq)^95yy z0%lTN6+_ZZEiD8*D4Cg=&$}XHV#45YLIEQ`JiD~?xV*glh&$E_EGq+^BGmLboVcA;}a7@zs`+{MYp?mA3`G)_+$5LRvKD6JBdG>Pb zk7FThnswcLtn?1Ldl~RU%_yjJbacFJXV~i}u9lB#!{7^0)ZIsePwfAX*JWm-r=Bsq{^sWot zj3tg|@q;S)hXw{%z(54eBrx>v6rPP`!{$EqY*DC6z@5isJxcfP@(JAV#C$21PNB zIv6KvWNDZZMQdD$Mk|ZrlA{PJRzNm`>=Ga<3LF8$BH}PnCow>+nqDvMY5(+3&*7)w z%=f*^^W4vUUk4`7Iq6n&x}z*!=IZK-6*X{g{pQ92-D)Fw(d;5t`ZYpn|M<4nd0~sS zoxA~@7tQ>*g;6rznWKr})6ad0Ca9i0T}#<%*dODdP-|ZkS#E46p5ETOdW>hP6Ry~q z8|&^CjOE)=QSa-{X-#YNSOA)Yq6mxQ;TJw`E-nEfAt}SHNac6)*QeeezWN>qVL*I* z>2M*M1q$Zsdcci0di9!`_`twXEcR!og0{P+K=RIUpXJa^+Rl zyU0h0E~zZ;P4)~i9~%L-J9HxB)alca*S~ggx<&YP(%EWnqD8x$;}{amI^VL}`3B!5 zi@AxU(l)zD9_tL^p6m!gCwMp9^nTWvGj)^FV6hP|s_*@yOu{VtI$0@6+VZHq9H-S2 zq~Dc8k2<(MY-MidnE6#XBOEW*;gP;L%B?5(};zr zRxk0cV{&P?r|)>w7xD+&wr}sjpD4-Qw%wf3>i4g7)^L@3!WYb;*mgtPJLV@5Q=H)A z^RafCa@W$FVB$`^6evPFM4*#&z9c897VnEqiY@J);d%3;fB=KE^z_(Y`sSh}3!)7> zHqZa1gT4I)C==vMMfjfAP=QfRml{89+O%;GnlizBdHenL{8N_?3YPp~ zW2dL-4}``_lx!MED1L^4w*D5N==!CSFZf{YR z-H1WO9xZOCRQFwD)XTNVtaUc=|kO-i=|uPpqgo;LwpXc$6RQ@8~F5 zJI||ZN*J7uU?BzuGiPo;b}y-cNRu#eRi;=Aq7E~k^q82K@2E%LdZtL8Z9q&yzvC@+ z;pT_qpb=JfnR*s_NY}p;3SVaCSY8Rpnymc%MSR``k&zP#mTCYV9B#nQ*YpIxLO0Ia z#D2M4li6PEQMU<8CY?kuFE2@>sj4rN9CH4Y$SsSZ^F{4(2c*v$;aF-)d}+;Nd;B1k)_{7vJp08Vs*BKr%#SjE;CJJ|rNQuyB z=$pglhb%iZ_lWm;JF&^I@d;}zrbR|5)dCEPrJOncD=8@{PECKugx{sr?#j>i7H5m- zN0^KVdQZqxH{(p-;B#kb9^GcR2mr_`wM10V)aBXh;NxC8TI!s{dsV(n&Vc~9(cOPZv9Df8(dZ^6YwUxuVq{i;?KjX zTD?pOI?r-cKuLPr3I65V6DAn&zZT+UbvM10%o!UQ6%`9{NdMtOF28OjH4abVrwvRV)2Pj-+3R1Ooj<9@PAtH|BD%; zhE<>$x|g^jE+Q<xxbF z*D1v-%MAtn%V^m|tNm3%m@Fb15_kR^2fsKUtZbcoZ(CaZIu<2re}h&R>6`dc!9;Tp zA#j0h^766)y)^C{Zm?P?A|e_p);8^vh>f#==HA%?FzMXK7eyN`hGZ-+(0adsxdi<#;eP zXz>?c-aO6LTs(a~w}C`1TtS(gg2M?3NxN7mJ4c7W?H*QSa7*cQIu)stG`Nx@w%62X zr+H~61S|w^MEkE|puzygxKgOgA(%RK0kn&Ta_~Y_<_f zZV8;-BZ~Y>mo&5o=Eg?+2$E90ZX4Lb?l^WK^wkN#y+~WUN6enLe*vHjMdZ>`jh%OH z)^&7rC}->m)*v@#H@_R$Y(28jva_=_1qB7eg*iDE6buBWBX^$7$?=jMT^t^6hJivK zJ8PDNKl#-FOO?Jm2t>pxPI;9|HH%y!eX?!p6WgDGG$`sgNwVUrsYnIrzDzs|GdUBNP&|^BaZEF-~_cr zsR59HoH4n#w|8ZGVXV0S(OekpUgYw`TtFJ`BgHRw7^BTOG{r!Q10eW27ngF5BvIpX zy9#fsg@px}VV(Xm1Ymo6dvVM1B8X0u^8`-@<)vn3t~mb*6bCpiR&9#(d1Khz#LXeT zIXXER%eH5uNeBWUCARR^(a@|7QmEw=tSQC+AgN324KT6cRKqFn9LKq<;dS#)m`z literal 0 HcmV?d00001